@ricons/tabler
Version:
React SVG icon components integrated from [`tabler`](https://github.com/tabler/tabler-icons)
7 lines (6 loc) • 799 B
JavaScript
Object.defineProperty(exports, '__esModule', { value: true })
const React = require('react')
exports.default = React.forwardRef(function ChartRadar(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 3l9.5 7L18 21H6L2.5 10z' }), React.createElement('path', { d: 'M12 7.5l5.5 4L15 17H8.5l-2-5.5z' }), React.createElement('path', { d: 'M2.5 10l9.5 3l9.5-3' }), React.createElement('path', { d: 'M12 3v10l6 8' }), React.createElement('path', { d: 'M6 21l6-8' })))
})