UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

27 lines 1.37 kB
const React = require("react"); function GroupIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M8.25 6a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0M16.25 7a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0M2.25 7a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0M5.625 14.813a3.563 3.563 0 0 1 3.563-3.563h5.624a3.563 3.563 0 0 1 3.563 3.563V16.5c0 2.9-2.35 5.25-5.25 5.25h-2.25a5.25 5.25 0 0 1-5.25-5.25z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M4.813 12.75c-1.14 0-2.063.923-2.063 2.063V18A2.25 2.25 0 0 0 5 20.25h.5a.75.75 0 0 1 0 1.5H5A3.75 3.75 0 0 1 1.25 18v-3.187a3.563 3.563 0 0 1 3.563-3.563.75.75 0 0 1 0 1.5M19.188 12.75c1.139 0 2.062.923 2.062 2.063V18A2.25 2.25 0 0 1 19 20.25h-.5a.75.75 0 0 0 0 1.5h.5A3.75 3.75 0 0 0 22.75 18v-3.187a3.563 3.563 0 0 0-3.562-3.563.75.75 0 0 0 0 1.5", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(GroupIcon); module.exports = ForwardRef;