import type { ReactNode } from 'react' interface Props { icon: ReactNode text: ReactNode } const FormBoxEmpty = ({ icon, text }: Props) => { return (
{icon}

{text}

) } export default FormBoxEmpty