8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import * as React from 'react';
|
|
export interface IndicatorProps {
|
|
prefixCls: string;
|
|
indicator?: React.ReactNode;
|
|
percent?: number;
|
|
}
|
|
export default function Indicator(props: IndicatorProps): React.JSX.Element;
|