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