export interface IBasicModalProps { children: React.ReactNode; open: boolean; className?: string; onClose: () => void; }