react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 739 B
JSX
import React, { Component } from 'react';
export default class BioIcon 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-bio-icon ${this.props.className}`}><path d="M17 12h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2zm0 2v3h3v-3h-3zM2 7h5a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2 2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H2V7zm2 2v3h3V9H4zm0 8h3v-3H4v3zm7-4h2v6h-2v-6zm0-4h2v2h-2V9z"/></svg>
)
}
}