react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 1.08 kB
JSX
import React, { Component } from 'react';
export default class ProfessionalHexagonIcon 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-professional-hexagon-icon ${this.props.className}`}><path d="M21 16.5a1 1 0 0 1-.527.881l-7.907 4.443a.996.996 0 0 1-1.132 0l-7.907-4.443A1 1 0 0 1 3 16.5v-9a1 1 0 0 1 .527-.881l7.907-4.443a.995.995 0 0 1 1.132 0l7.907 4.443A1 1 0 0 1 21 7.5v9zM5 9v6h1.25v-2H7a2 2 0 1 0 0-4H5zm1.25 3v-2h.5a1 1 0 1 1 0 2h-.5zm3.5-3v6H11v-2h.75l.664 2h1.317l-.794-2.39A2 2 0 0 0 11.75 9h-2zM11 12v-2h.5a1 1 0 1 1 0 2H11zm6-3c-1.38 0-2.5 1.343-2.5 3s1.12 3 2.5 3 2.5-1.343 2.5-3-1.12-3-2.5-3zm0 1.25c.76 0 1.375.784 1.375 1.75s-.616 1.75-1.375 1.75c-.76 0-1.375-.784-1.375-1.75s.616-1.75 1.375-1.75z"/></svg>
)
}
}