UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 324 B
import * as React from 'react'; import type { FormatConfig, valueType } from './utils'; interface NumberProps extends FormatConfig { value: valueType; prefixCls?: string; className?: string; style?: React.CSSProperties; } declare const StatisticNumber: React.FC<NumberProps>; export default StatisticNumber;