react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 856 B
JSX
import React, { Component } from 'react';
export default class ThoughtBubbleIcon 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-thought-bubble-icon ${this.props.className}`}><path d="M3.5 19a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm5-3a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5zm6-1a3.99 3.99 0 0 1-3-1.354 4.001 4.001 0 0 1-6.932-1.91 4.002 4.002 0 0 1 2.204-7.662A3.986 3.986 0 0 1 9.5 3a3.99 3.99 0 0 1 3 1.354 4.001 4.001 0 0 1 6.933 1.91A4.002 4.002 0 0 1 18 14l-.772-.075A3.986 3.986 0 0 1 14.5 15z"/></svg>
)
}
}