UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 970 B
import * as React from 'react' export default React.forwardRef(function BallBaseball(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: 'M5.636 18.364A9 9 0 1 0 18.364 5.636A9 9 0 0 0 5.636 18.364z' }), React.createElement('path', { d: 'M12.495 3.02a9 9 0 0 1-9.475 9.475' }), React.createElement('path', { d: 'M20.98 11.505a9 9 0 0 0-9.475 9.475' }), React.createElement('path', { d: 'M9 9l2 2' }), React.createElement('path', { d: 'M13 13l2 2' }), React.createElement('path', { d: 'M11 7l2 1' }), React.createElement('path', { d: 'M7 11l1 2' }), React.createElement('path', { d: 'M16 11l1 2' }), React.createElement('path', { d: 'M11 16l2 1' }))) })