UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 432 B
const React = require('react/addons'); const PureRenderMixin = React.addons.PureRenderMixin; const SvgIcon = require('../../svg-icon'); const ActionTrendingUp = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z"/> </SvgIcon> ); } }); module.exports = ActionTrendingUp;