@codecademy/gamut-icons 9.52.2-alpha.ce5894.0 → 9.53.0-alpha.b73f8f.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.
|
@@ -0,0 +1,57 @@
|
|
|
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 CoachingIcon = /*#__PURE__*/React.forwardRef(({
|
|
6
|
+
title,
|
|
7
|
+
titleId,
|
|
8
|
+
size = 16,
|
|
9
|
+
height = size,
|
|
10
|
+
width = size,
|
|
11
|
+
...props
|
|
12
|
+
}, svgRef) => {
|
|
13
|
+
const maskId = useIconId('CoachingIcon');
|
|
14
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
15
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
16
|
+
fill: "#fff",
|
|
17
|
+
viewBox: "0 0 24 24",
|
|
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
|
+
stroke: "#fff",
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round",
|
|
35
|
+
d: "M16.313 11.26l-5.592 5.592a.82.82 0 01-1.158 0l-1.875-1.876",
|
|
36
|
+
strokeWidth: 1.5
|
|
37
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
38
|
+
stroke: "#fff",
|
|
39
|
+
strokeLinecap: "round",
|
|
40
|
+
strokeLinejoin: "round",
|
|
41
|
+
d: "M15.75 4.5h3.75A1.5 1.5 0 0121 6v15.75a1.5 1.5 0 01-1.5 1.5h-15a1.5 1.5 0 01-1.5-1.5V6a1.5 1.5 0 011.5-1.5h3.75a3.75 3.75 0 017.5 0v0z",
|
|
42
|
+
strokeWidth: 1.5
|
|
43
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
44
|
+
stroke: "#fff",
|
|
45
|
+
d: "M12 4.51a.375.375 0 010-.75m0 .75a.375.375 0 000-.75",
|
|
46
|
+
strokeWidth: 1.5
|
|
47
|
+
})]
|
|
48
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
49
|
+
mask: `url(#${maskId})`,
|
|
50
|
+
children: /*#__PURE__*/_jsx("rect", {
|
|
51
|
+
width: `100%`,
|
|
52
|
+
height: `100%`,
|
|
53
|
+
fill: `currentColor`
|
|
54
|
+
})
|
|
55
|
+
})]
|
|
56
|
+
});
|
|
57
|
+
});
|
|
@@ -61,6 +61,7 @@ export * from './CloudCheckIcon';
|
|
|
61
61
|
export * from './CloudComputingIcon';
|
|
62
62
|
export * from './CloudIcon';
|
|
63
63
|
export * from './ClubsSealIcon';
|
|
64
|
+
export * from './CoachingIcon';
|
|
64
65
|
export * from './CommentsIcon';
|
|
65
66
|
export * from './CommonFileSettingsIcon';
|
|
66
67
|
export * from './CommonFileTextHeartIcon';
|
|
@@ -61,6 +61,7 @@ export * from './CloudCheckIcon';
|
|
|
61
61
|
export * from './CloudComputingIcon';
|
|
62
62
|
export * from './CloudIcon';
|
|
63
63
|
export * from './ClubsSealIcon';
|
|
64
|
+
export * from './CoachingIcon';
|
|
64
65
|
export * from './CommentsIcon';
|
|
65
66
|
export * from './CommonFileSettingsIcon';
|
|
66
67
|
export * from './CommonFileTextHeartIcon';
|
package/dist/props.d.ts
CHANGED
|
@@ -191,32 +191,6 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
191
191
|
readonly property: "paddingLeft";
|
|
192
192
|
readonly scale: "spacing";
|
|
193
193
|
};
|
|
194
|
-
readonly pbl: {
|
|
195
|
-
readonly property: "padding";
|
|
196
|
-
readonly properties: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
197
|
-
readonly scale: "spacing";
|
|
198
|
-
};
|
|
199
|
-
readonly pbls: {
|
|
200
|
-
readonly property: "paddingBlockStart";
|
|
201
|
-
readonly scale: "spacing";
|
|
202
|
-
};
|
|
203
|
-
readonly pble: {
|
|
204
|
-
readonly property: "paddingBlockEnd";
|
|
205
|
-
readonly scale: "spacing";
|
|
206
|
-
};
|
|
207
|
-
readonly pi: {
|
|
208
|
-
readonly property: "padding";
|
|
209
|
-
readonly properties: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
210
|
-
readonly scale: "spacing";
|
|
211
|
-
};
|
|
212
|
-
readonly pis: {
|
|
213
|
-
readonly property: "paddingInlineStart";
|
|
214
|
-
readonly scale: "spacing";
|
|
215
|
-
};
|
|
216
|
-
readonly pie: {
|
|
217
|
-
readonly property: "paddingInlineEnd";
|
|
218
|
-
readonly scale: "spacing";
|
|
219
|
-
};
|
|
220
194
|
readonly m: {
|
|
221
195
|
readonly property: "margin";
|
|
222
196
|
readonly scale: "spacing";
|
|
@@ -247,32 +221,6 @@ export declare const iconProps: import("@codecademy/variance/dist/types/config")
|
|
|
247
221
|
readonly property: "marginLeft";
|
|
248
222
|
readonly scale: "spacing";
|
|
249
223
|
};
|
|
250
|
-
readonly mbl: {
|
|
251
|
-
readonly property: "margin";
|
|
252
|
-
readonly properties: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
253
|
-
readonly scale: "spacing";
|
|
254
|
-
};
|
|
255
|
-
readonly mbls: {
|
|
256
|
-
readonly property: "marginBlockStart";
|
|
257
|
-
readonly scale: "spacing";
|
|
258
|
-
};
|
|
259
|
-
readonly mble: {
|
|
260
|
-
readonly property: "marginBlockEnd";
|
|
261
|
-
readonly scale: "spacing";
|
|
262
|
-
};
|
|
263
|
-
readonly mi: {
|
|
264
|
-
readonly property: "margin";
|
|
265
|
-
readonly properties: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
266
|
-
readonly scale: "spacing";
|
|
267
|
-
};
|
|
268
|
-
readonly mis: {
|
|
269
|
-
readonly property: "marginInlineStart";
|
|
270
|
-
readonly scale: "spacing";
|
|
271
|
-
};
|
|
272
|
-
readonly mie: {
|
|
273
|
-
readonly property: "marginInlineEnd";
|
|
274
|
-
readonly scale: "spacing";
|
|
275
|
-
};
|
|
276
224
|
}>>, import("@codecademy/variance/dist/types/config").Parser<import("@codecademy/variance/dist/types/config").TransformerMap<{
|
|
277
225
|
readonly position: {
|
|
278
226
|
readonly property: "position";
|
|
@@ -584,32 +532,6 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
584
532
|
readonly property: "paddingLeft";
|
|
585
533
|
readonly scale: "spacing";
|
|
586
534
|
}>;
|
|
587
|
-
pbl?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
588
|
-
readonly property: "padding";
|
|
589
|
-
readonly properties: readonly ["paddingBlockStart", "paddingBlockEnd"];
|
|
590
|
-
readonly scale: "spacing";
|
|
591
|
-
}>;
|
|
592
|
-
pbls?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
593
|
-
readonly property: "paddingBlockStart";
|
|
594
|
-
readonly scale: "spacing";
|
|
595
|
-
}>;
|
|
596
|
-
pble?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
597
|
-
readonly property: "paddingBlockEnd";
|
|
598
|
-
readonly scale: "spacing";
|
|
599
|
-
}>;
|
|
600
|
-
pi?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
601
|
-
readonly property: "padding";
|
|
602
|
-
readonly properties: readonly ["paddingInlineStart", "paddingInlineEnd"];
|
|
603
|
-
readonly scale: "spacing";
|
|
604
|
-
}>;
|
|
605
|
-
pis?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
606
|
-
readonly property: "paddingInlineStart";
|
|
607
|
-
readonly scale: "spacing";
|
|
608
|
-
}>;
|
|
609
|
-
pie?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
610
|
-
readonly property: "paddingInlineEnd";
|
|
611
|
-
readonly scale: "spacing";
|
|
612
|
-
}>;
|
|
613
535
|
m?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
614
536
|
readonly property: "margin";
|
|
615
537
|
readonly scale: "spacing";
|
|
@@ -640,32 +562,6 @@ export declare const Svg: import("@emotion/styled").StyledComponent<{
|
|
|
640
562
|
readonly property: "marginLeft";
|
|
641
563
|
readonly scale: "spacing";
|
|
642
564
|
}>;
|
|
643
|
-
mbl?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
644
|
-
readonly property: "margin";
|
|
645
|
-
readonly properties: readonly ["marginBlockStart", "marginBlockEnd"];
|
|
646
|
-
readonly scale: "spacing";
|
|
647
|
-
}>;
|
|
648
|
-
mbls?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
649
|
-
readonly property: "marginBlockStart";
|
|
650
|
-
readonly scale: "spacing";
|
|
651
|
-
}>;
|
|
652
|
-
mble?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
653
|
-
readonly property: "marginBlockEnd";
|
|
654
|
-
readonly scale: "spacing";
|
|
655
|
-
}>;
|
|
656
|
-
mi?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
657
|
-
readonly property: "margin";
|
|
658
|
-
readonly properties: readonly ["marginInlineStart", "marginInlineEnd"];
|
|
659
|
-
readonly scale: "spacing";
|
|
660
|
-
}>;
|
|
661
|
-
mis?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
662
|
-
readonly property: "marginInlineStart";
|
|
663
|
-
readonly scale: "spacing";
|
|
664
|
-
}>;
|
|
665
|
-
mie?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
666
|
-
readonly property: "marginInlineEnd";
|
|
667
|
-
readonly scale: "spacing";
|
|
668
|
-
}>;
|
|
669
565
|
position?: import("@codecademy/variance/dist/types/config").Scale<{
|
|
670
566
|
readonly property: "position";
|
|
671
567
|
}>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="Task-List-Check--Streamline-Ultimate" height="24" width="24">
|
|
2
|
+
<desc>
|
|
3
|
+
Task List Check Streamline Icon: https://streamlinehq.com
|
|
4
|
+
</desc>
|
|
5
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="m16.313 11.26 -5.592 5.592c-0.076 0.0761 -0.1662 0.1365 -0.2656 0.1778 -0.0993 0.0412 -0.2059 0.0624 -0.3134 0.0624 -0.1076 0 -0.21408 -0.0212 -0.31343 -0.0624 -0.09935 -0.0413 -0.1896 -0.1017 -0.26558 -0.1778l-1.875 -1.876" stroke-width="1.5"></path>
|
|
6
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M15.75 4.5h3.75c0.3978 0 0.7794 0.15804 1.0607 0.43934S21 5.60218 21 6v15.75c0 0.3978 -0.158 0.7794 -0.4393 1.0607s-0.6629 0.4393 -1.0607 0.4393h-15c-0.39782 0 -0.77936 -0.158 -1.06066 -0.4393C3.15804 22.5294 3 22.1478 3 21.75V6c0 -0.39782 0.15804 -0.77936 0.43934 -1.06066C3.72064 4.65804 4.10218 4.5 4.5 4.5h3.75c0 -0.99456 0.39509 -1.94839 1.09835 -2.65165C10.0516 1.14509 11.0054 0.75 12 0.75c0.9946 0 1.9484 0.39509 2.6517 1.09835C15.3549 2.55161 15.75 3.50544 15.75 4.5v0Z" stroke-width="1.5"></path>
|
|
7
|
+
<path stroke="currentColor" d="M11.9995 4.51056c-0.2071 0 -0.375 -0.16789 -0.375 -0.375s0.1679 -0.375 0.375 -0.375" stroke-width="1.5"></path>
|
|
8
|
+
<path stroke="currentColor" d="M11.9995 4.51056c0.2071 0 0.375 -0.16789 0.375 -0.375s-0.1679 -0.375 -0.375 -0.375" stroke-width="1.5"></path>
|
|
9
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-icons",
|
|
3
3
|
"description": "Icon library for codecademy.com",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.53.0-alpha.b73f8f.0",
|
|
5
5
|
"author": "Codecademy <dev@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@codecademy/gamut-styles": "17.11.
|
|
7
|
+
"@codecademy/gamut-styles": "17.11.0",
|
|
8
8
|
"@codecademy/variance": "0.25.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"types": "dist/index.d.ts",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "cd9796bcf20d5945b3ec8b952e3539358f10c30d"
|
|
33
33
|
}
|