({ className, ...props }: React.ComponentProps<"div">)
| 163 | } |
| 164 | |
| 165 | function CommandPanel({ className, ...props }: React.ComponentProps<"div">) { |
| 166 | return ( |
| 167 | <div |
| 168 | className="-mx-px relative min-h-0 rounded-t-xl border bg-popover bg-clip-padding shadow-xs [clip-path:inset(0_1px)] before:pointer-events-none before:absolute before:inset-0 before:rounded-t-[calc(var(--radius-xl)-1px)] **:data-[slot=scroll-area-scrollbar]:mt-2 dark:bg-clip-border dark:before:shadow-[0_-1px_--theme(--color-white/8%)]" |
| 169 | {...props} |
| 170 | /> |
| 171 | ); |
| 172 | } |
| 173 | |
| 174 | function CommandGroup({ |
| 175 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected