MCPcopy
hub / github.com/nraiden/openv0 / DialogHeader

Function DialogHeader

webapps-starters/react/shadcn/src/components/ui/dialog.tsx:58–69  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.HTMLAttributes<HTMLDivElement>)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected