import { ReactNode } from 'react'; import { Heading } from '@react-email/components'; import { emailTheme } from 'src/common-style'; type SubTitleProps = { value: ReactNode; }; const subTitleStyle = { fontFamily: emailTheme.font.family, fontSize: emailTheme.font.size.lg, fontWeight: emailTheme.font.weight.bold, color: emailTheme.font.colors.highlighted, }; export const SubTitle = ({ value }: SubTitleProps) => { return ( {value} ); };