mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-02 08:42:31 +00:00
19 lines
323 B
Svelte
19 lines
323 B
Svelte
<script lang="ts">
|
|
export let type: 'note' | 'warning' = 'note';
|
|
</script>
|
|
|
|
<div
|
|
class="bg-accent border-l-8 {type === 'note'
|
|
? 'border-blue-500'
|
|
: 'border-destructive'} p-2 text-sm rounded-md"
|
|
>
|
|
<slot />
|
|
</div>
|
|
|
|
<style lang="postcss">
|
|
div :global(a) {
|
|
@apply text-blue-500;
|
|
@apply hover:underline;
|
|
}
|
|
</style>
|