UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 780 B
import React, { Component } from 'react'; export default class YeastIcon 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-yeast-icon ${this.props.className}`}><path d="M18 14a4 4 0 1 1-4 4l.091-.853c-.04-.702-.168-1.31-.541-1.655-.203-.189-.48-.3-.802-.36a6.5 6.5 0 1 1 2.384-2.384c.06.323.171.599.36.802.346.373.953.5 1.655.541L18 14zM7.5 10a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm2-5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9z"/></svg> ) } }