@codecademy/gamut-illustrations 1.0.0-alpha.f6cb5a.0 → 67.0.0-alpha.387605.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 (90) hide show
  1. package/LICENSE +1 -1
  2. package/dist/Announcement.d.ts +3 -0
  3. package/dist/Announcement.js +157 -0
  4. package/dist/Bee.d.ts +1 -1
  5. package/dist/Bee.js +124 -112
  6. package/dist/Bell.d.ts +1 -1
  7. package/dist/Bell.js +36 -31
  8. package/dist/BinaryBlocks.d.ts +1 -1
  9. package/dist/BinaryBlocks.js +126 -116
  10. package/dist/BinaryStairs.d.ts +3 -0
  11. package/dist/BinaryStairs.js +81 -0
  12. package/dist/Blocks.d.ts +3 -0
  13. package/dist/Blocks.js +247 -0
  14. package/dist/Blueprint.d.ts +3 -0
  15. package/dist/Blueprint.js +94 -0
  16. package/dist/BlueprintWhite.d.ts +3 -0
  17. package/dist/BlueprintWhite.js +101 -0
  18. package/dist/BookAndNotepad.d.ts +3 -0
  19. package/dist/BookAndNotepad.js +96 -0
  20. package/dist/Browser.d.ts +1 -1
  21. package/dist/Browser.js +69 -61
  22. package/dist/BrowserLock.d.ts +1 -1
  23. package/dist/BrowserLock.js +36 -31
  24. package/dist/BrowserPuzzle.d.ts +1 -1
  25. package/dist/BrowserPuzzle.js +61 -54
  26. package/dist/ChatBox.d.ts +1 -1
  27. package/dist/ChatBox.js +36 -31
  28. package/dist/CodeCelebration.d.ts +3 -0
  29. package/dist/CodeCelebration.js +158 -0
  30. package/dist/Coffee.d.ts +3 -0
  31. package/dist/Coffee.js +63 -0
  32. package/dist/Confetti.d.ts +1 -1
  33. package/dist/Confetti.js +87 -79
  34. package/dist/EmailAt.d.ts +1 -1
  35. package/dist/EmailAt.js +30 -25
  36. package/dist/Envelope.d.ts +1 -1
  37. package/dist/Envelope.js +30 -25
  38. package/dist/ErrorWindow.d.ts +3 -0
  39. package/dist/ErrorWindow.js +128 -0
  40. package/dist/Heart.d.ts +1 -1
  41. package/dist/Heart.js +24 -19
  42. package/dist/Hills.d.ts +1 -1
  43. package/dist/Hills.js +45 -38
  44. package/dist/HomeOffice.d.ts +1 -1
  45. package/dist/HomeOffice.js +110 -99
  46. package/dist/Keyhole.d.ts +1 -1
  47. package/dist/Keyhole.js +24 -19
  48. package/dist/MagnifyingGlass.d.ts +3 -0
  49. package/dist/MagnifyingGlass.js +67 -0
  50. package/dist/Maze.d.ts +1 -1
  51. package/dist/Maze.js +61 -58
  52. package/dist/Megaphone.d.ts +1 -1
  53. package/dist/Megaphone.js +42 -37
  54. package/dist/MobilePhone.d.ts +3 -0
  55. package/dist/MobilePhone.js +96 -0
  56. package/dist/New.d.ts +1 -1
  57. package/dist/New.js +54 -49
  58. package/dist/NumberBlocks.d.ts +1 -1
  59. package/dist/NumberBlocks.js +273 -252
  60. package/dist/Onboarding.d.ts +1 -1
  61. package/dist/Onboarding.js +314 -253
  62. package/dist/Plant.d.ts +1 -1
  63. package/dist/Plant.js +62 -55
  64. package/dist/PortfolioProject.d.ts +1 -1
  65. package/dist/PortfolioProject.js +29 -26
  66. package/dist/PracticeProject.d.ts +1 -1
  67. package/dist/PracticeProject.js +37 -34
  68. package/dist/Puzzle.d.ts +3 -0
  69. package/dist/Puzzle.js +159 -0
  70. package/dist/Python.d.ts +1 -1
  71. package/dist/Python.js +16 -11
  72. package/dist/Sun.d.ts +1 -1
  73. package/dist/Sun.js +111 -103
  74. package/dist/Syllabus.d.ts +3 -0
  75. package/dist/Syllabus.js +352 -0
  76. package/dist/Target.d.ts +1 -1
  77. package/dist/Target.js +37 -32
  78. package/dist/TinyBlocks.d.ts +3 -0
  79. package/dist/TinyBlocks.js +22 -0
  80. package/dist/Warning.d.ts +3 -0
  81. package/dist/Warning.js +101 -0
  82. package/dist/index.d.ts +15 -0
  83. package/dist/index.js +16 -1
  84. package/dist/types.js +1 -0
  85. package/package.json +9 -11
  86. package/CHANGELOG.md +0 -1271
  87. package/babel.config.js +0 -15
  88. package/dist/__tests__/gamut-illustrations.test.js +0 -32
  89. package/jest.config.js +0 -1
  90. package/tsconfig.json +0 -7
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Ryzac, Inc.
3
+ Copyright (c) 2022 Codecademy LLC
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { IllustrationProps } from './types';
3
+ export declare const Announcement: React.FC<IllustrationProps>;
@@ -0,0 +1,157 @@
1
+ import * as React from 'react';
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ import { jsxs as _jsxs } from "react/jsx-runtime";
4
+ export var Announcement = function Announcement(_ref) {
5
+ var ariaHidden = _ref['aria-hidden'],
6
+ className = _ref.className,
7
+ height = _ref.height,
8
+ width = _ref.width;
9
+ return /*#__PURE__*/_jsxs("svg", {
10
+ "aria-hidden": ariaHidden,
11
+ className: className,
12
+ width: width,
13
+ height: height,
14
+ fill: "none",
15
+ viewBox: "0 0 300 168",
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
18
+ children: [/*#__PURE__*/_jsx("mask", {
19
+ id: "a",
20
+ "mask-type": "alpha",
21
+ maskUnits: "userSpaceOnUse",
22
+ x: "199",
23
+ y: "12",
24
+ width: "83",
25
+ height: "83",
26
+ children: /*#__PURE__*/_jsx("circle", {
27
+ cx: "240.5",
28
+ cy: "53.5",
29
+ r: "41.5",
30
+ fill: "#D9D9D9"
31
+ })
32
+ }), /*#__PURE__*/_jsxs("g", {
33
+ mask: "url(#a)",
34
+ children: [/*#__PURE__*/_jsx("mask", {
35
+ id: "c",
36
+ "mask-type": "alpha",
37
+ maskUnits: "userSpaceOnUse",
38
+ x: "199",
39
+ y: "12",
40
+ width: "83",
41
+ height: "83",
42
+ children: /*#__PURE__*/_jsx("path", {
43
+ fill: "url(#b)",
44
+ d: "M199 12h83v83h-83z"
45
+ })
46
+ }), /*#__PURE__*/_jsx("g", {
47
+ mask: "url(#c)",
48
+ children: /*#__PURE__*/_jsx("path", {
49
+ fill: "#FFD300",
50
+ d: "M199 12h83v83h-83z"
51
+ })
52
+ })]
53
+ }), /*#__PURE__*/_jsx("path", {
54
+ d: "m217.542 141.388 17.446 10.322v3.989H55v-3.989h.42l17.446-10.322.105-.14V57.485h144.466v83.763l.105.14Z",
55
+ fill: "#F5FFE3",
56
+ stroke: "#10162F",
57
+ strokeWidth: ".893",
58
+ strokeLinejoin: "round"
59
+ }), /*#__PURE__*/_jsx("path", {
60
+ d: "M213.032 61.614H76.957v76.136h136.075V61.614Z",
61
+ fill: "#FFD300",
62
+ stroke: "#10162F",
63
+ strokeWidth: ".893"
64
+ }), /*#__PURE__*/_jsx("path", {
65
+ d: "M234.988 151.71H55.42l17.446-10.322h144.676l17.446 10.322Z",
66
+ fill: "#FFFAE5",
67
+ stroke: "#10162F",
68
+ strokeWidth: ".893",
69
+ strokeLinejoin: "round"
70
+ }), /*#__PURE__*/_jsx("path", {
71
+ d: "m132.211 112.001-7.16 1.919 3.004 11.221 7.16-1.92-3.004-11.22Z",
72
+ fill: "#3A10E5",
73
+ stroke: "#10162F",
74
+ strokeWidth: ".893"
75
+ }), /*#__PURE__*/_jsx("path", {
76
+ d: "m114.821 112.418-2.832-10.532 40.137-30.16 12.517 46.71-49.822-6.018Z",
77
+ fill: "#FFFAE5",
78
+ stroke: "#10162F",
79
+ strokeWidth: ".893"
80
+ }), /*#__PURE__*/_jsx("path", {
81
+ d: "m114.786 112.453-2.832-10.532 2.588-1.854 3.426 12.736-3.182-.35Z",
82
+ fill: "#FFFAE5",
83
+ stroke: "#10162F",
84
+ strokeWidth: ".893",
85
+ strokeLinejoin: "round"
86
+ }), /*#__PURE__*/_jsx("path", {
87
+ d: "M164.853 93.349c1.748 6.578 2.692 12.736 2.762 17.319.035 2.31-.14 4.164-.489 5.528-.385 1.365-.909 2.03-1.504 2.205-.594.14-1.398-.14-2.412-1.155-.979-.98-2.098-2.519-3.182-4.513-2.202-4.024-4.475-9.797-6.258-16.375-1.783-6.578-2.692-12.736-2.762-17.32-.035-2.309.14-4.163.489-5.528.385-1.364.909-2.03 1.504-2.204.594-.14 1.398.14 2.412 1.154.979.98 2.098 2.52 3.182 4.514 2.237 4.024 4.51 9.797 6.258 16.375Z",
88
+ fill: "#fff",
89
+ stroke: "#10162F",
90
+ strokeWidth: ".893",
91
+ strokeMiterlimit: "10"
92
+ }), /*#__PURE__*/_jsx("path", {
93
+ d: "m148.665 78.374-15.768 12.07M171.706 94.958c.769-3.743 3.985-11.196 10.698-11.196 4.825 0 4.441 7.243-.909 7.243-5.314 0-2.447-11.967 3.706-15.01",
94
+ stroke: "#10162F",
95
+ strokeWidth: ".893"
96
+ }), /*#__PURE__*/_jsx("path", {
97
+ d: "M164.927 93.138c1.749 6.577 2.693 12.735 2.762 17.319.035 2.309-.139 4.164-.489 5.528-.385 1.365-.909 2.03-1.503 2.204-.595.14-1.399-.139-2.413-1.154-.979-.98-2.098-2.519-3.181-4.514-2.203-4.023-4.476-9.797-6.259-16.374-1.783-6.578-2.692-12.736-2.762-17.32-.035-2.31.14-4.163.49-5.528.384-1.365.909-2.03 1.503-2.204.594-.14 1.399.14 2.412 1.154.979.98 2.098 2.52 3.182 4.514 2.238 4.023 4.51 9.797 6.258 16.374Z",
98
+ fill: "url(#d)"
99
+ }), /*#__PURE__*/_jsx("path", {
100
+ d: "M162.266 94.293c-1.154-4.303-5.594-6.892-9.895-5.703-.105.035-.21.07-.279.07.454 2.45 1.013 5.004 1.713 7.663.769 2.799 1.608 5.493 2.482 7.942.07-.035.175-.035.245-.07a8.083 8.083 0 0 0 5.734-9.901Z",
101
+ fill: "#FFD300",
102
+ stroke: "#10162F",
103
+ strokeWidth: ".893",
104
+ strokeLinejoin: "round"
105
+ }), /*#__PURE__*/_jsx("path", {
106
+ fillRule: "evenodd",
107
+ clipRule: "evenodd",
108
+ d: "m143.036 52.202-4.895 10.777-4.929-10.847c-8.356-.665-14.964-7.697-14.964-16.235 0-8.992 7.272-16.27 16.257-16.27h27.901c8.985 0 16.257 7.278 16.257 16.27s-7.272 16.27-16.257 16.27h-19.37v.035Z",
109
+ fill: "#FFFAE5",
110
+ stroke: "#10162F",
111
+ strokeWidth: ".893"
112
+ }), /*#__PURE__*/_jsx("path", {
113
+ d: "M167.72 31.664c0 3.883 0 10.076-4.65 9.622-4.65-.455-2.028-9.622-7.657-9.622-5.594 0-1.958 9.622-7.517 9.622-5.524 0-1.748-9.902-7.971-9.622-6.224.28-.595 10.776-8.566 9.622",
114
+ fill: "#FFFAE5"
115
+ }), /*#__PURE__*/_jsx("path", {
116
+ d: "M167.72 31.664c0 3.883 0 10.076-4.65 9.622-4.65-.455-2.028-9.622-7.657-9.622-5.594 0-1.958 9.622-7.517 9.622-5.524 0-1.748-9.902-7.971-9.622-6.224.28-.595 10.776-8.566 9.622",
117
+ stroke: "#3A10E5",
118
+ strokeWidth: ".893"
119
+ }), /*#__PURE__*/_jsx("path", {
120
+ d: "m198.977 126.448-4.441-4.443 3.147-3.289-12.482-3.884 3.881 12.876 3.601-3.779 4.336 4.339 1.958-1.82Z",
121
+ fill: "#3A10E5",
122
+ stroke: "#10162F",
123
+ strokeWidth: ".893",
124
+ strokeMiterlimit: "10"
125
+ }), /*#__PURE__*/_jsxs("defs", {
126
+ children: [/*#__PURE__*/_jsx("pattern", {
127
+ id: "b",
128
+ patternContentUnits: "objectBoundingBox",
129
+ width: ".048",
130
+ height: ".048",
131
+ children: /*#__PURE__*/_jsx("use", {
132
+ xlinkHref: "#e",
133
+ transform: "scale(.01205)"
134
+ })
135
+ }), /*#__PURE__*/_jsx("pattern", {
136
+ id: "d",
137
+ patternContentUnits: "objectBoundingBox",
138
+ width: "2.293",
139
+ height: ".808",
140
+ children: /*#__PURE__*/_jsx("use", {
141
+ xlinkHref: "#f",
142
+ transform: "scale(.03583 .01262)"
143
+ })
144
+ }), /*#__PURE__*/_jsx("image", {
145
+ id: "e",
146
+ width: "4",
147
+ height: "4",
148
+ xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAeSURBVHgBjcoxEQAAAAFAEUxq6J+OBO78/KAcXOYsc5ICqdLdEKMAAAAASUVORK5CYII="
149
+ }), /*#__PURE__*/_jsx("image", {
150
+ id: "f",
151
+ width: "64",
152
+ height: "64",
153
+ xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACkSURBVHgB7dcxEsIwDAVR6f53Boo/FNBkPEkYrN3Xye3+xlVVz/pEu/XmEqgsr3AJVJZXuAQqyytcApXlFS6ByvIKl0BleYVLoLK8wiVQWV5BK/8oheWh+vuBVh67BMsXVB/cuPKYJVj+4B6rF29c+bFLsPziPUafvHHlxyzB8ifvbfXFN678tkuw/MX3NvrmG1d+myVY/ub7b/WPb1z5sb/CJS8ZOf4BH9R+4AAAAABJRU5ErkJggg=="
154
+ })]
155
+ })]
156
+ });
157
+ };
package/dist/Bee.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 Bee: React.FC<IllustrationProps>;
package/dist/Bee.js CHANGED
@@ -1,10 +1,12 @@
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 Bee = function Bee(_ref) {
3
5
  var ariaHidden = _ref['aria-hidden'],
4
- className = _ref.className,
5
- height = _ref.height,
6
- width = _ref.width;
7
- return /*#__PURE__*/React.createElement("svg", {
6
+ className = _ref.className,
7
+ height = _ref.height,
8
+ width = _ref.width;
9
+ return /*#__PURE__*/_jsxs("svg", {
8
10
  "aria-hidden": ariaHidden,
9
11
  className: className,
10
12
  width: width,
@@ -12,111 +14,121 @@ export var Bee = function Bee(_ref) {
12
14
  viewBox: "0 0 80 60",
13
15
  fill: "none",
14
16
  xmlns: "http://www.w3.org/2000/svg",
15
- xmlnsXlink: "http://www.w3.org/1999/xlink"
16
- }, /*#__PURE__*/React.createElement("title", null, "Bee Illustration"), /*#__PURE__*/React.createElement("path", {
17
- d: "M43.6726 13.6659V6.87367",
18
- stroke: "#10162F"
19
- }), /*#__PURE__*/React.createElement("circle", {
20
- cx: "43.6726",
21
- cy: "6.35117",
22
- r: "1.85117",
23
- fill: "white",
24
- stroke: "#10162F"
25
- }), /*#__PURE__*/React.createElement("path", {
26
- d: "M36.3579 13.6659V6.87367",
27
- stroke: "#10162F"
28
- }), /*#__PURE__*/React.createElement("circle", {
29
- cx: "36.3579",
30
- cy: "6.35117",
31
- r: "1.85117",
32
- fill: "white",
33
- stroke: "#10162F"
34
- }), /*#__PURE__*/React.createElement("rect", {
35
- x: "29.5",
36
- y: "13.1667",
37
- width: "21.2857",
38
- height: "42.3334",
39
- rx: "10.6429",
40
- fill: "white",
41
- stroke: "#10162F"
42
- }), /*#__PURE__*/React.createElement("rect", {
43
- x: "30.9916",
44
- y: "42.7578",
45
- width: "19.3789",
46
- height: "3.22982",
47
- fill: "url(#pattern0)"
48
- }), /*#__PURE__*/React.createElement("rect", {
49
- x: "30.9916",
50
- y: "34.145",
51
- width: "18.3023",
52
- height: "3.22982",
53
- fill: "url(#pattern1)"
54
- }), /*#__PURE__*/React.createElement("rect", {
55
- x: "30.9916",
56
- y: "24.4555",
57
- width: "18.3023",
58
- height: "3.22982",
59
- fill: "url(#pattern2)"
60
- }), /*#__PURE__*/React.createElement("mask", {
61
- id: "path-9-inside-1",
62
- fill: "white"
63
- }, /*#__PURE__*/React.createElement("path", {
64
- fillRule: "evenodd",
65
- clipRule: "evenodd",
66
- d: "M63.2128 27.2924L40.0592 21.5569L49.6683 42.7751C50.3525 44.6772 51.5366 46.4277 53.2014 47.8154C58.1887 51.9724 65.6016 51.2994 69.7586 46.3121C73.9156 41.3248 73.2425 33.912 68.2553 29.755C67.0864 28.7807 65.7843 28.0717 64.4221 27.6214L64.4424 27.597L63.9124 27.4657C63.6805 27.4007 63.4472 27.3429 63.2128 27.2924Z"
67
- })), /*#__PURE__*/React.createElement("path", {
68
- fillRule: "evenodd",
69
- clipRule: "evenodd",
70
- d: "M63.2128 27.2924L40.0592 21.5569L49.6683 42.7751C50.3525 44.6772 51.5366 46.4277 53.2014 47.8154C58.1887 51.9724 65.6016 51.2994 69.7586 46.3121C73.9156 41.3248 73.2425 33.912 68.2553 29.755C67.0864 28.7807 65.7843 28.0717 64.4221 27.6214L64.4424 27.597L63.9124 27.4657C63.6805 27.4007 63.4472 27.3429 63.2128 27.2924Z",
71
- fill: "white"
72
- }), /*#__PURE__*/React.createElement("path", {
73
- d: "M40.0592 21.5569L40.2996 20.5862L38.2972 20.0902L39.1482 21.9694L40.0592 21.5569ZM63.2128 27.2924L62.9724 28.2631L62.9873 28.2668L63.0023 28.27L63.2128 27.2924ZM49.6683 42.7751L50.6093 42.4367L50.5958 42.399L50.5793 42.3626L49.6683 42.7751ZM64.4221 27.6214L63.654 26.9812L62.7132 28.1098L64.1082 28.5709L64.4221 27.6214ZM64.4424 27.597L65.2106 28.2373L66.2332 27.0104L64.6829 26.6264L64.4424 27.597ZM63.9124 27.4657L63.6421 28.4285L63.657 28.4327L63.6719 28.4364L63.9124 27.4657ZM39.8187 22.5275L62.9724 28.2631L63.4533 26.3218L40.2996 20.5862L39.8187 22.5275ZM50.5793 42.3626L40.9701 21.1443L39.1482 21.9694L48.7574 43.1877L50.5793 42.3626ZM53.8417 47.0473C52.3172 45.7766 51.2349 44.1758 50.6093 42.4367L48.7273 43.1136C49.4701 45.1785 50.7559 47.0789 52.5612 48.5836L53.8417 47.0473ZM68.9904 45.6718C65.1871 50.2349 58.4047 50.8507 53.8417 47.0473L52.5612 48.5836C57.9727 53.0942 66.0161 52.3639 70.5267 46.9524L68.9904 45.6718ZM67.615 30.5231C72.178 34.3265 72.7938 41.1088 68.9904 45.6718L70.5267 46.9524C75.0374 41.5409 74.307 33.4974 68.8955 28.9868L67.615 30.5231ZM64.1082 28.5709C65.3532 28.9824 66.5442 29.6305 67.615 30.5231L68.8955 28.9868C67.6287 27.9308 66.2154 27.161 64.736 26.672L64.1082 28.5709ZM63.6743 26.9568L63.654 26.9812L65.1903 28.2617L65.2106 28.2373L63.6743 26.9568ZM63.6719 28.4364L64.202 28.5677L64.6829 26.6264L64.1528 26.4951L63.6719 28.4364ZM63.0023 28.27C63.2167 28.3162 63.4301 28.369 63.6421 28.4285L64.1826 26.5029C63.9309 26.4323 63.6777 26.3696 63.4233 26.3148L63.0023 28.27Z",
74
- fill: "#10162F",
75
- mask: "url(#path-9-inside-1)"
76
- }), /*#__PURE__*/React.createElement("mask", {
77
- id: "path-11-inside-2",
78
- fill: "white"
79
- }, /*#__PURE__*/React.createElement("path", {
80
- fillRule: "evenodd",
81
- clipRule: "evenodd",
82
- d: "M30.4347 43.2806L40.1744 21.5083L17.5917 27.2127C15.5985 27.5495 13.6659 28.4054 12.0054 29.7987C7.03182 33.972 6.38308 41.3871 10.5564 46.3606C14.7298 51.3342 22.1448 51.983 27.1184 47.8096C28.284 46.8316 29.2121 45.6754 29.8963 44.4144L29.9166 44.4387L30.1389 43.9417C30.2445 43.724 30.3431 43.5035 30.4347 43.2806Z"
83
- })), /*#__PURE__*/React.createElement("path", {
84
- fillRule: "evenodd",
85
- clipRule: "evenodd",
86
- d: "M30.4347 43.2806L40.1744 21.5083L17.5917 27.2127C15.5985 27.5495 13.6659 28.4054 12.0054 29.7987C7.03182 33.972 6.38308 41.3871 10.5564 46.3606C14.7298 51.3342 22.1448 51.983 27.1184 47.8096C28.284 46.8316 29.2121 45.6754 29.8963 44.4144L29.9166 44.4387L30.1389 43.9417C30.2445 43.724 30.3431 43.5035 30.4347 43.2806Z",
87
- fill: "white"
88
- }), /*#__PURE__*/React.createElement("path", {
89
- d: "M40.1744 21.5083L41.0873 21.9166L41.9297 20.0335L39.9295 20.5387L40.1744 21.5083ZM30.4347 43.2806L29.5219 42.8723L29.5155 42.8864L29.5097 42.9007L30.4347 43.2806ZM17.5917 27.2127L17.7584 28.1987L17.7978 28.192L17.8366 28.1822L17.5917 27.2127ZM29.8963 44.4144L30.6623 43.7716L29.7179 42.6461L29.0173 43.9375L29.8963 44.4144ZM29.9166 44.4387L29.1506 45.0815L30.1772 46.305L30.8295 44.847L29.9166 44.4387ZM30.1389 43.9417L29.2392 43.5053L29.2324 43.5192L29.2261 43.5334L30.1389 43.9417ZM39.2616 21.0999L29.5219 42.8723L31.3475 43.6889L41.0873 21.9166L39.2616 21.0999ZM17.8366 28.1822L40.4194 22.4778L39.9295 20.5387L17.3468 26.2431L17.8366 28.1822ZM12.6482 30.5647C14.1687 29.2889 15.9358 28.5067 17.7584 28.1987L17.4251 26.2266C15.2612 26.5924 13.1631 27.5218 11.3626 29.0326L12.6482 30.5647ZM11.3225 45.7179C7.50413 41.1673 8.09768 34.383 12.6482 30.5647L11.3626 29.0326C5.96596 33.561 5.26204 41.6068 9.79038 47.0034L11.3225 45.7179ZM26.4756 47.0436C21.9251 50.8619 15.1408 50.2684 11.3225 45.7179L9.79038 47.0034C14.3187 52.4001 22.3645 53.104 27.7612 48.5757L26.4756 47.0436ZM29.0173 43.9375C28.392 45.09 27.5435 46.1475 26.4756 47.0436L27.7612 48.5757C29.0246 47.5156 30.0322 46.2608 30.7752 44.8912L29.0173 43.9375ZM30.6827 43.7959L30.6623 43.7716L29.1302 45.0572L29.1506 45.0815L30.6827 43.7959ZM29.2261 43.5334L29.0038 44.0303L30.8295 44.847L31.0518 44.3501L29.2261 43.5334ZM29.5097 42.9007C29.4259 43.1045 29.3358 43.3062 29.2392 43.5053L31.0387 44.3781C31.1533 44.1418 31.2603 43.9024 31.3597 43.6605L29.5097 42.9007Z",
90
- fill: "#10162F",
91
- mask: "url(#path-11-inside-2)"
92
- }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", {
93
- id: "pattern0",
94
- patternContentUnits: "objectBoundingBox",
95
- width: "3.30256",
96
- height: "19.8153"
97
- }, /*#__PURE__*/React.createElement("use", {
98
- xlinkHref: "#image0",
99
- transform: "scale(0.0516025 0.309615)"
100
- })), /*#__PURE__*/React.createElement("pattern", {
101
- id: "pattern1",
102
- patternContentUnits: "objectBoundingBox",
103
- width: "3.49683",
104
- height: "19.8153"
105
- }, /*#__PURE__*/React.createElement("use", {
106
- xlinkHref: "#image0",
107
- transform: "scale(0.0546379 0.309615)"
108
- })), /*#__PURE__*/React.createElement("pattern", {
109
- id: "pattern2",
110
- patternContentUnits: "objectBoundingBox",
111
- width: "3.49683",
112
- height: "19.8153"
113
- }, /*#__PURE__*/React.createElement("use", {
114
- xlinkHref: "#image0",
115
- transform: "scale(0.0546379 0.309615)"
116
- })), /*#__PURE__*/React.createElement("image", {
117
- id: "image0",
118
- width: "64",
119
- height: "64",
120
- xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACkSURBVHgB7dcxEsIwDAVR6f53Boo/FNBkPEkYrN3Xye3+xlVVz/pEu/XmEqgsr3AJVJZXuAQqyytcApXlFS6ByvIKl0BleYVLoLK8wiVQWV5BK/8oheWh+vuBVh67BMsXVB/cuPKYJVj+4B6rF29c+bFLsPziPUafvHHlxyzB8ifvbfXFN678tkuw/MX3NvrmG1d+myVY/ub7b/WPb1z5sb/CJS8ZOf4BH9R+4AAAAABJRU5ErkJggg=="
121
- })));
17
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
18
+ children: [/*#__PURE__*/_jsx("title", {
19
+ children: "Bee Illustration"
20
+ }), /*#__PURE__*/_jsx("path", {
21
+ d: "M43.6726 13.6659V6.87367",
22
+ stroke: "#10162F"
23
+ }), /*#__PURE__*/_jsx("circle", {
24
+ cx: "43.6726",
25
+ cy: "6.35117",
26
+ r: "1.85117",
27
+ fill: "white",
28
+ stroke: "#10162F"
29
+ }), /*#__PURE__*/_jsx("path", {
30
+ d: "M36.3579 13.6659V6.87367",
31
+ stroke: "#10162F"
32
+ }), /*#__PURE__*/_jsx("circle", {
33
+ cx: "36.3579",
34
+ cy: "6.35117",
35
+ r: "1.85117",
36
+ fill: "white",
37
+ stroke: "#10162F"
38
+ }), /*#__PURE__*/_jsx("rect", {
39
+ x: "29.5",
40
+ y: "13.1667",
41
+ width: "21.2857",
42
+ height: "42.3334",
43
+ rx: "10.6429",
44
+ fill: "white",
45
+ stroke: "#10162F"
46
+ }), /*#__PURE__*/_jsx("rect", {
47
+ x: "30.9916",
48
+ y: "42.7578",
49
+ width: "19.3789",
50
+ height: "3.22982",
51
+ fill: "url(#pattern0)"
52
+ }), /*#__PURE__*/_jsx("rect", {
53
+ x: "30.9916",
54
+ y: "34.145",
55
+ width: "18.3023",
56
+ height: "3.22982",
57
+ fill: "url(#pattern1)"
58
+ }), /*#__PURE__*/_jsx("rect", {
59
+ x: "30.9916",
60
+ y: "24.4555",
61
+ width: "18.3023",
62
+ height: "3.22982",
63
+ fill: "url(#pattern2)"
64
+ }), /*#__PURE__*/_jsx("mask", {
65
+ id: "path-9-inside-1",
66
+ fill: "white",
67
+ children: /*#__PURE__*/_jsx("path", {
68
+ fillRule: "evenodd",
69
+ clipRule: "evenodd",
70
+ d: "M63.2128 27.2924L40.0592 21.5569L49.6683 42.7751C50.3525 44.6772 51.5366 46.4277 53.2014 47.8154C58.1887 51.9724 65.6016 51.2994 69.7586 46.3121C73.9156 41.3248 73.2425 33.912 68.2553 29.755C67.0864 28.7807 65.7843 28.0717 64.4221 27.6214L64.4424 27.597L63.9124 27.4657C63.6805 27.4007 63.4472 27.3429 63.2128 27.2924Z"
71
+ })
72
+ }), /*#__PURE__*/_jsx("path", {
73
+ fillRule: "evenodd",
74
+ clipRule: "evenodd",
75
+ d: "M63.2128 27.2924L40.0592 21.5569L49.6683 42.7751C50.3525 44.6772 51.5366 46.4277 53.2014 47.8154C58.1887 51.9724 65.6016 51.2994 69.7586 46.3121C73.9156 41.3248 73.2425 33.912 68.2553 29.755C67.0864 28.7807 65.7843 28.0717 64.4221 27.6214L64.4424 27.597L63.9124 27.4657C63.6805 27.4007 63.4472 27.3429 63.2128 27.2924Z",
76
+ fill: "white"
77
+ }), /*#__PURE__*/_jsx("path", {
78
+ d: "M40.0592 21.5569L40.2996 20.5862L38.2972 20.0902L39.1482 21.9694L40.0592 21.5569ZM63.2128 27.2924L62.9724 28.2631L62.9873 28.2668L63.0023 28.27L63.2128 27.2924ZM49.6683 42.7751L50.6093 42.4367L50.5958 42.399L50.5793 42.3626L49.6683 42.7751ZM64.4221 27.6214L63.654 26.9812L62.7132 28.1098L64.1082 28.5709L64.4221 27.6214ZM64.4424 27.597L65.2106 28.2373L66.2332 27.0104L64.6829 26.6264L64.4424 27.597ZM63.9124 27.4657L63.6421 28.4285L63.657 28.4327L63.6719 28.4364L63.9124 27.4657ZM39.8187 22.5275L62.9724 28.2631L63.4533 26.3218L40.2996 20.5862L39.8187 22.5275ZM50.5793 42.3626L40.9701 21.1443L39.1482 21.9694L48.7574 43.1877L50.5793 42.3626ZM53.8417 47.0473C52.3172 45.7766 51.2349 44.1758 50.6093 42.4367L48.7273 43.1136C49.4701 45.1785 50.7559 47.0789 52.5612 48.5836L53.8417 47.0473ZM68.9904 45.6718C65.1871 50.2349 58.4047 50.8507 53.8417 47.0473L52.5612 48.5836C57.9727 53.0942 66.0161 52.3639 70.5267 46.9524L68.9904 45.6718ZM67.615 30.5231C72.178 34.3265 72.7938 41.1088 68.9904 45.6718L70.5267 46.9524C75.0374 41.5409 74.307 33.4974 68.8955 28.9868L67.615 30.5231ZM64.1082 28.5709C65.3532 28.9824 66.5442 29.6305 67.615 30.5231L68.8955 28.9868C67.6287 27.9308 66.2154 27.161 64.736 26.672L64.1082 28.5709ZM63.6743 26.9568L63.654 26.9812L65.1903 28.2617L65.2106 28.2373L63.6743 26.9568ZM63.6719 28.4364L64.202 28.5677L64.6829 26.6264L64.1528 26.4951L63.6719 28.4364ZM63.0023 28.27C63.2167 28.3162 63.4301 28.369 63.6421 28.4285L64.1826 26.5029C63.9309 26.4323 63.6777 26.3696 63.4233 26.3148L63.0023 28.27Z",
79
+ fill: "#10162F",
80
+ mask: "url(#path-9-inside-1)"
81
+ }), /*#__PURE__*/_jsx("mask", {
82
+ id: "path-11-inside-2",
83
+ fill: "white",
84
+ children: /*#__PURE__*/_jsx("path", {
85
+ fillRule: "evenodd",
86
+ clipRule: "evenodd",
87
+ d: "M30.4347 43.2806L40.1744 21.5083L17.5917 27.2127C15.5985 27.5495 13.6659 28.4054 12.0054 29.7987C7.03182 33.972 6.38308 41.3871 10.5564 46.3606C14.7298 51.3342 22.1448 51.983 27.1184 47.8096C28.284 46.8316 29.2121 45.6754 29.8963 44.4144L29.9166 44.4387L30.1389 43.9417C30.2445 43.724 30.3431 43.5035 30.4347 43.2806Z"
88
+ })
89
+ }), /*#__PURE__*/_jsx("path", {
90
+ fillRule: "evenodd",
91
+ clipRule: "evenodd",
92
+ d: "M30.4347 43.2806L40.1744 21.5083L17.5917 27.2127C15.5985 27.5495 13.6659 28.4054 12.0054 29.7987C7.03182 33.972 6.38308 41.3871 10.5564 46.3606C14.7298 51.3342 22.1448 51.983 27.1184 47.8096C28.284 46.8316 29.2121 45.6754 29.8963 44.4144L29.9166 44.4387L30.1389 43.9417C30.2445 43.724 30.3431 43.5035 30.4347 43.2806Z",
93
+ fill: "white"
94
+ }), /*#__PURE__*/_jsx("path", {
95
+ d: "M40.1744 21.5083L41.0873 21.9166L41.9297 20.0335L39.9295 20.5387L40.1744 21.5083ZM30.4347 43.2806L29.5219 42.8723L29.5155 42.8864L29.5097 42.9007L30.4347 43.2806ZM17.5917 27.2127L17.7584 28.1987L17.7978 28.192L17.8366 28.1822L17.5917 27.2127ZM29.8963 44.4144L30.6623 43.7716L29.7179 42.6461L29.0173 43.9375L29.8963 44.4144ZM29.9166 44.4387L29.1506 45.0815L30.1772 46.305L30.8295 44.847L29.9166 44.4387ZM30.1389 43.9417L29.2392 43.5053L29.2324 43.5192L29.2261 43.5334L30.1389 43.9417ZM39.2616 21.0999L29.5219 42.8723L31.3475 43.6889L41.0873 21.9166L39.2616 21.0999ZM17.8366 28.1822L40.4194 22.4778L39.9295 20.5387L17.3468 26.2431L17.8366 28.1822ZM12.6482 30.5647C14.1687 29.2889 15.9358 28.5067 17.7584 28.1987L17.4251 26.2266C15.2612 26.5924 13.1631 27.5218 11.3626 29.0326L12.6482 30.5647ZM11.3225 45.7179C7.50413 41.1673 8.09768 34.383 12.6482 30.5647L11.3626 29.0326C5.96596 33.561 5.26204 41.6068 9.79038 47.0034L11.3225 45.7179ZM26.4756 47.0436C21.9251 50.8619 15.1408 50.2684 11.3225 45.7179L9.79038 47.0034C14.3187 52.4001 22.3645 53.104 27.7612 48.5757L26.4756 47.0436ZM29.0173 43.9375C28.392 45.09 27.5435 46.1475 26.4756 47.0436L27.7612 48.5757C29.0246 47.5156 30.0322 46.2608 30.7752 44.8912L29.0173 43.9375ZM30.6827 43.7959L30.6623 43.7716L29.1302 45.0572L29.1506 45.0815L30.6827 43.7959ZM29.2261 43.5334L29.0038 44.0303L30.8295 44.847L31.0518 44.3501L29.2261 43.5334ZM29.5097 42.9007C29.4259 43.1045 29.3358 43.3062 29.2392 43.5053L31.0387 44.3781C31.1533 44.1418 31.2603 43.9024 31.3597 43.6605L29.5097 42.9007Z",
96
+ fill: "#10162F",
97
+ mask: "url(#path-11-inside-2)"
98
+ }), /*#__PURE__*/_jsxs("defs", {
99
+ children: [/*#__PURE__*/_jsx("pattern", {
100
+ id: "pattern0",
101
+ patternContentUnits: "objectBoundingBox",
102
+ width: "3.30256",
103
+ height: "19.8153",
104
+ children: /*#__PURE__*/_jsx("use", {
105
+ xlinkHref: "#image0",
106
+ transform: "scale(0.0516025 0.309615)"
107
+ })
108
+ }), /*#__PURE__*/_jsx("pattern", {
109
+ id: "pattern1",
110
+ patternContentUnits: "objectBoundingBox",
111
+ width: "3.49683",
112
+ height: "19.8153",
113
+ children: /*#__PURE__*/_jsx("use", {
114
+ xlinkHref: "#image0",
115
+ transform: "scale(0.0546379 0.309615)"
116
+ })
117
+ }), /*#__PURE__*/_jsx("pattern", {
118
+ id: "pattern2",
119
+ patternContentUnits: "objectBoundingBox",
120
+ width: "3.49683",
121
+ height: "19.8153",
122
+ children: /*#__PURE__*/_jsx("use", {
123
+ xlinkHref: "#image0",
124
+ transform: "scale(0.0546379 0.309615)"
125
+ })
126
+ }), /*#__PURE__*/_jsx("image", {
127
+ id: "image0",
128
+ width: "64",
129
+ height: "64",
130
+ xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACkSURBVHgB7dcxEsIwDAVR6f53Boo/FNBkPEkYrN3Xye3+xlVVz/pEu/XmEqgsr3AJVJZXuAQqyytcApXlFS6ByvIKl0BleYVLoLK8wiVQWV5BK/8oheWh+vuBVh67BMsXVB/cuPKYJVj+4B6rF29c+bFLsPziPUafvHHlxyzB8ifvbfXFN678tkuw/MX3NvrmG1d+myVY/ub7b/WPb1z5sb/CJS8ZOf4BH9R+4AAAAABJRU5ErkJggg=="
131
+ })]
132
+ })]
133
+ });
122
134
  };
package/dist/Bell.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 Bell: React.FC<IllustrationProps>;
package/dist/Bell.js CHANGED
@@ -1,40 +1,45 @@
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 Bell = function Bell(_ref) {
3
5
  var ariaHidden = _ref['aria-hidden'],
4
- className = _ref.className,
5
- height = _ref.height,
6
- width = _ref.width;
7
- return /*#__PURE__*/React.createElement("svg", {
6
+ className = _ref.className,
7
+ height = _ref.height,
8
+ width = _ref.width;
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, "Bell 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: "M22.3334 32.125C22.4392 32.4856 22.659 32.8022 22.9598 33.0274C23.2607 33.2526 23.6263 33.3743 24.0021 33.3743C24.3779 33.3743 24.7436 33.2526 25.0444 33.0274C25.3452 32.8022 25.565 32.4856 25.6709 32.125",
23
- stroke: "black",
24
- strokeWidth: "1.25",
25
- strokeLinecap: "round",
26
- strokeLinejoin: "round"
27
- }), /*#__PURE__*/React.createElement("path", {
28
- d: "M24 16.5V14.625",
29
- stroke: "black",
30
- strokeWidth: "1.25",
31
- strokeLinecap: "round",
32
- strokeLinejoin: "round"
33
- }), /*#__PURE__*/React.createElement("path", {
34
- d: "M24 16.5C25.6576 16.5 27.2473 17.1585 28.4194 18.3306C29.5915 19.5027 30.25 21.0924 30.25 22.75C30.25 28.6217 31.5 29.625 31.5 29.625H16.5C16.5 29.625 17.75 28.0283 17.75 22.75C17.75 21.0924 18.4085 19.5027 19.5806 18.3306C20.7527 17.1585 22.3424 16.5 24 16.5V16.5Z",
35
- stroke: "black",
36
- strokeWidth: "1.25",
37
- strokeLinecap: "round",
38
- strokeLinejoin: "round"
39
- }));
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ children: [/*#__PURE__*/_jsx("title", {
18
+ children: "Bell 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: "M22.3334 32.125C22.4392 32.4856 22.659 32.8022 22.9598 33.0274C23.2607 33.2526 23.6263 33.3743 24.0021 33.3743C24.3779 33.3743 24.7436 33.2526 25.0444 33.0274C25.3452 32.8022 25.565 32.4856 25.6709 32.125",
27
+ stroke: "black",
28
+ strokeWidth: "1.25",
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ }), /*#__PURE__*/_jsx("path", {
32
+ d: "M24 16.5V14.625",
33
+ stroke: "black",
34
+ strokeWidth: "1.25",
35
+ strokeLinecap: "round",
36
+ strokeLinejoin: "round"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M24 16.5C25.6576 16.5 27.2473 17.1585 28.4194 18.3306C29.5915 19.5027 30.25 21.0924 30.25 22.75C30.25 28.6217 31.5 29.625 31.5 29.625H16.5C16.5 29.625 17.75 28.0283 17.75 22.75C17.75 21.0924 18.4085 19.5027 19.5806 18.3306C20.7527 17.1585 22.3424 16.5 24 16.5V16.5Z",
39
+ stroke: "black",
40
+ strokeWidth: "1.25",
41
+ strokeLinecap: "round",
42
+ strokeLinejoin: "round"
43
+ })]
44
+ });
40
45
  };
@@ -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 BinaryBlocks: React.FC<IllustrationProps>;