react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 645 B
JSX
import React, { Component } from 'react';
export default class PharmacyIcon 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-pharmacy-icon ${this.props.className}`}><path d="M16 13.998h-3v3h-2v-3H8v-2h3v-3h2v3h3m5-7h-2.646L19.5 1.853 17.15.998l-1.456 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6v-2z"/></svg>
)
}
}