import { Link as EmailLink } from '@react-email/components'; import { ReactNode } from 'react'; import { emailTheme } from 'src/common-style'; const linkStyle = { textDecoration: 'underline', }; type LinkProps = { value: ReactNode; href: string; color?: string; }; export const Link = ({ value, href, color }: LinkProps) => { return ( {value} ); };