import React from 'react'; import { Icon } from 'antd'; import classNames from 'classnames'; import styles from './index.less'; const Trend = ({ colorful = true, flag, children, className, ...rest }) => { const classString = classNames( styles.trendItem, { [styles.trendItemGrey]: !colorful, }, className ); return (
{children} {flag && ( )}
); }; export default Trend;