@codecademy/gamut-illustrations 0.32.3-alpha.5ea335.0 → 0.32.3-alpha.718461.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.
Files changed (73) hide show
  1. package/dist/Announcement.d.ts +1 -1
  2. package/dist/Announcement.js +144 -133
  3. package/dist/Bee.d.ts +1 -1
  4. package/dist/Bee.js +121 -109
  5. package/dist/Bell.d.ts +1 -1
  6. package/dist/Bell.js +33 -28
  7. package/dist/BinaryBlocks.d.ts +1 -1
  8. package/dist/BinaryBlocks.js +123 -113
  9. package/dist/BinaryStairs.d.ts +1 -1
  10. package/dist/BinaryStairs.js +69 -61
  11. package/dist/Blocks.d.ts +1 -1
  12. package/dist/Blocks.js +235 -230
  13. package/dist/Blueprint.d.ts +1 -1
  14. package/dist/Blueprint.js +82 -77
  15. package/dist/Browser.d.ts +1 -1
  16. package/dist/Browser.js +66 -58
  17. package/dist/BrowserLock.d.ts +1 -1
  18. package/dist/BrowserLock.js +33 -28
  19. package/dist/BrowserPuzzle.d.ts +1 -1
  20. package/dist/BrowserPuzzle.js +58 -51
  21. package/dist/ChatBox.d.ts +1 -1
  22. package/dist/ChatBox.js +33 -28
  23. package/dist/CodeCelebration.d.ts +1 -1
  24. package/dist/CodeCelebration.js +145 -137
  25. package/dist/Coffee.d.ts +1 -1
  26. package/dist/Coffee.js +50 -41
  27. package/dist/Confetti.d.ts +1 -1
  28. package/dist/Confetti.js +84 -76
  29. package/dist/EmailAt.d.ts +1 -1
  30. package/dist/EmailAt.js +27 -22
  31. package/dist/Envelope.d.ts +1 -1
  32. package/dist/Envelope.js +27 -22
  33. package/dist/Heart.d.ts +1 -1
  34. package/dist/Heart.js +21 -16
  35. package/dist/Hills.d.ts +1 -1
  36. package/dist/Hills.js +42 -35
  37. package/dist/HomeOffice.d.ts +1 -1
  38. package/dist/HomeOffice.js +107 -96
  39. package/dist/Keyhole.d.ts +1 -1
  40. package/dist/Keyhole.js +21 -16
  41. package/dist/MagnifyingGlass.d.ts +1 -1
  42. package/dist/MagnifyingGlass.js +56 -49
  43. package/dist/Maze.d.ts +1 -1
  44. package/dist/Maze.js +58 -55
  45. package/dist/Megaphone.d.ts +1 -1
  46. package/dist/Megaphone.js +39 -34
  47. package/dist/MobilePhone.d.ts +1 -1
  48. package/dist/MobilePhone.js +84 -74
  49. package/dist/New.d.ts +1 -1
  50. package/dist/New.js +51 -46
  51. package/dist/NumberBlocks.d.ts +1 -1
  52. package/dist/NumberBlocks.js +270 -249
  53. package/dist/Onboarding.d.ts +1 -1
  54. package/dist/Onboarding.js +312 -252
  55. package/dist/Plant.d.ts +1 -1
  56. package/dist/Plant.js +59 -52
  57. package/dist/PortfolioProject.d.ts +1 -1
  58. package/dist/PortfolioProject.js +26 -23
  59. package/dist/PracticeProject.d.ts +1 -1
  60. package/dist/PracticeProject.js +34 -31
  61. package/dist/Puzzle.d.ts +1 -1
  62. package/dist/Puzzle.js +147 -142
  63. package/dist/Python.d.ts +1 -1
  64. package/dist/Python.js +13 -8
  65. package/dist/Sun.d.ts +1 -1
  66. package/dist/Sun.js +108 -100
  67. package/dist/Syllabus.d.ts +1 -1
  68. package/dist/Syllabus.js +340 -330
  69. package/dist/Target.d.ts +1 -1
  70. package/dist/Target.js +34 -29
  71. package/dist/TinyBlocks.d.ts +1 -1
  72. package/dist/TinyBlocks.js +10 -8
  73. package/package.json +5 -5
package/dist/Megaphone.js CHANGED
@@ -1,46 +1,51 @@
1
- import React from 'react';
1
+ import * as React from 'react';
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ import { jsxs as _jsxs } from "react/jsx-runtime";
2
4
  export var Megaphone = function Megaphone(_ref) {
3
5
  var ariaHidden = _ref['aria-hidden'],
4
6
  className = _ref.className,
5
7
  height = _ref.height,
6
8
  width = _ref.width;
7
- return /*#__PURE__*/React.createElement("svg", {
9
+ return /*#__PURE__*/_jsxs("svg", {
8
10
  "aria-hidden": ariaHidden,
9
11
  className: className,
10
12
  height: height,
11
13
  width: width,
12
14
  viewBox: "0 0 48 48",
13
15
  fill: "none",
14
- xmlns: "http://www.w3.org/2000/svg"
15
- }, /*#__PURE__*/React.createElement("title", null, "Megaphone Icon"), /*#__PURE__*/React.createElement("circle", {
16
- cx: "24",
17
- cy: "24",
18
- r: "23.5",
19
- fill: "white",
20
- stroke: "#10162F"
21
- }), /*#__PURE__*/React.createElement("path", {
22
- d: "M19.625 26.7083H17.75C16.9212 26.7083 16.1263 26.3791 15.5403 25.793C14.9542 25.207 14.625 24.4121 14.625 23.5833C14.625 22.7545 14.9542 21.9597 15.5403 21.3736C16.1263 20.7876 16.9212 20.4583 17.75 20.4583H19.625V26.7083Z",
23
- stroke: "#10162F",
24
- strokeWidth: "1.25",
25
- strokeLinecap: "round",
26
- strokeLinejoin: "round"
27
- }), /*#__PURE__*/React.createElement("path", {
28
- d: "M19.625 26.7083C23.2926 26.7086 26.8781 27.7942 29.93 29.8283L30.875 30.4583V16.7083L29.93 17.3383C26.8781 19.3724 23.2926 20.458 19.625 20.4583V26.7083Z",
29
- stroke: "#10162F",
30
- strokeWidth: "1.25",
31
- strokeLinecap: "round",
32
- strokeLinejoin: "round"
33
- }), /*#__PURE__*/React.createElement("path", {
34
- d: "M33.375 22.3333V24.8333",
35
- stroke: "#10162F",
36
- strokeWidth: "1.25",
37
- strokeLinecap: "round",
38
- strokeLinejoin: "round"
39
- }), /*#__PURE__*/React.createElement("path", {
40
- d: "M19.625 26.7083C19.6245 27.5266 19.7904 28.3364 20.1128 29.0886C20.4351 29.8407 20.9071 30.5194 21.5 31.0833",
41
- stroke: "#10162F",
42
- strokeWidth: "1.25",
43
- strokeLinecap: "round",
44
- strokeLinejoin: "round"
45
- }));
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ children: [/*#__PURE__*/_jsx("title", {
18
+ children: "Megaphone Icon"
19
+ }), /*#__PURE__*/_jsx("circle", {
20
+ cx: "24",
21
+ cy: "24",
22
+ r: "23.5",
23
+ fill: "white",
24
+ stroke: "#10162F"
25
+ }), /*#__PURE__*/_jsx("path", {
26
+ d: "M19.625 26.7083H17.75C16.9212 26.7083 16.1263 26.3791 15.5403 25.793C14.9542 25.207 14.625 24.4121 14.625 23.5833C14.625 22.7545 14.9542 21.9597 15.5403 21.3736C16.1263 20.7876 16.9212 20.4583 17.75 20.4583H19.625V26.7083Z",
27
+ stroke: "#10162F",
28
+ strokeWidth: "1.25",
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ }), /*#__PURE__*/_jsx("path", {
32
+ d: "M19.625 26.7083C23.2926 26.7086 26.8781 27.7942 29.93 29.8283L30.875 30.4583V16.7083L29.93 17.3383C26.8781 19.3724 23.2926 20.458 19.625 20.4583V26.7083Z",
33
+ stroke: "#10162F",
34
+ strokeWidth: "1.25",
35
+ strokeLinecap: "round",
36
+ strokeLinejoin: "round"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M33.375 22.3333V24.8333",
39
+ stroke: "#10162F",
40
+ strokeWidth: "1.25",
41
+ strokeLinecap: "round",
42
+ strokeLinejoin: "round"
43
+ }), /*#__PURE__*/_jsx("path", {
44
+ d: "M19.625 26.7083C19.6245 27.5266 19.7904 28.3364 20.1128 29.0886C20.4351 29.8407 20.9071 30.5194 21.5 31.0833",
45
+ stroke: "#10162F",
46
+ strokeWidth: "1.25",
47
+ strokeLinecap: "round",
48
+ strokeLinejoin: "round"
49
+ })]
50
+ });
46
51
  };
@@ -1,3 +1,3 @@
1
- import React from 'react';
1
+ import * as React from 'react';
2
2
  import { IllustrationProps } from './types';
3
3
  export declare const MobilePhone: React.FC<IllustrationProps>;
@@ -1,86 +1,96 @@
1
- import React from 'react';
1
+ import * as React from 'react';
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ import { jsxs as _jsxs } from "react/jsx-runtime";
2
4
  export var MobilePhone = function MobilePhone(_ref) {
3
5
  var ariaHidden = _ref['aria-hidden'],
4
6
  className = _ref.className,
5
7
  height = _ref.height,
6
8
  width = _ref.width;
7
- return /*#__PURE__*/React.createElement("svg", {
9
+ return /*#__PURE__*/_jsxs("svg", {
8
10
  width: width,
9
11
  height: height,
10
12
  fill: "none",
11
13
  viewBox: "0 0 108 203",
12
14
  xmlns: "http://www.w3.org/2000/svg",
13
15
  "aria-hidden": ariaHidden,
14
- "class-name": className
15
- }, /*#__PURE__*/React.createElement("g", {
16
- clipPath: "url(#a)"
17
- }, /*#__PURE__*/React.createElement("rect", {
18
- x: "1",
19
- y: "1",
20
- width: "105.101",
21
- height: "200.031",
22
- rx: "15",
23
- fill: "#fff",
24
- stroke: "#10162F",
25
- strokeWidth: "2"
26
- }), /*#__PURE__*/React.createElement("path", {
27
- fill: "#fff",
28
- d: "M9.519 24.123h88.062v153.783H9.519z"
29
- }), /*#__PURE__*/React.createElement("path", {
30
- fill: "url(#b)",
31
- d: "M9.519 24.123h88.062v153.783H9.519z"
32
- }), /*#__PURE__*/React.createElement("path", {
33
- stroke: "#10162F",
34
- strokeWidth: "2",
35
- d: "M9.519 24.123h88.062v153.783H9.519z"
36
- }), /*#__PURE__*/React.createElement("circle", {
37
- cx: "52.942",
38
- cy: "13.996",
39
- r: "3.043",
40
- fill: "#10162F"
41
- }), /*#__PURE__*/React.createElement("path", {
42
- stroke: "#10162F",
43
- strokeWidth: "2",
44
- d: "M38.946 188.859h29.209"
45
- }), /*#__PURE__*/React.createElement("mask", {
46
- id: "c",
47
- "mask-type": "alpha",
48
- maskUnits: "userSpaceOnUse",
49
- x: "10",
50
- y: "23",
51
- width: "87",
52
- height: "154"
53
- }, /*#__PURE__*/React.createElement("path", {
54
- fill: "#10162F",
55
- stroke: "#10162F",
56
- strokeWidth: "2",
57
- d: "M11.954 24.123h83.194v151.349H11.954z"
58
- })), /*#__PURE__*/React.createElement("g", {
59
- mask: "url(#c)"
60
- }, /*#__PURE__*/React.createElement("path", {
61
- d: "m121.422 44.47-18.731 152.824-123.51-93.89L121.422 44.47Z",
62
- fill: "#F5FFE3"
63
- })), /*#__PURE__*/React.createElement("path", {
64
- fill: "#3A10E5",
65
- stroke: "#10162F",
66
- d: "M18.756 34.576h25.775v8.736H18.756z"
67
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
68
- id: "a"
69
- }, /*#__PURE__*/React.createElement("path", {
70
- fill: "#fff",
71
- d: "M0 0h107.101v202.031H0z"
72
- })), /*#__PURE__*/React.createElement("pattern", {
73
- id: "b",
74
- patternContentUnits: "objectBoundingBox",
75
- width: ".711",
76
- height: ".411"
77
- }, /*#__PURE__*/React.createElement("use", {
78
- xlinkHref: "#d",
79
- transform: "scale(.0111 .00642)"
80
- })), /*#__PURE__*/React.createElement("image", {
81
- id: "d",
82
- width: "64",
83
- height: "64",
84
- xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADbSURBVHgB7dhLDoJAEEXRlhUwMu5C9783wXQqZQyJH6SbUPXumRCY3pcaUMbzdS4v1N7hWIIqysOwBFWUh2EJqigPwxJUUR6GJaiiPAxLUEV5GJagivIwLEEV5WEElzAVFMrLGi+3U30Ozw9q5af5XhR5eTdQXsSyvMIN+FxeZQnvyruMN4Dy1bfyGW/AuvJZl/BreZfhBlC+Wls+ww3YVj7LEv4t7yLeAMpXW8tHvAFty0ddQqvyLsINoHzVunyEG9C3fJQl9CrvjngDKF/1Ln/EG7BvedW/w0sP1usKCOMHPlcAAAAASUVORK5CYII="
85
- })));
16
+ "class-name": className,
17
+ children: [/*#__PURE__*/_jsxs("g", {
18
+ clipPath: "url(#a)",
19
+ children: [/*#__PURE__*/_jsx("rect", {
20
+ x: "1",
21
+ y: "1",
22
+ width: "105.101",
23
+ height: "200.031",
24
+ rx: "15",
25
+ fill: "#fff",
26
+ stroke: "#10162F",
27
+ strokeWidth: "2"
28
+ }), /*#__PURE__*/_jsx("path", {
29
+ fill: "#fff",
30
+ d: "M9.519 24.123h88.062v153.783H9.519z"
31
+ }), /*#__PURE__*/_jsx("path", {
32
+ fill: "url(#b)",
33
+ d: "M9.519 24.123h88.062v153.783H9.519z"
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ stroke: "#10162F",
36
+ strokeWidth: "2",
37
+ d: "M9.519 24.123h88.062v153.783H9.519z"
38
+ }), /*#__PURE__*/_jsx("circle", {
39
+ cx: "52.942",
40
+ cy: "13.996",
41
+ r: "3.043",
42
+ fill: "#10162F"
43
+ }), /*#__PURE__*/_jsx("path", {
44
+ stroke: "#10162F",
45
+ strokeWidth: "2",
46
+ d: "M38.946 188.859h29.209"
47
+ }), /*#__PURE__*/_jsx("mask", {
48
+ id: "c",
49
+ "mask-type": "alpha",
50
+ maskUnits: "userSpaceOnUse",
51
+ x: "10",
52
+ y: "23",
53
+ width: "87",
54
+ height: "154",
55
+ children: /*#__PURE__*/_jsx("path", {
56
+ fill: "#10162F",
57
+ stroke: "#10162F",
58
+ strokeWidth: "2",
59
+ d: "M11.954 24.123h83.194v151.349H11.954z"
60
+ })
61
+ }), /*#__PURE__*/_jsx("g", {
62
+ mask: "url(#c)",
63
+ children: /*#__PURE__*/_jsx("path", {
64
+ d: "m121.422 44.47-18.731 152.824-123.51-93.89L121.422 44.47Z",
65
+ fill: "#F5FFE3"
66
+ })
67
+ }), /*#__PURE__*/_jsx("path", {
68
+ fill: "#3A10E5",
69
+ stroke: "#10162F",
70
+ d: "M18.756 34.576h25.775v8.736H18.756z"
71
+ })]
72
+ }), /*#__PURE__*/_jsxs("defs", {
73
+ children: [/*#__PURE__*/_jsx("clipPath", {
74
+ id: "a",
75
+ children: /*#__PURE__*/_jsx("path", {
76
+ fill: "#fff",
77
+ d: "M0 0h107.101v202.031H0z"
78
+ })
79
+ }), /*#__PURE__*/_jsx("pattern", {
80
+ id: "b",
81
+ patternContentUnits: "objectBoundingBox",
82
+ width: ".711",
83
+ height: ".411",
84
+ children: /*#__PURE__*/_jsx("use", {
85
+ xlinkHref: "#d",
86
+ transform: "scale(.0111 .00642)"
87
+ })
88
+ }), /*#__PURE__*/_jsx("image", {
89
+ id: "d",
90
+ width: "64",
91
+ height: "64",
92
+ xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADbSURBVHgB7dhLDoJAEEXRlhUwMu5C9783wXQqZQyJH6SbUPXumRCY3pcaUMbzdS4v1N7hWIIqysOwBFWUh2EJqigPwxJUUR6GJaiiPAxLUEV5GJagivIwLEEV5WEElzAVFMrLGi+3U30Ozw9q5af5XhR5eTdQXsSyvMIN+FxeZQnvyruMN4Dy1bfyGW/AuvJZl/BreZfhBlC+Wls+ww3YVj7LEv4t7yLeAMpXW8tHvAFty0ddQqvyLsINoHzVunyEG9C3fJQl9CrvjngDKF/1Ln/EG7BvedW/w0sP1usKCOMHPlcAAAAASUVORK5CYII="
93
+ })]
94
+ })]
95
+ });
86
96
  };
package/dist/New.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import React from 'react';
1
+ import * as React from 'react';
2
2
  import { IllustrationProps } from './types';
3
3
  export declare const New: React.FC<IllustrationProps>;
package/dist/New.js CHANGED
@@ -1,58 +1,63 @@
1
- import React from 'react';
1
+ import * as React from 'react';
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ import { jsxs as _jsxs } from "react/jsx-runtime";
2
4
  export var New = function New(_ref) {
3
5
  var ariaHidden = _ref['aria-hidden'],
4
6
  className = _ref.className,
5
7
  height = _ref.height,
6
8
  width = _ref.width;
7
- return /*#__PURE__*/React.createElement("svg", {
9
+ return /*#__PURE__*/_jsxs("svg", {
8
10
  "aria-hidden": ariaHidden,
9
11
  className: className,
10
12
  height: height,
11
13
  width: width,
12
14
  viewBox: "0 0 48 48",
13
15
  fill: "none",
14
- xmlns: "http://www.w3.org/2000/svg"
15
- }, /*#__PURE__*/React.createElement("title", null, "New Icon"), /*#__PURE__*/React.createElement("circle", {
16
- cx: "24",
17
- cy: "24",
18
- r: "23.5",
19
- fill: "white",
20
- stroke: "#10162F"
21
- }), /*#__PURE__*/React.createElement("path", {
22
- d: "M16.875 27.5V21.25L19.375 27.5V21.25",
23
- stroke: "#10162F",
24
- strokeWidth: "1.25",
25
- strokeLinecap: "round",
26
- strokeLinejoin: "round"
27
- }), /*#__PURE__*/React.createElement("path", {
28
- d: "M24.375 27.5H23.125C22.7935 27.5 22.4755 27.3683 22.2411 27.1339C22.0067 26.8995 21.875 26.5815 21.875 26.25V22.5C21.875 22.1685 22.0067 21.8505 22.2411 21.6161C22.4755 21.3817 22.7935 21.25 23.125 21.25H24.375",
29
- stroke: "#10162F",
30
- strokeWidth: "1.25",
31
- strokeLinecap: "round",
32
- strokeLinejoin: "round"
33
- }), /*#__PURE__*/React.createElement("path", {
34
- d: "M21.875 25H24.375",
35
- stroke: "#10162F",
36
- strokeWidth: "1.25",
37
- strokeLinecap: "round",
38
- strokeLinejoin: "round"
39
- }), /*#__PURE__*/React.createElement("path", {
40
- d: "M26.875 21.25V22.9308C26.8748 23.8849 27.0569 24.8302 27.4117 25.7158L28.125 27.5L29.375 23.125L30.625 27.5L31.3383 25.7158C31.6927 24.8301 31.8749 23.8849 31.875 22.9308V21.25",
41
- stroke: "#10162F",
42
- strokeWidth: "1.25",
43
- strokeLinecap: "round",
44
- strokeLinejoin: "round"
45
- }), /*#__PURE__*/React.createElement("path", {
46
- d: "M33.75 30V32.5C33.75 32.8315 33.6183 33.1495 33.3839 33.3839C33.1495 33.6183 32.8315 33.75 32.5 33.75H16.25C15.9185 33.75 15.6005 33.6183 15.3661 33.3839C15.1317 33.1495 15 32.8315 15 32.5V30",
47
- stroke: "#10162F",
48
- strokeWidth: "1.25",
49
- strokeLinecap: "round",
50
- strokeLinejoin: "round"
51
- }), /*#__PURE__*/React.createElement("path", {
52
- d: "M15 18.75V16.25C15 15.9185 15.1317 15.6005 15.3661 15.3661C15.6005 15.1317 15.9185 15 16.25 15H32.5C32.8315 15 33.1495 15.1317 33.3839 15.3661C33.6183 15.6005 33.75 15.9185 33.75 16.25V18.75",
53
- stroke: "#10162F",
54
- strokeWidth: "1.25",
55
- strokeLinecap: "round",
56
- strokeLinejoin: "round"
57
- }));
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ children: [/*#__PURE__*/_jsx("title", {
18
+ children: "New Icon"
19
+ }), /*#__PURE__*/_jsx("circle", {
20
+ cx: "24",
21
+ cy: "24",
22
+ r: "23.5",
23
+ fill: "white",
24
+ stroke: "#10162F"
25
+ }), /*#__PURE__*/_jsx("path", {
26
+ d: "M16.875 27.5V21.25L19.375 27.5V21.25",
27
+ stroke: "#10162F",
28
+ strokeWidth: "1.25",
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ }), /*#__PURE__*/_jsx("path", {
32
+ d: "M24.375 27.5H23.125C22.7935 27.5 22.4755 27.3683 22.2411 27.1339C22.0067 26.8995 21.875 26.5815 21.875 26.25V22.5C21.875 22.1685 22.0067 21.8505 22.2411 21.6161C22.4755 21.3817 22.7935 21.25 23.125 21.25H24.375",
33
+ stroke: "#10162F",
34
+ strokeWidth: "1.25",
35
+ strokeLinecap: "round",
36
+ strokeLinejoin: "round"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M21.875 25H24.375",
39
+ stroke: "#10162F",
40
+ strokeWidth: "1.25",
41
+ strokeLinecap: "round",
42
+ strokeLinejoin: "round"
43
+ }), /*#__PURE__*/_jsx("path", {
44
+ d: "M26.875 21.25V22.9308C26.8748 23.8849 27.0569 24.8302 27.4117 25.7158L28.125 27.5L29.375 23.125L30.625 27.5L31.3383 25.7158C31.6927 24.8301 31.8749 23.8849 31.875 22.9308V21.25",
45
+ stroke: "#10162F",
46
+ strokeWidth: "1.25",
47
+ strokeLinecap: "round",
48
+ strokeLinejoin: "round"
49
+ }), /*#__PURE__*/_jsx("path", {
50
+ d: "M33.75 30V32.5C33.75 32.8315 33.6183 33.1495 33.3839 33.3839C33.1495 33.6183 32.8315 33.75 32.5 33.75H16.25C15.9185 33.75 15.6005 33.6183 15.3661 33.3839C15.1317 33.1495 15 32.8315 15 32.5V30",
51
+ stroke: "#10162F",
52
+ strokeWidth: "1.25",
53
+ strokeLinecap: "round",
54
+ strokeLinejoin: "round"
55
+ }), /*#__PURE__*/_jsx("path", {
56
+ d: "M15 18.75V16.25C15 15.9185 15.1317 15.6005 15.3661 15.3661C15.6005 15.1317 15.9185 15 16.25 15H32.5C32.8315 15 33.1495 15.1317 33.3839 15.3661C33.6183 15.6005 33.75 15.9185 33.75 16.25V18.75",
57
+ stroke: "#10162F",
58
+ strokeWidth: "1.25",
59
+ strokeLinecap: "round",
60
+ strokeLinejoin: "round"
61
+ })]
62
+ });
58
63
  };
@@ -1,3 +1,3 @@
1
- import React from 'react';
1
+ import * as React from 'react';
2
2
  import { IllustrationProps } from './types';
3
3
  export declare const NumberBlocks: React.FC<IllustrationProps>;