UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 720 B
import * as React from 'react' export default React.forwardRef(function TruckOff(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('circle', { cx: '7', cy: '17', r: '2' }), React.createElement('path', { d: 'M15.585 15.586a2 2 0 0 0 2.826 2.831' }), React.createElement('path', { d: 'M5 17H3V6a1 1 0 0 1 1-1h1m3.96 0H13v4m0 4v4m-4 0h6m6 0v-6h-6m-2-5h5l3 5' }), React.createElement('path', { d: 'M3 3l18 18' }))) })