2023-09-08 23:30:32 +00:00
|
|
|
<script lang="ts">
|
|
|
|
|
import type { Label as LabelPrimitive } from "bits-ui";
|
|
|
|
|
import { getFormField } from "formsnap";
|
2023-11-07 00:36:51 +00:00
|
|
|
import { cn } from "$lib/utils";
|
2023-09-08 23:30:32 +00:00
|
|
|
import { Label } from "$lib/components/ui/label";
|
|
|
|
|
|
|
|
|
|
type $$Props = LabelPrimitive.Props;
|
|
|
|
|
|
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
|
|
|
export { className as class };
|
|
|
|
|
|
|
|
|
|
const { errors, ids } = getFormField();
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-01-27 00:35:02 +00:00
|
|
|
<Label for={$ids.input} class={cn($errors && "text-destructive", className)} {...$$restProps}>
|
2023-09-08 23:30:32 +00:00
|
|
|
<slot />
|
|
|
|
|
</Label>
|