Function
CommandSeparator
({
className,
...props
}: React.ComponentProps<typeof AutocompleteSeparator>)
Source from the content-addressed store, hash-verified
| 220 | } |
| 221 | |
| 222 | export function CommandSeparator({ |
| 223 | className, |
| 224 | ...props |
| 225 | }: React.ComponentProps<typeof AutocompleteSeparator>): React.ReactElement { |
| 226 | return ( |
| 227 | <AutocompleteSeparator |
| 228 | className={cn("my-2", className)} |
| 229 | data-slot="command-separator" |
| 230 | {...props} |
| 231 | /> |
| 232 | ); |
| 233 | } |
| 234 | |
| 235 | export function CommandShortcut({ |
| 236 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected