MCPcopy Create free account
hub / github.com/code100x/chess / SheetFooter

Function SheetFooter

apps/frontend/src/components/ui/sheet.tsx:89–100  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.HTMLAttributes<HTMLDivElement>)

Source from the content-addressed store, hash-verified

87SheetHeader.displayName = 'SheetHeader';
88
89const SheetFooter = ({
90 className,
91 ...props
92}: React.HTMLAttributes<HTMLDivElement>) => (
93 <div
94 className={cn(
95 'flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2',
96 className,
97 )}
98 {...props}
99 />
100);
101SheetFooter.displayName = 'SheetFooter';
102
103const SheetTitle = React.forwardRef<

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected