import { Button } from "@react-email/components" type ButtonProps = React.PropsWithChildren & { href: string } export const LinkButton = ({ children, href }: ButtonProps) => ( )