UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 786 B
import * as React from 'react' export default React.forwardRef(function TagOff(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('path', { d: 'M7.792 7.793a1 1 0 0 0 1.414 1.414' }), React.createElement('path', { d: 'M4.88 4.877A2.99 2.99 0 0 0 4 7v3.859c0 .537.213 1.052.593 1.432l8.116 8.116a2.025 2.025 0 0 0 2.864 0l2.416-2.416m2.002-2.002l.416-.416a2.025 2.025 0 0 0 0-2.864L12.29 4.593A2.025 2.025 0 0 0 10.859 4H8' }), React.createElement('path', { d: 'M3 3l18 18' }))) })