import * as React from 'react';
export interface INumberInfoProps {
title?: React.ReactNode | string;
subTitle?: React.ReactNode | string;
total?: React.ReactNode | string;
status?: 'up' | 'down';
theme?: string;
gap?: number;
subTotal?: number;
style?: React.CSSProperties;
}
export default class NumberInfo extends React.Component<INumberInfoProps, any> {}
-
由 sin 提交于b2068ae4