UNPKG

@onesy/ui-react

Version:
22 lines (21 loc) 673 B
import React from 'react'; import { ISection } from '../Section/Section'; import { IPropsAny } from '../types'; export declare type ISectionTimelineItem = { title?: string; heading?: string; description?: string; }; export declare type ISectionTimeline = ISection & { size?: 'small' | 'regular' | 'large'; values?: ISectionTimelineItem[]; TimelineProps?: IPropsAny; TimelineItemProps?: IPropsAny; TitleProps?: IPropsAny; HeadingProps?: IPropsAny; DescriptionProps?: IPropsAny; ItemStartProps?: IPropsAny; ItemEndProps?: IPropsAny; }; declare const SectionTimeline: React.FC<ISectionTimeline>; export default SectionTimeline;