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>
|
|
|
|
|
|
|
|
|
|
<Label
|
2023-11-07 00:36:51 +00:00
|
|
|
for={$ids.input}
|
2023-09-08 23:30:32 +00:00
|
|
|
class={cn($errors && "text-destructive", className)}
|
|
|
|
|
{...$$restProps}
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</Label>
|