🎨 Add select UI component

This commit is contained in:
pheralb
2025-08-29 12:42:00 +01:00
parent 69215ee02c
commit 47bcca1bdc
7 changed files with 164 additions and 1 deletions
@@ -0,0 +1,24 @@
<script lang="ts">
import { cn } from "@/utils/cn";
import type { WithElementRef } from "@/types/components";
import type { HTMLAttributes } from "svelte/elements";
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLAttributes<HTMLDivElement>> & {} = $props();
</script>
<div
bind:this={ref}
data-slot="select-label"
class={cn(
"px-2 py-1.5 text-xs text-neutral-600 dark:text-neutral-400",
className,
)}
{...restProps}
>
{@render children?.()}
</div>