@exah/react-icons
Version:
svg react icons of popular icon packs using ES6 imports
18 lines (15 loc) • 588 B
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import React from 'react';
import Icon from 'react-icon-base';
var MdComputer = function MdComputer(props) {
return React.createElement(
Icon,
_extends({ viewBox: '0 0 40 40' }, props),
React.createElement(
'g',
null,
React.createElement('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' })
)
);
};
export default MdComputer;