mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-02 16:52:31 +00:00
9 lines
231 B
Svelte
9 lines
231 B
Svelte
<script>
|
|
import { CircleHelp } from 'lucide-svelte';
|
|
</script>
|
|
|
|
<div class="{$$props.class || ''} text-sm rounded border flex flex-row items-center p-2">
|
|
<CircleHelp size="16" class="w-4 mr-2 shrink-0 grow-0" />
|
|
<slot />
|
|
</div>
|