export interface ModalProps { active: boolean; onClose: () => void; height?: string | number; width?: string | number; children: React.ReactNode; }