react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 879 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class MdCropLandscape extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m31.640000000000004 28.36v-16.71666666666667h-23.28333333333334v16.71666666666667h23.283333333333335z m0-20q1.3283333333333367 0 2.34333333333333 0.9766666666666666t1.0166666666666657 2.3050000000000015v16.71666666666667q0 1.3299999999999983-1.0166666666666657 2.306666666666665t-2.3433333333333337 0.9750000000000014h-23.28333333333333q-1.3266666666666689 0-2.3416666666666686-0.9766666666666666t-1.0150000000000006-2.3049999999999997v-16.715000000000003q0-1.3299999999999983 1.0166666666666666-2.306666666666665t2.3416666666666677-0.9766666666666666h23.283333333333335z"/></g>
</IconBase>
);
}
}