@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 818 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function PhotoOff(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: 'M3 3l18 18' }), React.createElement('path', { d: 'M15 8h.01' }), React.createElement('path', { d: 'M19.121 19.122A3 3 0 0 1 17 20H7a3 3 0 0 1-3-3V7c0-.833.34-1.587.888-2.131M8 4h9a3 3 0 0 1 3 3v9' }), React.createElement('path', { d: 'M4 15l4-4c.928-.893 2.072-.893 3 0l5 5' }), React.createElement('path', { d: 'M16.32 12.34c.577-.059 1.162.162 1.68.66l2 2' })))
})