@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
7 lines (6 loc) • 897 B
JavaScript
'use strict'
Object.defineProperty(exports, '__esModule', { value: true })
const React = require('react')
exports.default = React.forwardRef(function Palette(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: 'M12 21a9 9 0 1 1 0-18a9 8 0 0 1 9 8a4.5 4 0 0 1-4.5 4H14a2 2 0 0 0-1 3.75A1.3 1.3 0 0 1 12 21' }), React.createElement('circle', { cx: '7.5', cy: '10.5', r: '.5', fill: 'currentColor' }), React.createElement('circle', { cx: '12', cy: '7.5', r: '.5', fill: 'currentColor' }), React.createElement('circle', { cx: '16.5', cy: '10.5', r: '.5', fill: 'currentColor' })))
})