UNPKG

react-chrono

Version:
13 lines (12 loc) 282 B
import { Theme } from './Theme'; import { ReactNode } from 'react'; /** * Represents the model for a title element. */ export interface TitleModel { active?: boolean; align?: 'left' | 'right'; classString?: string; theme?: Theme; title?: string | ReactNode; }