antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
14 lines (13 loc) • 347 B
TypeScript
import * as React from 'react';
export interface UnitNumberProps {
prefixCls: string;
value: string | number;
offset?: number;
current?: boolean;
}
export interface SingleNumberProps {
prefixCls: string;
value: string;
count: number;
}
export default function SingleNumber(props: SingleNumberProps): React.JSX.Element;