material-ui
Version:
Material Design UI components built with React
22 lines (16 loc) • 573 B
JavaScript
;
var React = require('react');
var PureRenderMixin = require('react-addons-pure-render-mixin');
var SvgIcon = require('../../svg-icon');
var EditorFormatTextdirectionLToR = React.createClass({
displayName: 'EditorFormatTextdirectionLToR',
mixins: [PureRenderMixin],
render: function render() {
return React.createElement(
SvgIcon,
this.props,
React.createElement('path', { d: 'M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8l-4-4v3H5v2h12v3l4-4z' })
);
}
});
module.exports = EditorFormatTextdirectionLToR;