import { Body, Column, Container, Html, Img, Row, } from "@react-email/components"; import { Tailwind } from "@react-email/components"; import { Text, Heading } from "./post"; import { confirmEmailTailwindConfig, MailHead, makeStaticUrl, } from "./shared"; export const LeafletConfirmEmail = (props: { code?: string; assetsBaseUrl?: string; title?: string; message?: string; }) => { const leafletSrc = makeStaticUrl( props.assetsBaseUrl ?? "https://leaflet.pub", )("leaflet.png"); const title = props.title ?? "Welcome to Leaflet!"; const message = props.message ?? "Verify your email with this code"; return ( {title}{" "} {message} {props.code ?? "000000"} ); }; export default LeafletConfirmEmail;