react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.2 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdAddToPhotos extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m31.640000000000004 18.36v-3.3599999999999994h-6.640000000000004v-6.639999999999999h-3.3599999999999994v6.639999999999999h-6.640000000000001v3.3599999999999994h6.640000000000001v6.640000000000001h3.3599999999999994v-6.640000000000001h6.640000000000001z m1.7200000000000024-15q1.3283333333333331 0 2.3049999999999997 0.9766666666666666t0.9750000000000014 2.3049999999999997v20q0 1.3283333333333331-0.9766666666666666 2.3433333333333337t-2.306666666666665 1.0166666666666657h-20q-1.3283333333333331 0-2.3433333333333337-1.0166666666666657t-1.0133333333333425-2.341666666666665v-20q0-1.3283333333333331 1.0166666666666657-2.3049999999999997t2.3433333333333337-0.9766666666666666h20z m-26.720000000000006 6.640000000000001v23.36h23.36v3.2833333333333314h-23.36q-1.3283333333333331 0-2.3049999999999997-0.9783333333333317t-0.9750000000000001-2.306666666666665v-23.358333333333334h3.2833333333333337z"/></g>
</IconBase>
);
}
}