MCPcopy Create free account
hub / github.com/WebDevSimplified/calendly-clone / AlertDialogHeader

Function AlertDialogHeader

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected