react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 860 B
JSX
import React, { Component } from 'react';
export default class GoogleCirclesInviteIcon 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-google-circles-invite-icon ${this.props.className}`}><path d="M5 10a2 2 0 1 0-.001 3.999A2 2 0 0 0 5 10zm0 6a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm5.5-5H14V8l4 4-4 4v-3h-3.5v-2zM5 6c-.451 0-.89.05-1.314.144A10.992 10.992 0 0 1 13 1c6.075 0 11 4.925 11 11s-4.925 11-11 11a10.992 10.992 0 0 1-9.314-5.144 6.021 6.021 0 0 0 3.565-.293 8 8 0 1 0 0-11.127A5.983 5.983 0 0 0 5 6z"/></svg>
)
}
}