({
...props
}: React.ComponentProps<typeof CommandPrimitive.Empty>)
| 99 | } |
| 100 | |
| 101 | function CommandEmpty({ |
| 102 | ...props |
| 103 | }: React.ComponentProps<typeof CommandPrimitive.Empty>) { |
| 104 | return ( |
| 105 | <CommandPrimitive.Empty |
| 106 | data-slot="command-empty" |
| 107 | className="py-6 text-center text-sm" |
| 108 | {...props} |
| 109 | /> |
| 110 | ) |
| 111 | } |
| 112 | |
| 113 | function CommandGroup({ |
| 114 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected