UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 711 B
import React, { Component } from 'react'; export default class CakeLayeredIcon 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-layered-icon ${this.props.className}`}><path d="M21 20.998v-4a2 2 0 0 0-2-2h-1v-3a2 2 0 0 0-2-2h-3v-2h-2v2H8a2 2 0 0 0-2 2v3H5a2 2 0 0 0-2 2v4H1v2h22v-2m-11-14a2 2 0 0 0 1.714-3.029L12 1l-1.715 2.97A2 2 0 0 0 12 6.998z"/></svg> ) } }