Function
CommandEmpty
({
className,
...props
}: React.ComponentProps<typeof AutocompleteEmpty>)
Source from the content-addressed store, hash-verified
| 150 | } |
| 151 | |
| 152 | function CommandEmpty({ |
| 153 | className, |
| 154 | ...props |
| 155 | }: React.ComponentProps<typeof AutocompleteEmpty>) { |
| 156 | return ( |
| 157 | <AutocompleteEmpty |
| 158 | className={cn("not-empty:py-6", className)} |
| 159 | data-slot="command-empty" |
| 160 | {...props} |
| 161 | /> |
| 162 | ); |
| 163 | } |
| 164 | |
| 165 | function CommandPanel({ className, ...props }: React.ComponentProps<"div">) { |
| 166 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected