react-chrono
Version:
A Modern Timeline component for React
16 lines • 833 B
TypeScript
import { TitleModel } from '../../../models/TimelineCardTitleModel';
import { default as React } from 'react';
/**
* TimelineItemTitle component
* This component renders the title of a timeline item and applies appropriate styling based on the given props.
*
* @property {string | ReactNode} title - The text or JSX element of the title.
* @property {boolean} active - Indicates whether the title is active or not.
* @property {Theme} theme - The theme object, used for styling.
* @property {string} align - The alignment of the title.
* @property {string} classString - Additional CSS classes for the title.
* @returns {JSX.Element} The TimelineItemTitle component.
*/
declare const TimelineItemTitle: React.FunctionComponent<TitleModel>;
export default TimelineItemTitle;
//# sourceMappingURL=timeline-card-title.d.ts.map