@semcore/icon
Version:
Semrush Icon Component
32 lines • 1.62 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 UserGroup({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "UserGroup",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10.027 3.766A5.514 5.514 0 0 0 8.77 1.994a3 3 0 1 1 1.65 4.95 5.529 5.529 0 0 0-.057-2.174 1 1 0 1 0-.334-1.004ZM12.5 10h-1.126a6.032 6.032 0 0 0-1.495-1.459c.091-.175.174-.355.246-.541H12.5a3.5 3.5 0 0 1 3.5 3.5V13h-2v-1.5a1.5 1.5 0 0 0-1.5-1.5Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M5 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M3.5 10A3.5 3.5 0 0 0 0 13.5V15h2v-1.5A1.5 1.5 0 0 1 3.5 12h3A1.5 1.5 0 0 1 8 13.5V15h2v-1.5A3.5 3.5 0 0 0 6.5 10h-3Z",
shapeRendering: "geometricPrecision"
}));
}
UserGroup.displayName = 'UserGroup';
export default createBaseComponent(UserGroup);