UNPKG

material-ui

Version:

Material Design UI components built with React

22 lines (16 loc) 497 B
'use strict'; var React = require('react'); var PureRenderMixin = require('react-addons-pure-render-mixin'); var SvgIcon = require('../../svg-icon'); var EditorFormatSize = React.createClass({ displayName: 'EditorFormatSize', mixins: [PureRenderMixin], render: function render() { return React.createElement( SvgIcon, this.props, React.createElement('path', { d: 'M9 4v3h5v12h3V7h5V4H9zm-6 8h3v7h3v-7h3V9H3v3z' }) ); } }); module.exports = EditorFormatSize;