react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 780 B
JSX
import React, { Component } from 'react';
export default class CakeIcon 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-cake-icon ${this.props.className}`}><path d="M11.5.5c.5.25 1.5 1.895 1.5 3S12.328 5 11.5 5 10 4.855 10 3.75 11 2 11.5.5zm7 8.5a4.5 4.5 0 0 1 2.5 8.242V23H3v-5.758A4.5 4.5 0 0 1 5.5 9H10V6h3v3h5.5zM12 16a2.5 2.5 0 0 0 2.5-2.5H16a2.5 2.5 0 1 0 2.5-2.5h-13A2.5 2.5 0 1 0 8 13.5h1.5A2.5 2.5 0 0 0 12 16z"/></svg>
)
}
}