import React from 'react'; import { Icon } from 'antd'; import styles from './index.less'; const Item = ({ title, flag, children, ...rest }) => (
{title} { flag && } {children}
); const Trend = ({ colorType, children, ...rest }) => (
{children}
); Trend.Item = Item; export default Trend;