Function
ItemGroup
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 6 | import { Separator } from "@/components/ui/separator" |
| 7 | |
| 8 | function ItemGroup({ className, ...props }: React.ComponentProps<"div">) { |
| 9 | return ( |
| 10 | <div |
| 11 | role="list" |
| 12 | data-slot="item-group" |
| 13 | className={cn("group/item-group flex flex-col", className)} |
| 14 | {...props} |
| 15 | /> |
| 16 | ) |
| 17 | } |
| 18 | |
| 19 | function ItemSeparator({ |
| 20 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected