react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.29 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdCameraRear extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m20 10q1.3283333333333331 0 2.3049999999999997-1.0166666666666657t0.9766666666666666-2.341666666666667-0.9783333333333317-2.3049999999999997-2.3033333333333346-0.9766666666666675-2.3433333333333337 0.9766666666666666-1.0166666666666657 2.3050000000000006 0.9783333333333317 2.3433333333333337 2.3816666666666677 1.0149999999999988z m8.36-10q1.3283333333333331 0 2.3049999999999997 1.0166666666666666t0.9750000000000014 2.341666666666667v23.283333333333335q0 1.326666666666668-0.9766666666666666 2.341666666666665t-2.306666666666665 1.0166666666666657h-11.716666666666669l5 5-5 5v-3.3616666666666646h-8.283333333333333v-3.2833333333333314h8.283333333333333v-3.355000000000004h-5q-1.33 0-2.3066666666666666-1.0166666666666657t-0.9766666666666666-2.3416666666666686v-23.286666666666665q0-1.326666666666667 0.9766666666666666-2.3416666666666672t2.3049999999999997-1.0166666666666666h16.71666666666666z m-5 33.36h8.283333333333331v3.2833333333333314h-8.283333333333331v-3.2833333333333314z"/></g>
</IconBase>
);
}
}