MCPcopy Create free account
hub / github.com/AnswerOverflow/AnswerOverflow / DialogFooter

Function DialogFooter

packages/ui/src/ui/dialog.tsx:71–82  ·  view source on GitHub ↗
({
	className,
	...props
}: React.HTMLAttributes<HTMLDivElement>)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected