UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 668 B
import React, { Component } from 'react'; export default class GroupIcon 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-group-icon ${this.props.className}`}><path d="M8 8v4h5V8H8zM1 1h4v1h14V1h4v4h-1v14h1v4h-4v-1H5v1H1v-4h1V5H1V1zm4 18v1h14v-1h1V5h-1V4H5v1H4v14h1zM6 6h9v4h3v8H8v-4H6V6zm9 8h-5v2h6v-4h-1v2z"/></svg> ) } }