(props: CommandEmptyProps)
| 115 | }; |
| 116 | |
| 117 | export const CommandEmpty = (props: CommandEmptyProps) => { |
| 118 | const [local, rest] = splitProps(props, ["class"]); |
| 119 | |
| 120 | return ( |
| 121 | <CommandPrimitive.Empty |
| 122 | class={cn("py-6 text-center text-sm", local.class)} |
| 123 | {...rest} |
| 124 | /> |
| 125 | ); |
| 126 | }; |
| 127 | |
| 128 | export const CommandGroup = (props: CommandGroupProps) => { |
| 129 | const [local, rest] = splitProps(props, ["class"]); |