MCPcopy Create free account
hub / github.com/cosscom/coss / CommandFooter

Function CommandFooter

packages/ui/src/components/command.tsx:251–265  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<"div">)

Source from the content-addressed store, hash-verified

249}
250
251export 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
267export { CommandDialogPrimitive };

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected