Sha256: 680e67024f0e88248f3d89b34c473f8af080128ad56417f8952396a5a7219d78
Contents?: true
Size: 824 Bytes
Versions: 2
Compression:
Stored size: 824 Bytes
Contents
import React from 'react'; declare type TimelineProps = { aria?: { [key: string]: string; }; children?: React.ReactChild[] | React.ReactChild; className?: string; data?: { [key: string]: string; }; id?: string; orientation?: string; showDate?: boolean; }; declare const Timeline: { ({ aria, className, children, data, id, orientation, showDate, }: TimelineProps): JSX.Element; Item: ({ className, children, date, icon, iconColor, lineStyle, }: { className?: string; children?: React.ReactNode | React.ReactNode[]; date?: Date; icon?: string; iconColor?: "default" | "yellow" | "red" | "green" | "royal" | "blue" | "purple" | "teal"; lineStyle?: "dotted" | "solid"; }) => JSX.Element; }; export default Timeline;
Version data entries
2 entries across 2 versions & 1 rubygems