import React from 'react'; interface EmailPreviewProps { to?: string[]; subject?: string; body?: string; from?: string; logo?: string; actionButtonText?: string; className?: string; customContent?: React.ReactNode; } /** * * A common component to preview emails. * *  * * @example * * import { useFormikContext } from "formik"; * import EmailPreview from "@bigbinary/neeto-molecules/EmailPreview"; * const EmailShare = () => { * const { values } = useFormikContext(); * return ( *