react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 844 B
JSX
import React, { Component } from 'react';
export default class CookieIcon 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-cookie-icon ${this.props.className}`}><path d="M12 3a9 9 0 1 0 8.871 7.48C20.603 10.007 20 10 20 10h-2V9c0-1-1-1-1-1h-2V7c0-1-1-1-1-1h-1V4c0-1-1-1-1-1zM9.5 6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm-3 4a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm5 1a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm5 2a1.5 1.5 0 0 1 0 3 1.5 1.5 0 0 1 0-3zM11 16a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z"/></svg>
)
}
}