UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 895 B
import React, { Component } from 'react'; export default class SetLeftCenterIcon 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-set-left-center-icon ${this.props.className}`}><path d="M9 5a7.001 7.001 0 0 1 3.002.684A6.998 6.998 0 0 1 15 5a7 7 0 1 1 0 14 7.001 7.001 0 0 1-3.002-.684c-.936.448-1.96.681-2.998.684A7 7 0 1 1 9 5zm6 2l-1.004.107A7 7 0 0 1 16 12a7 7 0 0 1-2.002 4.898L15 17a5 5 0 0 0 0-10zm-6.5 5c0 1.875.794 3.564 2.064 4.75l.999-.456A5.49 5.49 0 0 1 9.5 12a5.49 5.49 0 0 1 2.063-4.294l-1-.457A6.482 6.482 0 0 0 8.5 12z"/></svg> ) } }