wireadmin/web/src/lib/components/ui/form/form-label.svelte
Shahrad Elahi ae787625b9
update
2024-05-29 18:32:19 +03:30

18 lines
530 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>