react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 722 B
JSX
import React, { Component } from 'react';
export default class UngroupIcon 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-ungroup-icon ${this.props.className}`}><path d="M2 2h4v1h7V2h4v4h-1v3h2V8h4v4h-1v6h1v4h-4v-1h-6v1H8v-4h1v-2H6v1H2v-4h1V6H2V2zm16 10v-1h-2v2h1v4h-4v-1h-2v2h1v1h6v-1h1v-6h-1zm-5-6V5H6v1H5v7h1v1h3v-2H8V8h4v1h2V6h-1zm-1 6h-1v2h2v-1h1v-2h-2v1z"/></svg>
)
}
}