UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 901 B
import React, { Component } from 'react'; export default class KeyboardOffIcon 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-keyboard-off-icon ${this.props.className}`}><path d="M1 4.268L2.277 3 20 20.723 18.732 22l-3.002-3.002H4a2 2 0 0 1-2-2l.01-10a2 2 0 0 1 .45-1.27L1 4.268zm18 5.73v-2h-2v2h2zm0 3v-2h-2v2h2zm-3-3v-2h-2v2h2zm0 3v-2h-2v1.179l-2.18-2.179H13v-2h-2v1.179L9.82 7.998l-3-3H20a2 2 0 0 1 2 2v10c0 .86-.543 1.592-1.304 1.875l-5.875-5.875h1.178zm-8 2v2h5.73l-2-2H8zm-3-5h1.73L5 8.268v1.73zm2 3v-2H5v2h2zm1 0h1.73L8 11.268v1.73z"/></svg> ) } }