@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 648 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function DropletOff(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: 'M8.454 8.458l-1.653 2.545a6 6 0 0 0 10.32 6.123' }), React.createElement('path', { d: 'M18 14a5.971 5.971 0 0 0-.803-3L12 3l-1.968 3.03' }), React.createElement('path', { d: 'M3 3l18 18' })))
})