index.d.ts 311 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
import 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;
}

export default class NumberInfo extends React.Component<NumberInfoProps, any> {}