react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 767 B
JSX
import React, { Component } from 'react';
export default class StackexchangeIcon 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-stackexchange-icon ${this.props.className}`}><path d="M4 14.037V11h16v3.037H4zM4 10V7h16v3H4zm13.461-8C18.863 2 20 3.178 20 4.63V6H4V4.63C4 3.177 5.135 2 6.536 2h10.925zM4 15h16v1.355c0 1.45-1.137 2.629-2.539 2.629L16.5 19 13 22v-3l-6.464-.016c-1.4 0-2.536-1.178-2.536-2.63V15z"/></svg>
)
}
}