antd
Version:
An enterprise-class UI design language and React components implementation
14 lines (13 loc) • 341 B
TypeScript
/// <reference types="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): JSX.Element;