react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 995 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdAddToQueue extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m26.64 16.64v3.3599999999999994h-5v5h-3.2833333333333314v-5h-5v-3.3599999999999994h5v-5h3.2833333333333314v5h5z m8.36 11.719999999999999v-20h-30v20h30z m0-23.36q1.3283333333333331 0 2.3433333333333337 0.9766666666666666t1.0166666666666657 2.383333333333333l-0.0799999999999983 20q0 1.3283333333333331-0.9766666666666666 2.3049999999999997t-2.3033333333333346 0.975000000000005h-8.361666666666668v3.359999999999996h-13.283333333333333v-3.3583333333333343h-8.354999999999999q-1.4066666666666667 0-2.3833333333333333-0.9766666666666666t-0.9766666666666666-2.306666666666665v-20q0-1.4066666666666663 0.9766666666666666-2.383333333333333t2.3800000000000003-0.9750000000000014h30.000000000000004z"/></g>
</IconBase>
);
}
}