@codecademy/gamut-icons 9.53.0 → 9.53.1-alpha.4615f3.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.
- package/dist/icons/regular/AdminIcon.d.ts +3 -0
- package/dist/icons/regular/AdminIcon.js +60 -0
- package/dist/icons/regular/HierarchyIcon.d.ts +3 -0
- package/dist/icons/regular/HierarchyIcon.js +55 -0
- package/dist/icons/regular/SkillsoftIcon.d.ts +3 -0
- package/dist/icons/regular/SkillsoftIcon.js +45 -0
- package/dist/icons/regular/index.d.ts +3 -0
- package/dist/icons/regular/index.js +3 -0
- package/dist/svg/regular/admin-icon.svg +13 -0
- package/dist/svg/regular/hierarchy-icon.svg +12 -0
- package/dist/svg/regular/skillsoft-icon.svg +5 -0
- package/package.json +2 -2
|
@@ -0,0 +1,60 @@
|
|
|
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 AdminIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size = 16,
|
|
9
|
+
height = size,
|
|
10
|
+
width = size,
|
|
11
|
+
...props
|
|
12
|
+
}, svgRef) => {
|
|
13
|
+
const maskId = useIconId('AdminIcon');
|
|
14
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
viewBox: "-0.75 -1.23 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
|
+
fill: "none",
|
|
33
|
+
stroke: "#fff",
|
|
34
|
+
strokeLinecap: "round",
|
|
35
|
+
strokeLinejoin: "round",
|
|
36
|
+
d: "M17.44 15.76a2.596 2.596 0 100-5.191 2.596 2.596 0 000 5.19zm-4.05 5.158a4.05 4.05 0 018.1 0h-8.1zM5.328 9.45h8.1m-8.1 3.375h6.075M5.328 16.2h6.075",
|
|
37
|
+
strokeWidth: 1.5
|
|
38
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
39
|
+
fill: "none",
|
|
40
|
+
stroke: "#fff",
|
|
41
|
+
strokeLinecap: "round",
|
|
42
|
+
strokeLinejoin: "round",
|
|
43
|
+
d: "M10.278 20.925h-7.65a1.35 1.35 0 01-1.35-1.35V5.4a1.35 1.35 0 011.35-1.35h3.375a3.375 3.375 0 016.75 0h3.375a1.35 1.35 0 011.35 1.35v2.475",
|
|
44
|
+
strokeWidth: 1.5
|
|
45
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
46
|
+
fill: "none",
|
|
47
|
+
stroke: "#fff",
|
|
48
|
+
d: "M9.378 4.05a.338.338 0 010-.675m0 .675a.338.338 0 000-.675",
|
|
49
|
+
strokeWidth: 1.5
|
|
50
|
+
})]
|
|
51
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
52
|
+
mask: `url(#${maskId})`,
|
|
53
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
54
|
+
width: `100%`,
|
|
55
|
+
height: `100%`,
|
|
56
|
+
fill: `currentColor`
|
|
57
|
+
})
|
|
58
|
+
})]
|
|
59
|
+
});
|
|
60
|
+
});
|
|
@@ -0,0 +1,55 @@
|
|
|
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 HierarchyIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size = 16,
|
|
9
|
+
height = size,
|
|
10
|
+
width = size,
|
|
11
|
+
...props
|
|
12
|
+
}, svgRef) => {
|
|
13
|
+
const maskId = useIconId('HierarchyIcon');
|
|
14
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
+
viewBox: "0 0 24 24",
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
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: "M3.749 18.75v-4.023a.477.477 0 01.477-.477h15.546a.477.477 0 01.477.477v4.023m-8.25-7.5v7.5",
|
|
33
|
+
fill: "none",
|
|
34
|
+
stroke: "#fff",
|
|
35
|
+
strokeLinecap: "round",
|
|
36
|
+
strokeLinejoin: "round",
|
|
37
|
+
strokeWidth: 1.5
|
|
38
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
39
|
+
d: "M1.499 21a2.25 2.25 0 104.5 0 2.25 2.25 0 10-4.5 0zm8.25 0a2.25 2.25 0 104.5 0 2.25 2.25 0 10-4.5 0zm8.25 0a2.25 2.25 0 104.5 0 2.25 2.25 0 10-4.5 0zm-9-17.25a3 3 0 106 0 3 3 0 10-6 0zm7.501 7.5a4.966 4.966 0 00-4.577-3.75 4.966 4.966 0 00-4.577 3.75",
|
|
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
|
+
});
|
|
@@ -0,0 +1,45 @@
|
|
|
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 SkillsoftIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size = 16,
|
|
9
|
+
height = size,
|
|
10
|
+
width = size,
|
|
11
|
+
...props
|
|
12
|
+
}, svgRef) => {
|
|
13
|
+
const maskId = useIconId('SkillsoftIcon');
|
|
14
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
+
viewBox: "0 0 26 26",
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
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__*/_jsx("mask", {
|
|
30
|
+
id: `${maskId}`,
|
|
31
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
32
|
+
fillRule: "evenodd",
|
|
33
|
+
clipRule: "evenodd",
|
|
34
|
+
d: "M1.617.15l9.078 5.346c.72.424.72 1.483 0 1.907l-9.078 5.348C.898 13.174 0 12.645 0 11.796V1.102C0 .255.898-.275 1.617.15zm14.766 0l9.078 5.346c.719.424.719 1.483 0 1.907l-9.078 5.348c-.72.423-1.619-.106-1.619-.954V1.102c0-.847.9-1.377 1.619-.953zm-7.374 13.1l9.078 5.347c.719.424.719 1.483 0 1.907L9.009 25.85c-.72.424-1.619-.106-1.619-.953V14.203c0-.847.9-1.377 1.619-.953z"
|
|
35
|
+
})
|
|
36
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
37
|
+
mask: `url(#${maskId})`,
|
|
38
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
39
|
+
width: `100%`,
|
|
40
|
+
height: `100%`,
|
|
41
|
+
fill: `currentColor`
|
|
42
|
+
})
|
|
43
|
+
})]
|
|
44
|
+
});
|
|
45
|
+
});
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './AccountingCoinsIcon';
|
|
2
2
|
export * from './AddBoldIcon';
|
|
3
3
|
export * from './AddIcon';
|
|
4
|
+
export * from './AdminIcon';
|
|
4
5
|
export * from './AiChatSparkFilledIcon';
|
|
5
6
|
export * from './AiChatSparkIcon';
|
|
6
7
|
export * from './AiEditSparkIcon';
|
|
@@ -136,6 +137,7 @@ export * from './GraphStatsAscendIcon';
|
|
|
136
137
|
export * from './GrowthIcon';
|
|
137
138
|
export * from './HalloweenBroomIcon';
|
|
138
139
|
export * from './HammerWrenchIcon';
|
|
140
|
+
export * from './HierarchyIcon';
|
|
139
141
|
export * from './HouseEntranceIcon';
|
|
140
142
|
export * from './HtmlCssIcon';
|
|
141
143
|
export * from './HyperlinkIcon';
|
|
@@ -269,6 +271,7 @@ export * from './SendIcon';
|
|
|
269
271
|
export * from './SettingsSliderVerticalIcon';
|
|
270
272
|
export * from './ShareAltIcon';
|
|
271
273
|
export * from './ShareIcon';
|
|
274
|
+
export * from './SkillsoftIcon';
|
|
272
275
|
export * from './SlackIcon';
|
|
273
276
|
export * from './SmallCheckIcon';
|
|
274
277
|
export * from './SmileyHappyIcon';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './AccountingCoinsIcon';
|
|
2
2
|
export * from './AddBoldIcon';
|
|
3
3
|
export * from './AddIcon';
|
|
4
|
+
export * from './AdminIcon';
|
|
4
5
|
export * from './AiChatSparkFilledIcon';
|
|
5
6
|
export * from './AiChatSparkIcon';
|
|
6
7
|
export * from './AiEditSparkIcon';
|
|
@@ -136,6 +137,7 @@ export * from './GraphStatsAscendIcon';
|
|
|
136
137
|
export * from './GrowthIcon';
|
|
137
138
|
export * from './HalloweenBroomIcon';
|
|
138
139
|
export * from './HammerWrenchIcon';
|
|
140
|
+
export * from './HierarchyIcon';
|
|
139
141
|
export * from './HouseEntranceIcon';
|
|
140
142
|
export * from './HtmlCssIcon';
|
|
141
143
|
export * from './HyperlinkIcon';
|
|
@@ -269,6 +271,7 @@ export * from './SendIcon';
|
|
|
269
271
|
export * from './SettingsSliderVerticalIcon';
|
|
270
272
|
export * from './ShareAltIcon';
|
|
271
273
|
export * from './ShareIcon';
|
|
274
|
+
export * from './SkillsoftIcon';
|
|
272
275
|
export * from './SlackIcon';
|
|
273
276
|
export * from './SmallCheckIcon';
|
|
274
277
|
export * from './SmileyHappyIcon';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-0.75 -1.23 24 24" id="Technology-Privacy-Consent-Profile-Information--Streamline-Ultimate" height="24" width="24">
|
|
2
|
+
<desc>
|
|
3
|
+
Technology Privacy Consent Profile Information Streamline Icon: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M17.440559999999998 15.759899999999998c1.43352 0 2.5955999999999997 -1.1620799999999998 2.5955999999999997 -2.5955999999999997 0 -1.4334299999999998 -1.1620799999999998 -2.5955999999999997 -2.5955999999999997 -2.5955999999999997s-2.5955999999999997 1.1621699999999997 -2.5955999999999997 2.5955999999999997c0 1.43352 1.1620799999999998 2.5955999999999997 2.5955999999999997 2.5955999999999997Z" stroke-width="1.5"></path>
|
|
6
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M13.390559999999997 20.91771c0 -1.07406 0.42668999999999996 -2.1042 1.1862 -2.8637099999999998 0.7595999999999999 -0.7595999999999999 1.7896499999999997 -1.1862899999999998 2.8637999999999995 -1.1862899999999998s2.1042899999999998 0.42668999999999996 2.8637999999999995 1.1862899999999998c0.7595099999999999 0.7595099999999999 1.1862 1.7896499999999997 1.1862 2.8637099999999998h-8.1Z" stroke-width="1.5"></path>
|
|
7
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M5.3283689999999995 9.45h8.099991" stroke-width="1.5"></path>
|
|
8
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M5.3283689999999995 12.825h6.074991" stroke-width="1.5"></path>
|
|
9
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M5.3283689999999995 16.2h6.074991" stroke-width="1.5"></path>
|
|
10
|
+
<path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" d="M10.27836 20.924999999999997H2.6283779999999997c-0.358047 0 -0.7014239999999999 -0.1422 -0.9545939999999998 -0.39537 -0.253179 -0.25316999999999995 -0.395406 -0.59661 -0.395406 -0.9546299999999999V5.3999999999999995c0 -0.35803799999999997 0.142227 -0.7014239999999999 0.395406 -0.9545939999999998 0.25316999999999995 -0.25316999999999995 0.5965469999999999 -0.395406 0.9545939999999998 -0.395406h3.3749999999999996c0 -0.8951039999999999 0.355581 -1.7535509999999999 0.9885149999999998 -2.386485S8.483274 0.6749999999999999 9.378359999999999 0.6749999999999999c0.8951399999999999 0 1.7535599999999998 0.355581 2.3865299999999996 0.9885149999999998 0.63288 0.6329339999999999 0.98847 1.4913809999999998 0.98847 2.386485h3.3749999999999996c0.35801999999999995 0 0.7014599999999999 0.142236 0.9546299999999999 0.395406s0.39537 0.596556 0.39537 0.9545939999999998v2.4749999999999996" stroke-width="1.5"></path>
|
|
11
|
+
<path fill="none" stroke="#000000" d="M9.378359999999999 4.05c-0.18639 0 -0.33749999999999997 -0.15110099999999999 -0.33749999999999997 -0.33749999999999997s0.15110999999999997 -0.33749999999999997 0.33749999999999997 -0.33749999999999997" stroke-width="1.5"></path>
|
|
12
|
+
<path fill="none" stroke="#000000" d="M9.378359999999999 4.05c0.18639 0 0.33749999999999997 -0.15110099999999999 0.33749999999999997 -0.33749999999999997s-0.15110999999999997 -0.33749999999999997 -0.33749999999999997 -0.33749999999999997" stroke-width="1.5"></path>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" id="Human-Resources-Hierarchy--Streamline-Ultimate" height="24" width="24">
|
|
2
|
+
<desc>
|
|
3
|
+
Human Resources Hierarchy Streamline Icon: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path d="M3.749 18.75v-4.023a0.477 0.477 0 0 1 0.477 -0.477h15.546a0.477 0.477 0 0 1 0.477 0.477v4.023" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
6
|
+
<path d="m11.999 11.25 0 7.5" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
7
|
+
<path d="M1.499 21a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 1 0 -4.5 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
8
|
+
<path d="M9.749 21a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 1 0 -4.5 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
9
|
+
<path d="M17.999 21a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 1 0 -4.5 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
10
|
+
<path d="M8.999 3.75a3 3 0 1 0 6 0 3 3 0 1 0 -6 0Z" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
11
|
+
<path d="M16.5 11.25a4.966 4.966 0 0 0 -4.577 -3.75 4.966 4.966 0 0 0 -4.577 3.75" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="26" height="26" viewBox="0 0 26 26" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.61749 0.149073L10.6953 5.49644C11.4156 5.92017 11.4156 6.97937 10.6953 7.4031L1.61749 12.7505C0.898336 13.1741 0 12.6445 0 11.7971V1.1024C0 0.255067 0.898336 -0.274531 1.61749 0.149073Z" />
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.3828 0.149073L25.4606 5.49644C26.1798 5.92017 26.1798 6.97937 25.4606 7.4031L16.3828 12.7505C15.6637 13.1741 14.7641 12.6445 14.7641 11.7971V1.1024C14.7641 0.255067 15.6637 -0.274531 16.3828 0.149073Z" />
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.0089 13.2499L18.0867 18.5972C18.8058 19.0208 18.8058 20.0801 18.0867 20.5037L9.0089 25.8511C8.28974 26.2747 7.3902 25.7451 7.3902 24.8978V14.2031C7.3902 13.3557 8.28974 12.8261 9.0089 13.2499Z" />
|
|
5
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.53.0",
|
|
4
|
+
"version": "9.53.1-alpha.4615f3.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@codecademy/gamut-styles": "17.11.0",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "ecdbb1e8e5dfbdc49939350ac4b9acd28333725a"
|
|
33
33
|
}
|