react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 776 B
JSX
import React, { Component } from 'react';
export default class ChiliMildIcon 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-chili-mild-icon ${this.props.className}`}><path d="M13.75 9l1.2-.76A2 2 0 0 1 16 10v11.75S8 20 8 11v-1c0-.73.39-1.368.974-1.717L10.427 9l1.562-1 1.761 1zM10 2a3 3 0 0 1 2.979 2.639 3.51 3.51 0 0 1 2.241 1.987l-1.47.874-1.76-1-1.563 1-1.667-.826a3.51 3.51 0 0 1 2.182-2.011A1 1 0 0 0 10 4V2z"/></svg>
)
}
}