UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 910 B
import React, { Component } from 'react'; export default class VectorSelectionIcon 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-vector-selection-icon ${this.props.className}`}><path d="M3 1h2v2H3v2H1V3a2 2 0 0 1 2-2zm11 0a2 2 0 0 1 2 2v2h-2V3h-2V1h2zm6 6a2 2 0 0 1 2 2v2h-2V9h-2V7h2zm2 13a2 2 0 0 1-2 2h-2v-2h2v-2h2v2zm-2-7h2v3h-2v-3zm-7-4V7h3v3h-2V9h-1zm0 13v-2h3v2h-3zm-4 0a2 2 0 0 1-2-2v-2h2v2h2v2H9zm-2-6v-3h2v1h1v2H7zM7 3V1h3v2H7zM3 16a2 2 0 0 1-2-2v-2h2v2h2v2H3zM1 7h2v3H1V7zm8 0h2v2H9v2H7V9a2 2 0 0 1 2-2zm7 7a2 2 0 0 1-2 2h-2v-2h2v-2h2v2z"/></svg> ) } }