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