Function
ItemTitle
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 117 | } |
| 118 | |
| 119 | function ItemTitle({ className, ...props }: React.ComponentProps<"div">) { |
| 120 | return ( |
| 121 | <div |
| 122 | data-slot="item-title" |
| 123 | className={cn( |
| 124 | "flex w-fit items-center gap-2 text-sm leading-snug font-medium", |
| 125 | className |
| 126 | )} |
| 127 | {...props} |
| 128 | /> |
| 129 | ) |
| 130 | } |
| 131 | |
| 132 | function ItemDescription({ className, ...props }: React.ComponentProps<"p">) { |
| 133 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected