UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 824 B
import React, { Component } from 'react'; export default class SelectionOffIcon 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-selection-off-icon ${this.props.className}`}><path d="M.5 3.768L1.777 2.5 21.5 22.223 20.232 23.5l-1.5-1.5H17v-1.732L3.732 7H2V5.268l-1.5-1.5zM4 2h3v2H5.823L3.83 2.007 4 2zm18 2v3h-2V4h-3V2h3a2 2 0 0 1 2 2zm-2 13h2v3l-.007.17L20 18.177V17zM2 20v-3h2v3h3v2H4a2 2 0 0 1-2-2zm8-18h4v2h-4V2zm0 18h4v2h-4v-2zm10-10h2v4h-2v-4zM2 10h2v4H2v-4z"/></svg> ) } }