UNPKG

@ricons/tabler

Version:

React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)

5 lines (4 loc) 898 B
import * as React from 'react' export default React.forwardRef(function KeyboardHide(props, ref) { return React.createElement('svg', Object.assign({ xmlns: 'http://www.w3.org/2000/svg', xmlnsXlink: 'http://www.w3.org/1999/xlink', viewBox: '0 0 24 24' }, props, { ref: ref }), React.createElement('g', { fill: 'none', stroke: 'currentColor', 'stroke-width': '2', 'stroke-linecap': 'round', 'stroke-linejoin': 'round' }, React.createElement('rect', { x: '2', y: '3', width: '20', height: '12', rx: '2' }), React.createElement('path', { d: 'M6 7h0' }), React.createElement('path', { d: 'M10 7h0' }), React.createElement('path', { d: 'M14 7h0' }), React.createElement('path', { d: 'M18 7h0' }), React.createElement('path', { d: 'M6 11v.01' }), React.createElement('path', { d: 'M18 11v.01' }), React.createElement('path', { d: 'M10 11h4' }), React.createElement('path', { d: 'M10 21l2-2l2 2' }))) })