import React, { ReactNode } from 'react'; import { classNames } from '@/shared/lib/classNames/classNames'; import { Button } from '@/shared/ui/Button/Button'; import ModalClose from '@/shared/assets/icons/input-close.svg?react'; import cls from './Modal.module.scss'; export enum ModalTheme { ON_SIDE = 'onSide', } interface ModalProps { className?: string; classNameContent?: string; children: ReactNode; theme?: string; isOpen: boolean; onClose: () => void; } export const Modal = (props: ModalProps) => { const { className, classNameContent, children, theme = '', isOpen, onClose } = props; const mods = { [cls.opened]: isOpen }; const closeHandler = () => { if (onClose) { onClose(); } }; const onContentClick = (e: React.MouseEvent) => { e.stopPropagation(); }; return (