UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 419 B
const React = require('react'); const PureRenderMixin = require('react-addons-pure-render-mixin'); const SvgIcon = require('../../svg-icon'); const NavigationExpandMore = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z"/> </SvgIcon> ); } }); module.exports = NavigationExpandMore;