@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 829 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function TagsOff(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: 'M6 6h-.975A2.025 2.025 0 0 0 3 8.025v2.834c0 .537.213 1.052.593 1.432l6.116 6.116a2.025 2.025 0 0 0 2.864 0l2.834-2.834c.028-.028.055-.056.08-.085' }), React.createElement('path', { d: 'M17.573 18.407l.418-.418m1.997-1.997l.419-.419a2.025 2.025 0 0 0 0-2.864L13.29 5.593' }), React.createElement('path', { d: 'M6 9h-.01' }), React.createElement('path', { d: 'M3 3l18 18' })))
})