UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

10 lines (9 loc) 280 B
import * as React from 'react'; export interface IndicatorProps { prefixCls: string; indicator?: React.ReactNode; percent?: number; className?: string; style?: React.CSSProperties; } export default function Indicator(props: IndicatorProps): React.JSX.Element;