import { Component } from 'react'; import cx from 'classnames'; export interface ITimelineLegendProps { color?: string; children?: React.ReactNode; className?: string; style?: React.CSSProperties; } export const TimelineDot = ({ color = '', ...props }) => (
); export class TimelineLegend extends Component