react-chrono
Version:
A Modern Timeline component for React
13 lines • 334 B
TypeScript
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;
}
//# sourceMappingURL=TimelineCardTitleModel.d.ts.map