UNPKG

wix-style-react

Version:
16 lines (13 loc) 388 B
import * as React from 'react'; import { headingAppearance } from './ModalHeading'; export interface HeaderProps { className?: string; dataHook?: string; title?: React.ReactNode; titleAppearance?: headingAppearance; subtitle?: React.ReactNode; showHeaderDivider?: boolean; } export const Header: React.FunctionComponent<HeaderProps> & { Title: React.FunctionComponent; };