react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 494 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class IoIosGridView extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m15 25v-10h10v10h-10z m-10-20h30v30h-30v-30z m27.5 10v-1.2h-6.2v-6.3h-1.3v6.3h-10v-6.3h-1.2v6.3h-6.3v1.2h6.3v10h-6.3v1.3h6.3v6.2h1.2v-6.2h10v6.2h1.3v-6.2h6.2v-1.3h-6.2v-10h6.2z"/></g>
</IconBase>
);
}
}