index.d.ts 177 Bytes
Newer Older
1 2 3 4 5 6 7 8
import React from "react";

export interface TrendProps {
  colorful?: boolean;
  flag: "up" | "down";
}

export default class Trend extends React.Component<TrendProps, any> {}