import { CSSProperties, ReactNode } from 'react'; import classNames from 'classnames'; import styles from './PopupForm.module.css'; export function PopupForm({ className, style, children, }: { className?: string; style?: CSSProperties; children: ReactNode; }) { return (