index.d.ts 323 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
import React from "react";
export interface ChartCardProps {
  title: string | React.ReactNode;
  action?: React.ReactNode;
  total?: React.ReactNode | number;
  footer?: React.ReactNode;
  contentHeight: number;
  avatar?: React.ReactNode;
}

export default class ChartCard extends React.Component<ChartCardProps, any> {}