UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 650 B
import React, { Component } from 'react'; export default class SitemapIcon 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-sitemap-icon ${this.props.className}`}><path d="M9 2v6h2v3H5c-1.108 0-2 .892-2 2v3H1v6h6v-6H5v-3h6v3H9v6h6v-6h-2v-3h6v3h-2v6h6v-6h-2v-3c0-1.108-.892-2-2-2h-6V8h2V2H9z"/></svg> ) } }