Function
CommandSeparator
({
className,
...props
}: React.ComponentProps<typeof CommandPrimitive.Separator>)
Source from the content-addressed store, hash-verified
| 127 | } |
| 128 | |
| 129 | function CommandSeparator({ |
| 130 | className, |
| 131 | ...props |
| 132 | }: React.ComponentProps<typeof CommandPrimitive.Separator>) { |
| 133 | return ( |
| 134 | <CommandPrimitive.Separator |
| 135 | data-slot="command-separator" |
| 136 | className={cn("bg-border -mx-1 h-px", className)} |
| 137 | {...props} |
| 138 | /> |
| 139 | ) |
| 140 | } |
| 141 | |
| 142 | function CommandItem({ |
| 143 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected