@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
5 lines (4 loc) • 944 B
JavaScript
import * as React from 'react'
export default React.forwardRef(function BrandGit(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: '16', cy: '12', r: '1' }), React.createElement('circle', { cx: '12', cy: '8', r: '1' }), React.createElement('circle', { cx: '12', cy: '16', r: '1' }), React.createElement('path', { d: 'M12 15V9' }), React.createElement('path', { d: 'M15 11l-2-2' }), React.createElement('path', { d: 'M11 7L9.1 5.1' }), React.createElement('path', { d: 'M10.5 20.4l-6.9-6.9c-.781-.781-.781-2.219 0-3l6.9-6.9c.781-.781 2.219-.781 3 0l6.9 6.9c.781.781.781 2.219 0 3l-6.9 6.9c-.781.781-2.219.781-3 0z' })))
})