MCPcopy
hub / github.com/21st-dev/1code / DialogHeader

Function DialogHeader

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

Source from the content-addressed store, hash-verified

74DialogContent.displayName = DialogPrimitive.Content.displayName
75
76const DialogHeader = ({
77 className,
78 ...props
79}: React.HTMLAttributes<HTMLDivElement>) => (
80 <div
81 className={cn(
82 "flex flex-col space-y-1.5 text-center sm:text-left",
83 className,
84 )}
85 {...props}
86 />
87)
88DialogHeader.displayName = "DialogHeader"
89
90const DialogFooter = ({

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected