UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 570 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class GoOcticonBeaker extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m35.9 36.5l-8.4-19v-10h2.5v-2.5h-22.5v2.5h2.5v10l-8.4 19c-0.8 1.6 0.4 3.5 2.2 3.5h29.9c1.8 0 3-1.9 2.2-3.5z m-26.5-11.5l3.1-7.5v-10h12.5v10l3.1 7.5h-18.7z m10.6-5h2.5v2.5h-2.5v-2.5z m-2.5-2.5h-2.5v-2.5h2.5v2.5z m0-7.5h2.5v2.5h-2.5v-2.5z m0-7.5h-2.5v-2.5h2.5v2.5z"/></g> </IconBase> ); } }