@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 896 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function Satellite(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.707 6.293l2.586-2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1-1.414 0L3.707 7.707a1 1 0 0 1 0-1.414z' }), React.createElement('path', { d: 'M6 10l-3 3l3 3l3-3' }), React.createElement('path', { d: 'M10 6l3-3l3 3l-3 3' }), React.createElement('path', { d: 'M12 12l1.5 1.5' }), React.createElement('path', { d: 'M14.5 17a2.5 2.5 0 0 0 2.5-2.5' }), React.createElement('path', { d: 'M15 21a6 6 0 0 0 6-6' })))
})