@semcore/icon
Version:
Semrush Icon Component
28 lines • 1.41 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootChartVenn({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ChartVenn",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M17.822 6.678A8.502 8.502 0 0 1 14.5 23.004a8.502 8.502 0 0 1-7.826-5.178 9.66 9.66 0 0 0 2.34.163 6.5 6.5 0 1 0 8.97-8.97 9.66 9.66 0 0 0-.162-2.341ZM11.423 6.58c.364.552.576 1.212.576 1.922a6.524 6.524 0 0 0-3.501 3.5c-.71 0-1.37-.211-1.922-.575a8.523 8.523 0 0 1 4.847-4.847Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.5 1.004a7.5 7.5 0 1 1 0 15 7.5 7.5 0 0 1 0-15Zm0 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z",
shapeRendering: "geometricPrecision"
}));
}
RootChartVenn.displayName = 'ChartVenn';
const ChartVenn = createBaseComponent(RootChartVenn);
export { ChartVenn as default };