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 SilverwareSpoonIcon 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-silverware-spoon-icon ${this.props.className}`}><path d="M14.882 11.53L5.121 21.29l-1.414-1.414 9.761-9.762c-.712-1.525-.212-3.677 1.38-5.269 1.913-1.914 4.652-2.277 6.116-.813 1.465 1.464 1.101 4.203-.813 6.116-1.591 1.592-3.744 2.093-5.269 1.38z"/></svg>
)
}
}