import classNames from 'classnames' import { ReactNode } from 'react' import Button from 'components/Button' interface Props { className?: string icon?: ReactNode onClick: () => void setShow: (show: boolean) => void text: string | ReactNode } const OverlayAction = ({ className, icon, onClick, setShow, text }: Props) => { return ( ) } export default OverlayAction