UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 783 B
import React, { Component } from 'react'; export default class HomeCircleIcon 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-home-circle-icon ${this.props.className}`}><path d="M19.07 4.93A9.63 9.63 0 0 0 12 2a9.63 9.63 0 0 0-7.06 2.93A9.63 9.63 0 0 0 2 12a9.62 9.62 0 0 0 2.93 7.06A9.62 9.62 0 0 0 12 22a9.63 9.63 0 0 0 7.06-2.93A9.63 9.63 0 0 0 22 12a9.63 9.63 0 0 0-2.93-7.07zM17 12v6h-3.5v-5h-3v5H7v-6H5l7-7 7.5 7H17z"/></svg> ) } }