Function
FieldContent
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 95 | } |
| 96 | |
| 97 | function FieldContent({ className, ...props }: React.ComponentProps<"div">) { |
| 98 | return ( |
| 99 | <div |
| 100 | data-slot="field-content" |
| 101 | className={cn( |
| 102 | "group/field-content flex flex-1 flex-col gap-1.5 leading-snug", |
| 103 | className |
| 104 | )} |
| 105 | {...props} |
| 106 | /> |
| 107 | ) |
| 108 | } |
| 109 | |
| 110 | function FieldLabel({ |
| 111 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected