MCPcopy
hub / github.com/Nutlope/logocreator / DialogFooter

Function DialogFooter

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

Source from the content-addressed store, hash-verified

68DialogHeader.displayName = "DialogHeader";
69
70const DialogFooter = ({
71 className,
72 ...props
73}: React.HTMLAttributes<HTMLDivElement>) => (
74 <div
75 className={cn(
76 "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
77 className,
78 )}
79 {...props}
80 />
81);
82DialogFooter.displayName = "DialogFooter";
83
84const DialogTitle = React.forwardRef<

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected