MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / ItemDescription

Function ItemDescription

src/components/ui/item.tsx:132–144  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"p">)

Source from the content-addressed store, hash-verified

130}
131
132function 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
146function ItemActions({ className, ...props }: React.ComponentProps<"div">) {
147 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected