MCPcopy Create free account
hub / github.com/alanagoyal/docbase / DialogHeader

Function DialogHeader

components/ui/dialog.tsx:57–68  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.HTMLAttributes<HTMLDivElement>)

Source from the content-addressed store, hash-verified

55DialogContent.displayName = DialogPrimitive.Content.displayName
56
57const DialogHeader = ({
58 className,
59 ...props
60}: React.HTMLAttributes<HTMLDivElement>) => (
61 <div
62 className={cn(
63 "flex flex-col space-y-1.5 text-center sm:text-left",
64 className
65 )}
66 {...props}
67 />
68)
69DialogHeader.displayName = "DialogHeader"
70
71const DialogFooter = ({

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected