Function
ItemDescription
({ className, ...props }: React.ComponentProps<"p">)
Source from the content-addressed store, hash-verified
| 130 | } |
| 131 | |
| 132 | function ItemDescription({ className, ...props }: React.ComponentProps<"p">) { |
| 133 | return ( |
| 134 | <p |
| 135 | data-slot="item-description" |
| 136 | className={cn( |
| 137 | "text-muted-foreground line-clamp-2 text-sm leading-normal font-normal text-balance", |
| 138 | "[&>a:hover]:text-primary [&>a]:underline [&>a]:underline-offset-4", |
| 139 | className |
| 140 | )} |
| 141 | {...props} |
| 142 | /> |
| 143 | ) |
| 144 | } |
| 145 | |
| 146 | function ItemActions({ className, ...props }: React.ComponentProps<"div">) { |
| 147 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected