Files
bot/packages/emails/src/components/HeroImage.tsx

13 lines
275 B
TypeScript
Raw Normal View History

2022-11-21 19:08:14 +01:00
import { IMjmlImageProps, MjmlImage } from '@faire/mjml-react'
import { borderBase } from '../theme'
2022-11-21 19:08:14 +01:00
export const HeroImage = (props: IMjmlImageProps) => (
<MjmlImage
cssClass="hero"
padding="0"
align="left"
borderRadius={borderBase}
{...props}
2022-11-21 19:08:14 +01:00
/>
)