17 lines
521 B
Svelte
17 lines
521 B
Svelte
<script lang="ts">
|
|
import type { Label as LabelPrimitive } from 'bits-ui';
|
|
import { getFormControl } from 'formsnap';
|
|
import { cn } from '$lib/utils.js';
|
|
import { Label } from '$lib/components/ui/label/index.js';
|
|
|
|
type $$Props = LabelPrimitive.Props;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export { className as class };
|
|
|
|
const { labelAttrs } = getFormControl();
|
|
</script>
|
|
|
|
<Label {...$labelAttrs} class={cn('data-[fs-error]:text-destructive', className)} {...$$restProps}>
|
|
<slot {labelAttrs} />
|
|
</Label>
|