@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
7 lines (6 loc) • 781 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true })
const React = require('react')
exports.default = React.forwardRef(function Butterfly(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: 'M11.995 18.176a3 3 0 1 1-4.953-2.449l-.025.023A4.502 4.502 0 0 1 8.5 7c1.414 0 2.675.652 3.5 1.671a4.5 4.5 0 1 1 4.983 7.079A3 3 0 1 1 12 18z' }), React.createElement('path', { d: 'M12 19V9' }), React.createElement('path', { d: 'M9 3l3 2l3-2' })))
})