import { Button as EmailButton } from "@react-email/components"; export const Button = ({ children, href, }: { children: React.ReactNode; href?: string; }) => { return ( {children} ); };