@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.8 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function ClusteredList({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "ClusteredList",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8 5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM2.5 14a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1ZM13.5 14a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm0-2a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M11.5 2.5c0 .573-.138 1.114-.382 1.591A4.99 4.99 0 0 1 13 8v.035a3.529 3.529 0 0 1 1.992.298 6.998 6.998 0 0 0-3.542-6.425c.033.192.05.39.05.592ZM4.5 2.5c0 .573.138 1.114.382 1.591A4.99 4.99 0 0 0 3 8v.035a3.53 3.53 0 0 0-1.992.298A6.998 6.998 0 0 1 4.55 1.908c-.033.192-.05.39-.05.592ZM4.735 14.194a3.503 3.503 0 0 0 1.115-1.678A4.98 4.98 0 0 0 8 13a4.98 4.98 0 0 0 2.15-.484 3.504 3.504 0 0 0 1.115 1.678A6.968 6.968 0 0 1 8 15c-1.18 0-2.29-.291-3.265-.806Z",
shapeRendering: "geometricPrecision"
}));
}
ClusteredList.displayName = 'ClusteredList';
export default createBaseComponent(ClusteredList);