UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 788 B
import * as React from 'react' export default React.forwardRef(function Tractor(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: '15', r: '4' }), React.createElement('path', { d: 'M7 15v.01' }), React.createElement('circle', { cx: '19', cy: '17', r: '2' }), React.createElement('path', { d: 'M10.5 17H17' }), React.createElement('path', { d: 'M20 15.2V11a1 1 0 0 0-1-1h-6l-2-5H5v6.5' }), React.createElement('path', { d: 'M18 5h-1a1 1 0 0 0-1 1v4' }))) })