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

Function SheetHeader

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

Source from the content-addressed store, hash-verified

73SheetContent.displayName = SheetPrimitive.Content.displayName;
74
75const SheetHeader = ({
76 className,
77 ...props
78}: React.HTMLAttributes<HTMLDivElement>) => (
79 <div
80 className={cn(
81 'flex flex-col space-y-2 text-center sm:text-left',
82 className,
83 )}
84 {...props}
85 />
86);
87SheetHeader.displayName = 'SheetHeader';
88
89const SheetFooter = ({

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected