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

Function AlertDialogHeader

apps/frontend/src/components/ui/alert-dialog.tsx:46–57  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.HTMLAttributes<HTMLDivElement>)

Source from the content-addressed store, hash-verified

44AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
45
46const AlertDialogHeader = ({
47 className,
48 ...props
49}: React.HTMLAttributes<HTMLDivElement>) => (
50 <div
51 className={cn(
52 'flex flex-col space-y-2 text-center sm:text-left',
53 className,
54 )}
55 {...props}
56 />
57);
58AlertDialogHeader.displayName = 'AlertDialogHeader';
59
60const AlertDialogFooter = ({

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected