mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-02 16:52:31 +00:00
16 lines
442 B
Svelte
16 lines
442 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { Button } from '$lib/components/ui/button';
|
||
|
import * as Tooltip from '$lib/components/ui/tooltip/index.js';
|
||
|
</script>
|
||
|
|
||
|
<Tooltip.Root openDelay="300">
|
||
|
<Tooltip.Trigger asChild let:builder>
|
||
|
<Button builders={[builder]} variant="ghost" class="h-fit px-1 py-1.5">
|
||
|
<slot name="icon" />
|
||
|
</Button>
|
||
|
</Tooltip.Trigger>
|
||
|
<Tooltip.Content side="right">
|
||
|
<slot name="tooltip" />
|
||
|
</Tooltip.Content>
|
||
|
</Tooltip.Root>
|