react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 828 B
JSX
import React, { Component } from 'react';
export default class FoodOffIcon 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-food-off-icon ${this.props.className}`}><path fillRule="evenodd" d="M2 5.268L3.277 4 21 21.723 19.732 23l-2-2H15.5l-.291-2.523-2.238-2.237A1 1 0 0 1 12 17H3a1 1 0 1 1 0-2h5l1.5 1.5L11 15h.732l-1-1H2a3 3 0 0 1 3-3h2.732L2 5.268zM14 8h2.234l-1.137-4.538 1.746-.438L18.09 8H22l-1.26 10.918-6.195-6.196L14 8zm-1 10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3h11z"/></svg>
)
}
}