UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 557 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class GoOcticonDesktopDownload extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m10 15h7.5v-15h5v15h7.5l-10 10-10-10z m27.5-10h-10v2.5h10v20h-35v-20h10v-2.5h-10c-1.4 0-2.5 1.1-2.5 2.5v22.5c0 1.4 1.1 2.5 2.5 2.5h13.4c-0.7 1.5-2.2 3.5-5.9 5h20c-3.7-1.5-5.2-3.5-5.9-5h13.4c1.4 0 2.5-1.1 2.5-2.5v-22.5c0-1.4-1.1-2.5-2.5-2.5z"/></g> </IconBase> ); } }