react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 664 B
JSX
import React, { Component } from 'react';
export default class GlassMugIcon 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-glass-mug-icon ${this.props.className}`}><path d="M10 4v3h8V4h-8zM8 2h13v1l-1 1v16l1 1v1H7v-1l1-1v-1.4l-3.802-1.767A2 2 0 0 1 3 15V8a2 2 0 0 1 2-2h3V4L7 3V2h1zM5 15l3 1.394V8H5v7z"/></svg>
)
}
}