import React from 'react' import { GrMail } from 'react-icons/gr' const classes = { sticky: 'fixed flex justify-center bottom-11 left-0 right-0 z-10', container: 'border-2 p-3', text: 'font-semibold text-xl', btn: 'flex rounded place-items-center px-2 py-1 border-2', } interface Props { sendEmail(): any visible: boolean } function ConfirmEmail({ sendEmail, visible }: Props) { return !!visible ? (

Please confirm your email to get started.

) : null } export { ConfirmEmail }