UNPKG

@astraicons/react

Version:

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

22 lines 1.26 kB
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", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M8.55 6.6a3.45 3.45 0 1 1 6.9 0 3.45 3.45 0 0 1-6.9 0M3.15 7.5a2.55 2.55 0 1 1 5.1 0 2.55 2.55 0 0 1-5.1 0M20.85 7.5a2.55 2.55 0 1 0-5.1 0 2.55 2.55 0 0 0 5.1 0M6.188 14.532a3.28 3.28 0 0 1 3.281-3.281h5.063a3.28 3.28 0 0 1 3.28 3.281v1.519a4.8 4.8 0 0 1-4.8 4.8h-2.024a4.8 4.8 0 0 1-4.8-4.8z" }), /*#__PURE__*/React.createElement("path", { d: "M5.531 12.75c-.984 0-1.781.798-1.781 1.782V17.4a1.95 1.95 0 0 0 1.95 1.95h.45a.75.75 0 0 1 0 1.5H5.7a3.45 3.45 0 0 1-3.45-3.45v-2.87a3.28 3.28 0 0 1 3.281-3.28.75.75 0 0 1 0 1.5M20.25 14.532c0-.984-.797-1.781-1.781-1.781a.75.75 0 1 1 0-1.5 3.28 3.28 0 0 1 3.281 3.28v2.87a3.45 3.45 0 0 1-3.45 3.45h-.45a.75.75 0 0 1 0-1.5h.45a1.95 1.95 0 0 0 1.95-1.95z" })); const ForwardRef = forwardRef(GroupIcon); module.exports = ForwardRef;