UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 741 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class MdPictureAsPdf extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m33.3 3.3h-20c-1.8 0-3.3 1.5-3.3 3.4v20c0 1.8 1.5 3.3 3.3 3.3h20c1.9 0 3.4-1.5 3.4-3.3v-20c0-1.9-1.5-3.4-3.4-3.4z m-14.1 12.5c0 1.4-1.1 2.5-2.5 2.5h-1.7v3.4h-2.5v-10h4.2c1.4 0 2.5 1.1 2.5 2.5v1.6z m8.3 3.4c0 1.4-1.1 2.5-2.5 2.5h-4.2v-10h4.2c1.4 0 2.5 1.1 2.5 2.5v5z m6.7-5h-2.5v1.6h2.5v2.5h-2.5v3.4h-2.5v-10h5v2.5z m-19.2 1.6h1.7v-1.6h-1.7v1.6z m-8.3-5.8h-3.4v23.3c0 1.9 1.5 3.4 3.4 3.4h23.3v-3.4h-23.3v-23.3z m16.6 9.2h1.7v-5h-1.7v5z"/></g> </IconBase> ); } }