Files
gpx.studio/website/src/lib/components/docs/DocsNote.svelte

19 lines
357 B
Svelte
Raw Normal View History

2024-07-09 17:49:18 +02:00
<script lang="ts">
export let type: 'note' | 'warning' = 'note';
2024-07-09 17:49:18 +02:00
</script>
2024-07-09 22:15:05 +02:00
<div
class="bg-secondary border-l-8 {type === 'note'
? 'border-link'
: 'border-destructive'} p-2 text-sm rounded-md"
2024-07-09 22:15:05 +02:00
>
<slot />
2024-07-09 17:49:18 +02:00
</div>
2024-07-12 18:08:27 +02:00
<style lang="postcss">
div :global(a) {
@apply text-link;
@apply hover:underline;
}
2024-07-12 18:08:27 +02:00
</style>