UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

17 lines (16 loc) 597 B
import { ParagraphProps } from '../Paragraph'; import { PublishStateProps } from '../PublishState'; export interface PageHeaderProps { /** render publish state above category */ publishState?: PublishStateProps; /** render category/prefix above title */ category?: string; /** Render title text */ title?: string; /** Render subTitle text */ subTitle?: string; /** optional array of paragraphs `@atoms/headings/CompHeading` */ optionalContents?: ParagraphProps[]; } declare const PageHeader: (pageHeader: PageHeaderProps) => any; export default PageHeader;