import classNames from 'classnames'; import React, { PropsWithChildren } from 'react'; import styles from './Popup.module.scss'; interface Props { testId?: string; style?: React.CSSProperties; className?: string; /** Should it display a subtle dark overlay over the rest of the screen */ overlay?: boolean; } /** * */ export default function Popup(props: PropsWithChildren) { return (
{props.children}
); }