react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 833 B
JSX
import React, { Component } from 'react';
export default class SelectOffIcon 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-select-off-icon ${this.props.className}`}><path d="M1 4.268L2.277 3 21 21.723 19.732 23 17 20.268V21h-2v-2h.732L5 8.268V9H3V7h.732L1 4.268zM20 3a1 1 0 0 1 1 1v1h-2V3h1zm-5 2V3h2v2h-2zm-4 0V3h2v2h-2zM7 5V3h2v2H7zm4 16v-2h2v2h-2zm-4 0v-2h2v2H7zm-3 0a1 1 0 0 1-1-1v-1h2v2H4zm-1-6h2v2H3v-2zm18 0v2h-2v-2h2zM3 11h2v2H3v-2zm18 0v2h-2v-2h2zm0-4v2h-2V7h2z"/></svg>
)
}
}