import { styled } from '@/styles'; import { Modal, ModalWrapper, ModalCloseButton } from '@/ui/modal'; import { Button } from '@/ui/button'; import Input from '@/ui/input'; import { useState } from 'react'; interface LoginModalProps { open: boolean; onClose: () => void; workSpaceName: string; } export const DeleteModal = ({ open, onClose, workSpaceName, }: LoginModalProps) => { const [canDelete, setCanDelete] = useState(true); const InputChange = (value: string) => { if (value === workSpaceName) { setCanDelete(false); } else { setCanDelete(true); } }; return (
{ onClose(); }} />
Delete Workspace
This action cannot be undone. This will permanently delete{' '} {workSpaceName} workspace name along with all its content.
); }; const Header = styled('div')({ position: 'relative', height: '44px', }); const Content = styled('div')({ display: 'flex', padding: '0 48px', flexDirection: 'column', alignItems: 'center', gap: '16px', }); const ContentTitle = styled('h1')({ fontSize: '20px', lineHeight: '28px', fontWeight: 600, textAlign: 'center', paddingBottom: '16px', }); const Footer = styled('div')({ height: '70px', paddingLeft: '24px', marginTop: '32px', textAlign: 'center', });