react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 694 B
JSX
import React, { Component } from 'react';
export default class PizzaIcon 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-pizza-icon ${this.props.className}`}><path d="M12 14.998a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm-5-8a2 2 0 1 1 3.998-.001A2 2 0 0 1 7 6.998zm5-5a12.074 12.074 0 0 0-8.99 4l8.99 16 8.992-15.996A12.071 12.071 0 0 0 12 1.998z"/></svg>
)
}
}