import { Img, Text, Heading, Section } from '@react-email/components' import { featureSection, heading, text, image as imageStyle } from '../styles' type Props = { title: string children: React.ReactNode image?: { src: string alt: string } } export const NewsletterSection = ({ title, image, children }: Props) => (
{title} {children} {image && {image.alt}}
)