react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 663 B
JSX
import React, { Component } from 'react';
export default class FoodAppleIcon 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-apple-icon ${this.props.className}`}><path d="M20 10c2 3-3 12-5 12s-2-1-3-1-1 1-3 1-7-9-5-12 5-3 7-2V5C5.381 8.071 4.106 3.784 4.106 3.784S6.771.193 11 5V3h2v5c2-1 5-1 7 2z"/></svg>
)
}
}