UNPKG

@wulperstudio/cms

Version:
9 lines (8 loc) 268 B
import React from 'react'; import { BoxProps, ContainerProps } from '@mui/material'; export interface HeroModel extends BoxProps { header?: React.ReactNode; image?: string; containerProps?: ContainerProps; } export declare const Hero: React.FC<HeroModel>;