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

Function ItemContent

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

Source from the content-addressed store, hash-verified

104}
105
106function 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
119function ItemTitle({ className, ...props }: React.ComponentProps<"div">) {
120 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected