UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 814 B
import * as React from 'react' export default React.forwardRef(function BallAmericanFootball(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: 'M15 9l-6 6' }), React.createElement('path', { d: 'M10 12l2 2' }), React.createElement('path', { d: 'M12 10l2 2' }), React.createElement('path', { d: 'M8 21a5 5 0 0 0-5-5' }), React.createElement('path', { d: 'M16 3C8.82 3 3 8.82 3 16a5 5 0 0 0 5 5c7.18 0 13-5.82 13-13a5 5 0 0 0-5-5' }), React.createElement('path', { d: 'M16 3a5 5 0 0 0 5 5' }))) })