react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.78 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdKeyboard extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m31.640000000000004 16.64v-3.283333333333333h-3.283333333333335v3.283333333333333h3.2833333333333314z m0 5v-3.2833333333333314h-3.283333333333335v3.2833333333333314h3.2833333333333314z m-5-5v-3.283333333333333h-3.283333333333335v3.283333333333333h3.2833333333333314z m0 5v-3.2833333333333314h-3.283333333333335v3.2833333333333314h3.2833333333333314z m0 6.719999999999999v-3.3599999999999994h-13.283333333333333v3.3599999999999994h13.283333333333333z m-15-11.719999999999999v-3.283333333333333h-3.283333333333333v3.283333333333333h3.283333333333333z m0 5v-3.2833333333333314h-3.283333333333333v3.2833333333333314h3.283333333333333z m1.7200000000000006-3.280000000000001v3.2833333333333314h3.283333333333333v-3.2833333333333314h-3.283333333333333z m0-5v3.2833333333333314h3.283333333333333v-3.283333333333333h-3.283333333333333z m5.000000000000002 5v3.2833333333333314h3.2833333333333314v-3.2833333333333314h-3.2833333333333314z m0-5v3.2833333333333314h3.2833333333333314v-3.283333333333333h-3.2833333333333314z m15-5q1.3283333333333331 0 2.3049999999999997 0.9766666666666666t0.9750000000000014 2.3049999999999997v16.716666666666665q0 1.3300000000000018-0.9766666666666666 2.3066666666666684t-2.306666666666665 0.9750000000000014h-26.713333333333342q-1.330000000000001 0-2.3066666666666675-0.9766666666666666t-0.9766666666666666-2.306666666666665v-16.71333333333334q0-1.3299999999999983 0.9766666666666666-2.306666666666665t2.3050000000000006-0.9766666666666666h26.71666666666667z"/></g>
</IconBase>
);
}
}