Sword/src/components/Charts/MiniProgress/index.d.ts

11 lines
270 B
TypeScript

import * as React from 'react';
export interface IMiniProgressProps {
target: number;
color?: string;
strokeWidth?: number;
percent?: number;
style?: React.CSSProperties;
}
export default class MiniProgress extends React.Component<IMiniProgressProps, any> {}