Function
Fieldset
({ className, ...props }: FieldsetPrimitive.Root.Props)
Source from the content-addressed store, hash-verified
| 5 | import { cn } from "@/lib/utils"; |
| 6 | |
| 7 | function Fieldset({ className, ...props }: FieldsetPrimitive.Root.Props) { |
| 8 | return ( |
| 9 | <FieldsetPrimitive.Root |
| 10 | className={cn("flex w-full max-w-64 flex-col gap-6", className)} |
| 11 | data-slot="fieldset" |
| 12 | {...props} |
| 13 | /> |
| 14 | ); |
| 15 | } |
| 16 | function FieldsetLegend({ |
| 17 | className, |
| 18 | ...props |
Callers
nothing calls this directly
Tested by
no test coverage detected