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