import { Button, Modal, ModalProps } from '@/components' import s from './dialog.module.scss' export type DialogProps = ModalProps & { cancelText?: string confirmText?: string onCancel?: () => void onConfirm?: () => void } export const Dialog = ({ cancelText = 'Cancel', children, confirmText = 'OK', onCancel, onConfirm, ...modalProps }: DialogProps) => { return ( {children}
) }