Function
ItemContent
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 104 | } |
| 105 | |
| 106 | function ItemContent({ className, ...props }: React.ComponentProps<"div">) { |
| 107 | return ( |
| 108 | <div |
| 109 | data-slot="item-content" |
| 110 | className={cn( |
| 111 | "flex flex-1 flex-col gap-1 [&+[data-slot=item-content]]:flex-none", |
| 112 | className |
| 113 | )} |
| 114 | {...props} |
| 115 | /> |
| 116 | ) |
| 117 | } |
| 118 | |
| 119 | function ItemTitle({ className, ...props }: React.ComponentProps<"div">) { |
| 120 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected