UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 415 B
const React = require('react/addons'); const PureRenderMixin = React.addons.PureRenderMixin; const SvgIcon = require('../../svg-icon'); const NavigationExpandLess = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z"/> </SvgIcon> ); } }); module.exports = NavigationExpandLess;