@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
38 lines • 1.2 kB
JavaScript
const React = require("react");
function GroupIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 6,
r: 3
}), /*#__PURE__*/React.createElement("circle", {
cx: 19,
cy: 7,
r: 2
}), /*#__PURE__*/React.createElement("circle", {
cx: 5,
cy: 7,
r: 2
}), /*#__PURE__*/React.createElement("path", {
d: "M6.375 14.813A2.813 2.813 0 0 1 9.188 12h5.624a2.813 2.813 0 0 1 2.813 2.813V16.5a4.5 4.5 0 0 1-4.5 4.5h-2.25a4.5 4.5 0 0 1-4.5-4.5z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M4.813 12v0A2.813 2.813 0 0 0 2 14.813V18a3 3 0 0 0 3 3v0h.5M19.188 12v0A2.813 2.813 0 0 1 22 14.813V18a3 3 0 0 1-3 3v0h-.5"
}));
}
const ForwardRef = React.forwardRef(GroupIcon);
module.exports = ForwardRef;