UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 747 B
import React, { Component } from 'react'; export default class PlusCircleOutlineIcon 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-plus-circle-outline-icon ${this.props.className}`}><path d="M12 19.998c-4.412 0-8-3.589-8-8s3.588-8 8-8c4.41 0 8 3.589 8 8s-3.59 8-8 8zm0-18c-5.524 0-10 4.477-10 10s4.476 10 10 10c5.522 0 10-4.477 10-10s-4.478-10-10-10zm1 5h-2v4H7v2h4v4h2v-4h4v-2h-4v-4z"/></svg> ) } }