From eff1935fe33cc44c9c1f60633c8c0f3a38f5b49d Mon Sep 17 00:00:00 2001 From: Justfemi Date: Mon, 29 Jul 2024 00:22:17 +0100 Subject: [PATCH 1/2] feat:added role-creation-modal --- .../common/modals/role-creation/index.tsx | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/components/common/modals/role-creation/index.tsx diff --git a/src/components/common/modals/role-creation/index.tsx b/src/components/common/modals/role-creation/index.tsx new file mode 100644 index 000000000..2759b6bdd --- /dev/null +++ b/src/components/common/modals/role-creation/index.tsx @@ -0,0 +1,65 @@ +"use client"; + +import CustomButton from "~/components/common/common-button/common-button"; +import { + Dialog, + DialogContent, + DialogDescription, + DialogHeader, + DialogTitle, +} from "~/components/ui/dialog"; + +interface ModalProperties { + show: boolean; + onClose: () => void; +} + +const RoleCreationModal: React.FC = ({ show, onClose }) => { + return ( + <> + + + + +

+ Create Role +

+
+ +

+ Define customized responsibilities for collaborative success. +

+
+ + +
+
+ +