react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 709 B
JSX
import React, { Component } from 'react';
export default class CupOffIcon 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-cup-off-icon ${this.props.className}`}><path d="M1 4.268L2.277 3 21 21.723 19.732 23l-1.46-1.46a1.99 1.99 0 0 1-1.272.458H7a2 2 0 0 1-1.986-1.767L3.53 6.798 1 4.268zm17.325 3.73l.442-4H5.82l-2-2H21l-1.71 15.47-9.47-9.47h8.505z"/></svg>
)
}
}