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

19 lines
323 B
Svelte
Raw Normal View History

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