index.d.ts 374 Bytes
import * as React from 'react';
export interface NumberInfoProps {
  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<NumberInfoProps, any> {}