mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2026-04-02 09:55:23 +00:00
20 lines
214 B
Svelte
20 lines
214 B
Svelte
<script lang="ts">
|
|
export let title: string
|
|
</script>
|
|
|
|
<p>
|
|
<b>▶ {title}</b>
|
|
<slot />
|
|
</p>
|
|
|
|
<style>
|
|
b {
|
|
display: block;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
p > :global(span) {
|
|
padding-left: 1.25em;
|
|
}
|
|
</style>
|