react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.14 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdStraighten extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m35 26.64v-13.283333333333333h-3.3599999999999994v6.643333333333333h-3.2833333333333314v-6.643333333333334h-3.356666666666669v6.643333333333334h-3.361666666666668v-6.643333333333334h-3.283333333333335v6.643333333333334h-3.354999999999997v-6.643333333333334h-3.3633333333333333v6.643333333333334h-3.283333333333333v-6.643333333333334h-3.3566666666666665v13.283333333333335h30.000000000000004z m0-16.64q1.3283333333333331 0 2.3433333333333337 1.0166666666666657t1.0166666666666657 2.341666666666667v13.283333333333333q0 1.326666666666668-1.0166666666666657 2.3416666666666686t-2.3433333333333337 1.0166666666666657h-30q-1.3283333333333331 0-2.3433333333333333-1.0166666666666657t-1.0166666666666666-2.3433333333333337v-13.283333333333333q0-1.3266666666666662 1.0166666666666666-2.341666666666667t2.3433333333333333-1.0150000000000006h30z"/></g>
</IconBase>
);
}
}