@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 925 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function BrandAppleArcade(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: '12', cy: '5', r: '2' }), React.createElement('path', { d: 'M20 12.5v4.75a.734.734 0 0 1-.055.325a.704.704 0 0 1-.348.366l-5.462 2.58a4.998 4.998 0 0 1-4.27 0l-5.462-2.58a.705.705 0 0 1-.401-.691L4 12.5' }), React.createElement('path', { d: 'M4.431 12.216l5.634-2.332a5.065 5.065 0 0 1 3.87 0l5.634 2.332a.692.692 0 0 1 .028 1.269l-5.462 2.543a5.064 5.064 0 0 1-4.27 0l-5.462-2.543a.691.691 0 0 1 .028-1.27z' }), React.createElement('path', { d: 'M12 7v6' })))
})