@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
38 lines • 1.24 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const GroupIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("circle", {
cx: 12.001,
cy: 6.6,
r: 2.7
}), /*#__PURE__*/React.createElement("circle", {
cx: 5.7,
cy: 7.5,
r: 1.8
}), /*#__PURE__*/React.createElement("circle", {
cx: 1.8,
cy: 1.8,
r: 1.8,
transform: "matrix(-1 0 0 1 20.1 5.7)"
}), /*#__PURE__*/React.createElement("path", {
d: "M6.938 14.531A2.53 2.53 0 0 1 9.468 12h5.063a2.53 2.53 0 0 1 2.531 2.531v1.519a4.05 4.05 0 0 1-4.05 4.05h-2.024a4.05 4.05 0 0 1-4.05-4.05z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M5.531 12A2.53 2.53 0 0 0 3 14.531V17.4a2.7 2.7 0 0 0 2.7 2.7h.45M18.469 12A2.53 2.53 0 0 1 21 14.531V17.4a2.7 2.7 0 0 1-2.7 2.7h-.45"
}));
const ForwardRef = forwardRef(GroupIcon);
module.exports = ForwardRef;