zent
Version:
一套前端设计语言和基于React的实现
18 lines (17 loc) • 473 B
TypeScript
import { Component } from 'react';
export interface ITimelineLegendProps {
color?: string;
children?: React.ReactNode;
className?: string;
style?: React.CSSProperties;
}
export declare const TimelineDot: ({ color, ...props }: {
[x: string]: any;
color?: string;
}) => JSX.Element;
export declare class TimelineLegend extends Component<ITimelineLegendProps> {
static defaultProps: {
className: string;
};
render(): JSX.Element;
}