import React from 'react'; import { Button as ReactEmailButton } from '@react-email/components'; import { theme } from '../theme'; interface ButtonProps { href: string; children: React.ReactNode; } export const Button = ({ href, children }: ButtonProps) => { return ( {children} ); };