({
className,
orientation = "vertical",
...props
}: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>)
| 71 | ); |
| 72 | |
| 73 | function Field({ |
| 74 | className, |
| 75 | orientation = "vertical", |
| 76 | ...props |
| 77 | }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>) { |
| 78 | return ( |
| 79 | <div |
| 80 | role="group" |
| 81 | data-slot="field" |
| 82 | data-orientation={orientation} |
| 83 | className={cn(fieldVariants({ orientation }), className)} |
| 84 | {...props} |
| 85 | /> |
| 86 | ); |
| 87 | } |
| 88 | |
| 89 | function FieldContent({ className, ...props }: React.ComponentProps<"div">) { |
| 90 | return ( |
no test coverage detected