UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 957 B
import React, { Component } from 'react'; export default class VectorIntersectionIcon 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-intersection-icon ${this.props.className}`}><path d="M3.143 1A2.138 2.138 0 0 0 1 3.143V5h2V3h2V1H3.143zM7 1v2h3V1H7zm5 0v2h2v2h2V3.143A2.138 2.138 0 0 0 13.857 1H12zM1 7v3h2V7H1zm8 0c-1.108 0-2 .892-2 2v7h6.857A2.138 2.138 0 0 0 16 13.857V7H9zm9 0v2h2v2h2V9c0-1.108-.892-2-2-2h-2zM9 9h5v5H9V9zm-8 3v1.857C1 15.045 1.955 16 3.143 16H5v-2H3v-2H1zm19 1v3h2v-3h-2zM7 18v2c0 1.108.892 2 2 2h2v-2H9v-2H7zm13 0v2h-2v2h2c1.108 0 2-.892 2-2v-2h-2zm-7 2v2h3v-2h-3z"/></svg> ) } }