@codecademy/gamut-icons 9.57.10-alpha.6fbda1.0 → 9.57.10-alpha.6fdcff.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -297,7 +297,6 @@ export * from './SymbolEqualIcon';
|
|
|
297
297
|
export * from './SynchronizeRefreshArrowIcon';
|
|
298
298
|
export * from './TagIcon';
|
|
299
299
|
export * from './TaskListMultipleIcon';
|
|
300
|
-
export * from './TeamIcon';
|
|
301
300
|
export * from './TerminalIcon';
|
|
302
301
|
export * from './ThumbsDownFilledIcon';
|
|
303
302
|
export * from './ThumbsDownIcon';
|
|
@@ -297,7 +297,6 @@ export * from './SymbolEqualIcon';
|
|
|
297
297
|
export * from './SynchronizeRefreshArrowIcon';
|
|
298
298
|
export * from './TagIcon';
|
|
299
299
|
export * from './TaskListMultipleIcon';
|
|
300
|
-
export * from './TeamIcon';
|
|
301
300
|
export * from './TerminalIcon';
|
|
302
301
|
export * from './ThumbsDownFilledIcon';
|
|
303
302
|
export * from './ThumbsDownIcon';
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.57.10-alpha.
|
|
4
|
+
"version": "9.57.10-alpha.6fdcff.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "20.0.3-alpha.
|
|
8
|
-
"@codecademy/variance": "0.26.2-alpha.
|
|
7
|
+
"@codecademy/gamut-styles": "20.0.3-alpha.6fdcff.0",
|
|
8
|
+
"@codecademy/variance": "0.26.2-alpha.6fdcff.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist"
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { Svg } from '../../props';
|
|
3
|
-
import { useIconId } from '../../useIconId';
|
|
4
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
|
-
export const TeamIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
-
title,
|
|
7
|
-
titleId,
|
|
8
|
-
size = 16,
|
|
9
|
-
height = size,
|
|
10
|
-
width = size,
|
|
11
|
-
...props
|
|
12
|
-
}, svgRef) => {
|
|
13
|
-
const maskId = useIconId('TeamIcon');
|
|
14
|
-
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
-
viewBox: "0 0 24 24",
|
|
17
|
-
fill: "#fff",
|
|
18
|
-
role: "img",
|
|
19
|
-
"aria-hidden": "true",
|
|
20
|
-
"pointer-events": "none",
|
|
21
|
-
width: width,
|
|
22
|
-
height: height,
|
|
23
|
-
ref: svgRef,
|
|
24
|
-
"aria-labelledby": titleId,
|
|
25
|
-
...props,
|
|
26
|
-
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
27
|
-
id: titleId,
|
|
28
|
-
children: title
|
|
29
|
-
}) : null, /*#__PURE__*/_jsxs("mask", {
|
|
30
|
-
id: `${maskId}`,
|
|
31
|
-
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
-
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",
|
|
33
|
-
fill: "none",
|
|
34
|
-
stroke: "#fff",
|
|
35
|
-
strokeLinecap: "round",
|
|
36
|
-
strokeLinejoin: "round",
|
|
37
|
-
strokeWidth: 1.5
|
|
38
|
-
}), /*#__PURE__*/_jsx("path", {
|
|
39
|
-
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",
|
|
40
|
-
fill: "none",
|
|
41
|
-
stroke: "#fff",
|
|
42
|
-
strokeLinecap: "round",
|
|
43
|
-
strokeLinejoin: "round",
|
|
44
|
-
strokeWidth: 1.5
|
|
45
|
-
})]
|
|
46
|
-
}), /*#__PURE__*/_jsx("g", {
|
|
47
|
-
mask: `url(#${maskId})`,
|
|
48
|
-
children: /*#__PURE__*/_jsx("rect", {
|
|
49
|
-
width: `100%`,
|
|
50
|
-
height: `100%`,
|
|
51
|
-
fill: `currentColor`
|
|
52
|
-
})
|
|
53
|
-
})]
|
|
54
|
-
});
|
|
55
|
-
});
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" id="User-Multiple-Half-Female-Male--Streamline-Ultimate" height="24" width="24">
|
|
2
|
-
<desc>
|
|
3
|
-
User Multiple Half Female Male Streamline Icon: https://streamlinehq.com
|
|
4
|
-
</desc>
|
|
5
|
-
<defs></defs>
|
|
6
|
-
<path d="M16.053 10.5a6.025 6.025 0 0 0 -8.106 0" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
7
|
-
<path d="m8.635 4.395 -0.009 0.636a4.835 4.835 0 0 1 -0.7 2.677" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
8
|
-
<path d="m15.364 4.395 0.009 0.636a4.826 4.826 0 0 0 0.7 2.677" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
9
|
-
<path d="M8.635 4.395A4.24 4.24 0 0 0 12 3.166a4.238 4.238 0 0 0 3.364 1.229" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
10
|
-
<path d="M8.625 4.125a3.375 3.375 0 1 0 6.75 0 3.375 3.375 0 1 0 -6.75 0" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
11
|
-
<path d="M15.125 16.125a3.375 3.375 0 1 0 6.75 0 3.375 3.375 0 1 0 -6.75 0" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
12
|
-
<path d="M23.25 23.25a6.026 6.026 0 0 0 -9.5 0" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
13
|
-
<path d="M21.875 16.236a6.762 6.762 0 0 1 -6.443 -1.516" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
14
|
-
<path d="M2.125 16.125a3.375 3.375 0 1 0 6.75 0 3.375 3.375 0 1 0 -6.75 0" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
15
|
-
<path d="M10.249 23.25a6.026 6.026 0 0 0 -9.5 0" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
16
|
-
<path d="M8.875 16.236a6.762 6.762 0 0 1 -6.443 -1.516" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
17
|
-
</svg>
|