react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 798 B
JSX
import React, { Component } from 'react';
export default class XmppIcon 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-xmpp-icon ${this.props.className}`}><path d="M11.998 15.397C9.745 13.09 8 9.545 8 6L2 4.003c0 5.646 4.332 10.111 8.547 12.655-1.17.845-2.4 1.339-3.547 1.339v1c1.199 0 3.025-.54 4.997-1.536C13.97 18.461 15.8 19 17 19v-1c-1.149 0-2.38-.495-3.552-1.343C17.665 14.114 22 9.647 22 4l-6 1.997c0 3.546-1.747 7.093-4.002 9.4z"/></svg>
)
}
}