UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 704 B
import * as React from 'react' export default React.forwardRef(function Geometry(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: 'M7 21l4-12m2 0l1.48 4.439m.949 2.847L17 21' }), React.createElement('circle', { cx: '12', cy: '7', r: '2' }), React.createElement('path', { d: 'M4 12c1.526 2.955 4.588 5 8 5c3.41 0 6.473-2.048 8-5' }), React.createElement('path', { d: 'M12 5V3' }))) })