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 BrandCucumber(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: 'M20 10.99c-.01 5.52-4.48 10-10 10.01v-2.26l-.01-.01c-4.28-1.11-6.86-5.47-5.76-9.75a8.001 8.001 0 0 1 9.74-5.76C17.5 4.13 20 7.35 20 11v-.01z' }), React.createElement('path', { d: 'M10.5 8L10 7' }), React.createElement('path', { d: 'M13.5 14l.5 1' }), React.createElement('path', { d: 'M9 12.5L8 13' }), React.createElement('path', { d: 'M11 14l-.5 1' }), React.createElement('path', { d: 'M13 8l.5-1' }), React.createElement('path', { d: 'M16 12.5l-1-.5' }), React.createElement('path', { d: 'M9 10l-1-.5' }))) })