UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 623 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdViewComfy extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m5 15h6.7v-6.7h-6.7v6.7z m0 8.3h6.7v-6.6h-6.7v6.6z m8.3 0h6.7v-6.6h-6.7v6.6z m8.4 0h6.6v-6.6h-6.6v6.6z m-8.4-8.3h6.7v-6.7h-6.7v6.7z m8.4-6.7v6.7h6.6v-6.7h-6.6z m8.3 15h6.7v-6.6h-6.7v6.6z m-25 8.4h6.7v-6.7h-6.7v6.7z m8.3 0h6.7v-6.7h-6.7v6.7z m8.4 0h6.6v-6.7h-6.6v6.7z m8.3 0h6.7v-6.7h-6.7v6.7z m0-23.4v6.7h6.7v-6.7h-6.7z"/></g> </IconBase> ); } }