UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 428 B
var React = require('react'); var IconBase = require('../IconBase'); export default class MdApps extends React.Component { render() { return ( <IconBase viewBox="0 0 24 24" {...this.props}> <g><path d="M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z"/></g> </IconBase> ); } }