react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 467 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdComputer extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m6.6 10v16.6h26.8v-16.6h-26.8z m26.8 20h6.6v3.4h-40v-3.4h6.6q-1.3 0-2.3-1t-0.9-2.4v-16.6q0-1.3 0.9-2.3t2.3-1.1h26.8q1.3 0 2.3 1.1t0.9 2.3v16.6q0 1.4-0.9 2.4t-2.3 1z"/></g>
</IconBase>
);
}
}