blob: c2f9a555ccf920a7dc58099a5650f11c23488df7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<script lang="ts">
import type { Snippet } from 'svelte';
let { children }: { children: Snippet } = $props();
</script>
<div
class="flex h-full w-22 items-center justify-center px-1 font-semibold text-white/0 transition-colors group-hover/slider:bg-black group-hover/slider:text-white"
>
{@render children()}
</div>
|