react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 678 B
JSX
import React, { Component } from 'react';
export default class KegIcon 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-keg-icon ${this.props.className}`}><path d="M5 22v-2h1l-.002-4H5v-2h.997l-.002-3H5V7h6V3h-1V2h4v1h-1v4h6v4h-1.005l.002 3H19v2h-1.002L18 20h1v2H5zM17 9a1 1 0 0 0-1-1h-2a1 1 0 1 0 0 2h2a1 1 0 0 0 1-1z"/></svg>
)
}
}