MCPcopy
hub / github.com/cursor/community-plugins / DialogHeader

Function DialogHeader

apps/cursor/src/components/ui/dialog.tsx:61–72  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.HTMLAttributes<HTMLDivElement>)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected