react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 739 B
JSX
import React, { Component } from 'react';
export default class FoodVariantIcon 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-variant-icon ${this.props.className}`}><path d="M22 18a4 4 0 0 1-4 4h-3a4 4 0 0 1-4-4v-2h6.794l2.755-4.773 1.559.9L19.872 16H22v2zM9 22H2c0-3 0-6 .333-9.167C2.6 10.3 3.08 7.661 3.603 5H3V3h5v2h-.602c.522 2.66 1.002 5.3 1.269 7.833C9 16 9 19 9 22z"/></svg>
)
}
}