@codecademy/gamut-icons

9.57.99.57.10-alpha.8d11b0.0
dist/icons/regular/TeamIcon.js
+dist/icons/regular/TeamIcon.jsNew file
+55
Index: package/dist/icons/regular/TeamIcon.js
===================================================================
--- package/dist/icons/regular/TeamIcon.js
+++ package/dist/icons/regular/TeamIcon.js
@@ -0,0 +1,55 @@
+import * as React from 'react';
+import { Svg } from '../../props';
+import { useIconId } from '../../useIconId';
+import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
+export const TeamIcon = /*#__PURE__*/React.forwardRef(({
+  title,
+  titleId,
+  size = 16,
+  height = size,
+  width = size,
+  ...props
+}, svgRef) => {
+  const maskId = useIconId('TeamIcon');
+  return /*#__PURE__*/_jsxs(Svg, {
+    xmlns: "http://www.w3.org/2000/svg",
+    viewBox: "0 0 24 24",
+    fill: "#fff",
+    role: "img",
+    "aria-hidden": "true",
+    "pointer-events": "none",
+    width: width,
+    height: height,
+    ref: svgRef,
+    "aria-labelledby": titleId,
+    ...props,
+    children: [title ? /*#__PURE__*/_jsx("title", {
+      id: titleId,
+      children: title
+    }) : null, /*#__PURE__*/_jsxs("mask", {
+      id: `${maskId}`,
+      children: [/*#__PURE__*/_jsx("path", {
+        d: "M16.053 10.5a6.025 6.025 0 00-8.106 0m.688-6.105l-.009.636a4.835 4.835 0 01-.7 2.677m7.438-3.313l.009.636a4.826 4.826 0 00.7 2.677M8.635 4.395A4.24 4.24 0 0012 3.166a4.238 4.238 0 003.364 1.229",
+        fill: "none",
+        stroke: "#fff",
+        strokeLinecap: "round",
+        strokeLinejoin: "round",
+        strokeWidth: 1.5
+      }), /*#__PURE__*/_jsx("path", {
+        d: "M8.625 4.125a3.375 3.375 0 106.75 0 3.375 3.375 0 10-6.75 0m6.5 12a3.375 3.375 0 106.75 0 3.375 3.375 0 10-6.75 0m8.125 7.125a6.026 6.026 0 00-9.5 0m8.125-7.014a6.762 6.762 0 01-6.443-1.516M2.125 16.125a3.375 3.375 0 106.75 0 3.375 3.375 0 10-6.75 0m8.124 7.125a6.026 6.026 0 00-9.5 0m8.126-7.014a6.762 6.762 0 01-6.443-1.516",
+        fill: "none",
+        stroke: "#fff",
+        strokeLinecap: "round",
+        strokeLinejoin: "round",
+        strokeWidth: 1.5
+      })]
+    }), /*#__PURE__*/_jsx("g", {
+      mask: `url(#${maskId})`,
+      children: /*#__PURE__*/_jsx("rect", {
+        width: `100%`,
+        height: `100%`,
+        fill: `currentColor`
+      })
+    })]
+  });
+});
\ No newline at end of file