📝 Add v2.26 newsletter
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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) => (
|
||||
<Section style={featureSection}>
|
||||
<Heading style={heading}>{title}</Heading>
|
||||
<Text style={text}>{children}</Text>
|
||||
{image && <Img src={image.src} alt={image.alt} style={imageStyle} />}
|
||||
</Section>
|
||||
)
|
||||
Reference in New Issue
Block a user