Skip to content

Commit dc3300e

Browse files
feat: changed dialog component from lib to src folder
1 parent 93fda51 commit dc3300e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from "react"
2+
import { Modal } from "../Modal"
3+
4+
export const DialogFooter = ({ className, children,...rest }: React.ComponentProps<"div">) => {
5+
return (
6+
<Modal.Footer hideBorder className={className} {...rest}>
7+
{children}
8+
</Modal.Footer>
9+
)
10+
}

0 commit comments

Comments
 (0)