& {notTextCentered?: boolean}) => (
(
+ ({ className, variant, ...props }, ref) => (
+
+ )
+);
+
+DialogCancel.displayName = "DialogCancel";
+
+const DialogAction = React.forwardRef(
+ ({ className, variant, ...props }, ref) => (
+
+ )
+);
+DialogAction.displayName = "DialogAction";
+
+
export {
Dialog,
DialogTrigger,
@@ -122,4 +149,6 @@ export {
DialogFooter,
DialogTitle,
DialogDescription,
+ DialogCancel,
+ DialogAction,
};