24 lines
584 B
Svelte
24 lines
584 B
Svelte
<script lang="ts">
|
|
import * as FormPrimitive from "formsnap";
|
|
import { Label } from "@/components/ui/label/index.js";
|
|
import { cn, type WithoutChild } from "@/lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
children,
|
|
class: className,
|
|
...restProps
|
|
}: WithoutChild<FormPrimitive.LabelProps> = $props();
|
|
</script>
|
|
|
|
<FormPrimitive.Label {...restProps} bind:ref>
|
|
{#snippet child({ props })}
|
|
<Label
|
|
{...props}
|
|
data-slot="form-label"
|
|
class={cn("data-[fs-error]:text-destructive", className)}
|
|
>
|
|
{@render children?.()}
|
|
</Label>
|
|
{/snippet}
|
|
</FormPrimitive.Label>
|