index.d.ts 376 Bytes
Newer Older
sin's avatar
sin committed
1 2 3 4 5 6 7 8 9 10 11 12 13
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> {}