MCPcopy
hub / github.com/TheOrcDev/8bitcn-ui / DialogHeader

Function DialogHeader

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

Source from the content-addressed store, hash-verified

174DialogContent.displayName = DialogPrimitive.Content.displayName;
175
176const DialogHeader = ({
177 className,
178 ...props
179}: React.HTMLAttributes<HTMLDivElement>) => (
180 <div
181 className={cn(
182 "flex flex-col space-y-1.5 text-center sm:text-left",
183 className
184 )}
185 {...props}
186 />
187);
188DialogHeader.displayName = "DialogHeader";
189
190const DialogFooter = ({

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected