UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 788 B
import React, { Component } from 'react'; export default class MicroscopeIcon extends Component { static defaultProps = { className: '' }; constructor(props) { super(props); } render() { return ( <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-microscope-icon ${this.props.className}`}><path d="M9.465 6.281l1.584 2.742A5 5 0 0 0 6.5 14a5 5 0 0 0 9.584 2H13.5v-2h8v2h-2.252a7.999 7.999 0 0 1-2.456 4H19.5v2h-16v-2h2.708A7.98 7.98 0 0 1 3.5 14a8 8 0 0 1 5.965-7.719zM12.74 2.07l.75 1.3.866-.5 3.5 6.062-3.464 2-3.5-6.063.866-.5-.75-1.299 1.732-1z"/></svg> ) } }