material-ui
Version:
Material Design UI components built with React
22 lines (16 loc) • 475 B
JavaScript
;
var React = require('react/addons');
var PureRenderMixin = React.addons.PureRenderMixin;
var SvgIcon = require('../../svg-icon');
var ContentSort = React.createClass({
displayName: 'ContentSort',
mixins: [PureRenderMixin],
render: function render() {
return React.createElement(
SvgIcon,
this.props,
React.createElement('path', { d: 'M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z' })
);
}
});
module.exports = ContentSort;