mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-02 16:52:31 +00:00
8 lines
168 B
Svelte
8 lines
168 B
Svelte
![]() |
<script lang="ts">
|
||
|
export let type: 'note' | 'warning' = 'note';
|
||
|
</script>
|
||
|
|
||
|
<div class="bg-accent border-l-8 border-blue-500 p-2 text-sm rounded-md">
|
||
|
<slot />
|
||
|
</div>
|