Function
CommandFooter
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 243 | } |
| 244 | |
| 245 | function CommandFooter({ className, ...props }: React.ComponentProps<"div">) { |
| 246 | return ( |
| 247 | <div |
| 248 | className={cn( |
| 249 | "flex items-center justify-between gap-2 rounded-b-[calc(var(--radius-2xl)-1px)] px-5 py-3 text-muted-foreground text-xs", |
| 250 | className, |
| 251 | )} |
| 252 | data-slot="command-footer" |
| 253 | {...props} |
| 254 | /> |
| 255 | ); |
| 256 | } |
| 257 | |
| 258 | export { |
| 259 | Command, |
Callers
nothing calls this directly
Tested by
no test coverage detected