react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 994 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdHttp extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m35.86 19.14v-1.6400000000000006h-3.3599999999999994v1.6400000000000006h3.3599999999999994z m0-4.140000000000001q1.0166666666666657 0 1.7583333333333329 0.7416666666666671t0.7433333333333323 1.7583333333333329v1.6400000000000006q0 1.0166666666666657-0.7416666666666671 1.7583333333333329t-1.7566666666666677 0.7399999999999984h-3.3633333333333297v3.361666666666668h-2.5v-10h5.859999999999999z m-15 2.5v-2.5h7.5v2.5h-2.5v7.5h-2.5v-7.5h-2.5z m-9.22 0v-2.5h7.500000000000002v2.5h-2.5v7.5h-2.5v-7.5h-2.5z m-4.140000000000001 0.8599999999999994v-3.3599999999999994h2.5000000000000018v10h-2.5v-4.140000000000001h-3.3599999999999994v4.140000000000001h-2.5v-10h2.5v3.3599999999999994h3.3599999999999994z"/></g>
</IconBase>
);
}
}