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

Function DialogFooter

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected