Function
CommandGroup
({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Group>)
Source from the content-addressed store, hash-verified
| 111 | } |
| 112 | |
| 113 | function CommandGroup({ |
| 114 | className, |
| 115 | ...props |
| 116 | }: React.ComponentProps<typeof CommandPrimitive.Group>) { |
| 117 | return ( |
| 118 | <CommandPrimitive.Group |
| 119 | data-slot="command-group" |
| 120 | className={cn( |
| 121 | "text-foreground [&_[cmdk-group-heading]]:text-muted-foreground overflow-hidden p-1 [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium", |
| 122 | className |
| 123 | )} |
| 124 | {...props} |
| 125 | /> |
| 126 | ) |
| 127 | } |
| 128 | |
| 129 | function CommandSeparator({ |
| 130 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected