UNPKG

@ricons/tabler

Version:

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

5 lines (4 loc) 804 B
import * as React from 'react' export default React.forwardRef(function Cheese(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: 'M4.519 20.008L21 20v-3.5a2 2 0 1 1 0-4V9H4.278' }), React.createElement('path', { d: 'M21 9l-9.385-4.992c-2.512.12-4.758 1.42-6.327 3.425C3.865 9.253 3 11.654 3 14.287c0 2.117.56 4.085 1.519 5.721' }), React.createElement('path', { d: 'M15 13v.01' }), React.createElement('path', { d: 'M8 13v.01' }), React.createElement('path', { d: 'M11 16v.01' }))) })