react-material-icons
Version:
Material design icons as [material-ui](https://github.com/callemall/material-ui) SvgIcon component. Icon components build with iconbuilder tool from material-ui.
22 lines (16 loc) • 464 B
JavaScript
;
var React = require('react');
var mui = require('material-ui');
var SvgIcon = mui.SvgIcon;
var createClass = require('create-react-class');
var EditorFormatQuote = createClass({
displayName: 'EditorFormatQuote',
render: function render() {
return React.createElement(
SvgIcon,
this.props,
React.createElement('path', { d: 'M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z' })
);
}
});
module.exports = EditorFormatQuote;