react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 728 B
JSX
import React, { Component } from 'react';
export default class GlassdoorIcon 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-glassdoor-icon ${this.props.className}`}><path d="M18 6h-2v9c0 1-.177 1.64-1 1.947L9.5 19V6c0-.697.243-1.9 1.5-1.762L18 5V3.789L9 2.106A5.068 5.068 0 0 0 8 2c-1.278 0-2 .784-2 2v16.37c0 1.578 1.37 1.888 2 1.63l9-3.683c1-.41 1-1.317 1-2.317V6z"/></svg>
)
}
}