Function
ItemHeader
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 154 | } |
| 155 | |
| 156 | function ItemHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 157 | return ( |
| 158 | <div |
| 159 | data-slot="item-header" |
| 160 | className={cn( |
| 161 | "flex basis-full items-center justify-between gap-2", |
| 162 | className |
| 163 | )} |
| 164 | {...props} |
| 165 | /> |
| 166 | ) |
| 167 | } |
| 168 | |
| 169 | function ItemFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 170 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected