react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 705 B
JSX
import React, { Component } from 'react';
export default class MedicalBagIcon 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-medical-bag-icon ${this.props.className}`}><path d="M10 3L8 5v2H5C3.846 7 3.123 8 3 9L2 19c-.123 1 .543 2 2 2h16c1.458 0 2.123-1 2-2L21 9c-.123-1-.943-2-2-2h-3V5l-2-2h-4zm0 2h4v2h-4V5zm1 5h2v3h3v2h-3v3h-2v-3H8v-2h3v-3z"/></svg>
)
}
}