react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 477 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class IoIosGridViewOutline extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m35 15h-8.7v10h8.7v1.3h-8.7v8.7h-1.3v-8.7h-10v8.7h-1.2v-8.7h-8.8v-1.3h8.8v-10h-8.8v-1.2h8.8v-8.8h1.2v8.8h10v-8.8h1.3v8.8h8.7v1.2z m-10 10v-10h-10v10h10z"/></g>
</IconBase>
);
}
}