Sword/src/components/Trend/index.d.ts
smallchill 9401de3ca4 🎉 1.0.0-RC1.
2019-01-01 22:20:57 +08:00

11 lines
241 B
TypeScript

import * as React from 'react';
export interface ITrendProps {
colorful?: boolean;
flag: 'up' | 'down';
style?: React.CSSProperties;
reverseColor?: boolean;
}
export default class Trend extends React.Component<ITrendProps, any> {}