index.d.ts 258 Bytes
Newer Older
1
import React from 'react';
2

jim's avatar
jim committed
3
export interface ITrendProps {
4
  colorful?: boolean;
jim's avatar
jim committed
5 6
  flag: 'up' | 'down';
  style?: React.CSSProperties;
jim's avatar
jim committed
7
  reverseColor?: boolean;
8
  className?: string;
9 10
}

jim's avatar
jim committed
11
export default class Trend extends React.Component<ITrendProps, any> {}