@codecademy/gamut-illustrations 1.0.0-alpha.f6cb5a.0 → 67.0.0-alpha.7455bb.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/dist/Sun.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 Sun = function Sun(_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,102 +14,108 @@ export var Sun = function Sun(_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, "Sun Illustration"), /*#__PURE__*/React.createElement("rect", {
17
- width: "80",
18
- height: "60",
19
- fill: "white"
20
- }), /*#__PURE__*/React.createElement("circle", {
21
- cx: "40.0598",
22
- cy: "30.2034",
23
- r: "9.15061",
24
- fill: "url(#pattern0)",
25
- stroke: "#10162F",
26
- strokeMiterlimit: "10"
27
- }), /*#__PURE__*/React.createElement("line", {
28
- x1: "40.5002",
29
- y1: "0.718262",
30
- x2: "40.5002",
31
- y2: "16.986",
32
- stroke: "#10162F"
33
- }), /*#__PURE__*/React.createElement("line", {
34
- x1: "40.5002",
35
- y1: "43.0145",
36
- x2: "40.5002",
37
- y2: "59.2822",
38
- stroke: "#10162F"
39
- }), /*#__PURE__*/React.createElement("line", {
40
- x1: "69.2822",
41
- y1: "30.5004",
42
- x2: "53.0145",
43
- y2: "30.5004",
44
- stroke: "#10162F"
45
- }), /*#__PURE__*/React.createElement("line", {
46
- x1: "26.9861",
47
- y1: "30.5004",
48
- x2: "10.7183",
49
- y2: "30.5004",
50
- stroke: "#10162F"
51
- }), /*#__PURE__*/React.createElement("line", {
52
- x1: "25.7924",
53
- y1: "4.39104",
54
- x2: "33.9263",
55
- y2: "18.4793",
56
- stroke: "#10162F"
57
- }), /*#__PURE__*/React.createElement("line", {
58
- x1: "46.9403",
59
- y1: "41.0206",
60
- x2: "55.0742",
61
- y2: "55.1089",
62
- stroke: "#10162F"
63
- }), /*#__PURE__*/React.createElement("line", {
64
- x1: "65.6091",
65
- y1: "15.7921",
66
- x2: "51.5208",
67
- y2: "23.926",
68
- stroke: "#10162F"
69
- }), /*#__PURE__*/React.createElement("line", {
70
- x1: "28.9795",
71
- y1: "36.9402",
72
- x2: "14.8912",
73
- y2: "45.074",
74
- stroke: "#10162F"
75
- }), /*#__PURE__*/React.createElement("line", {
76
- x1: "14.8911",
77
- y1: "14.9258",
78
- x2: "28.9794",
79
- y2: "23.0597",
80
- stroke: "#10162F"
81
- }), /*#__PURE__*/React.createElement("line", {
82
- x1: "51.5208",
83
- y1: "36.0742",
84
- x2: "65.609",
85
- y2: "44.2081",
86
- stroke: "#10162F"
87
- }), /*#__PURE__*/React.createElement("line", {
88
- x1: "55.0741",
89
- y1: "4.89114",
90
- x2: "46.9402",
91
- y2: "18.9794",
92
- stroke: "#10162F"
93
- }), /*#__PURE__*/React.createElement("line", {
94
- x1: "33.9259",
95
- y1: "41.5207",
96
- x2: "25.7921",
97
- y2: "55.609",
98
- stroke: "#10162F"
99
- }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", {
100
- id: "pattern0",
101
- patternContentUnits: "objectBoundingBox",
102
- width: "3.49703",
103
- height: "3.49703"
104
- }, /*#__PURE__*/React.createElement("use", {
105
- xlinkHref: "#image0",
106
- transform: "scale(0.0546411)"
107
- })), /*#__PURE__*/React.createElement("image", {
108
- id: "image0",
109
- width: "64",
110
- height: "64",
111
- xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACkSURBVHgB7dcxEsIwDAVR6f53Boo/FNBkPEkYrN3Xye3+xlVVz/pEu/XmEqgsr3AJVJZXuAQqyytcApXlFS6ByvIKl0BleYVLoLK8wiVQWV5BK/8oheWh+vuBVh67BMsXVB/cuPKYJVj+4B6rF29c+bFLsPziPUafvHHlxyzB8ifvbfXFN678tkuw/MX3NvrmG1d+myVY/ub7b/WPb1z5sb/CJS8ZOf4BH9R+4AAAAABJRU5ErkJggg=="
112
- })));
17
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
18
+ children: [/*#__PURE__*/_jsx("title", {
19
+ children: "Sun Illustration"
20
+ }), /*#__PURE__*/_jsx("rect", {
21
+ width: "80",
22
+ height: "60",
23
+ fill: "white"
24
+ }), /*#__PURE__*/_jsx("circle", {
25
+ cx: "40.0598",
26
+ cy: "30.2034",
27
+ r: "9.15061",
28
+ fill: "url(#pattern0)",
29
+ stroke: "#10162F",
30
+ strokeMiterlimit: "10"
31
+ }), /*#__PURE__*/_jsx("line", {
32
+ x1: "40.5002",
33
+ y1: "0.718262",
34
+ x2: "40.5002",
35
+ y2: "16.986",
36
+ stroke: "#10162F"
37
+ }), /*#__PURE__*/_jsx("line", {
38
+ x1: "40.5002",
39
+ y1: "43.0145",
40
+ x2: "40.5002",
41
+ y2: "59.2822",
42
+ stroke: "#10162F"
43
+ }), /*#__PURE__*/_jsx("line", {
44
+ x1: "69.2822",
45
+ y1: "30.5004",
46
+ x2: "53.0145",
47
+ y2: "30.5004",
48
+ stroke: "#10162F"
49
+ }), /*#__PURE__*/_jsx("line", {
50
+ x1: "26.9861",
51
+ y1: "30.5004",
52
+ x2: "10.7183",
53
+ y2: "30.5004",
54
+ stroke: "#10162F"
55
+ }), /*#__PURE__*/_jsx("line", {
56
+ x1: "25.7924",
57
+ y1: "4.39104",
58
+ x2: "33.9263",
59
+ y2: "18.4793",
60
+ stroke: "#10162F"
61
+ }), /*#__PURE__*/_jsx("line", {
62
+ x1: "46.9403",
63
+ y1: "41.0206",
64
+ x2: "55.0742",
65
+ y2: "55.1089",
66
+ stroke: "#10162F"
67
+ }), /*#__PURE__*/_jsx("line", {
68
+ x1: "65.6091",
69
+ y1: "15.7921",
70
+ x2: "51.5208",
71
+ y2: "23.926",
72
+ stroke: "#10162F"
73
+ }), /*#__PURE__*/_jsx("line", {
74
+ x1: "28.9795",
75
+ y1: "36.9402",
76
+ x2: "14.8912",
77
+ y2: "45.074",
78
+ stroke: "#10162F"
79
+ }), /*#__PURE__*/_jsx("line", {
80
+ x1: "14.8911",
81
+ y1: "14.9258",
82
+ x2: "28.9794",
83
+ y2: "23.0597",
84
+ stroke: "#10162F"
85
+ }), /*#__PURE__*/_jsx("line", {
86
+ x1: "51.5208",
87
+ y1: "36.0742",
88
+ x2: "65.609",
89
+ y2: "44.2081",
90
+ stroke: "#10162F"
91
+ }), /*#__PURE__*/_jsx("line", {
92
+ x1: "55.0741",
93
+ y1: "4.89114",
94
+ x2: "46.9402",
95
+ y2: "18.9794",
96
+ stroke: "#10162F"
97
+ }), /*#__PURE__*/_jsx("line", {
98
+ x1: "33.9259",
99
+ y1: "41.5207",
100
+ x2: "25.7921",
101
+ y2: "55.609",
102
+ stroke: "#10162F"
103
+ }), /*#__PURE__*/_jsxs("defs", {
104
+ children: [/*#__PURE__*/_jsx("pattern", {
105
+ id: "pattern0",
106
+ patternContentUnits: "objectBoundingBox",
107
+ width: "3.49703",
108
+ height: "3.49703",
109
+ children: /*#__PURE__*/_jsx("use", {
110
+ xlinkHref: "#image0",
111
+ transform: "scale(0.0546411)"
112
+ })
113
+ }), /*#__PURE__*/_jsx("image", {
114
+ id: "image0",
115
+ width: "64",
116
+ height: "64",
117
+ xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACkSURBVHgB7dcxEsIwDAVR6f53Boo/FNBkPEkYrN3Xye3+xlVVz/pEu/XmEqgsr3AJVJZXuAQqyytcApXlFS6ByvIKl0BleYVLoLK8wiVQWV5BK/8oheWh+vuBVh67BMsXVB/cuPKYJVj+4B6rF29c+bFLsPziPUafvHHlxyzB8ifvbfXFN678tkuw/MX3NvrmG1d+myVY/ub7b/WPb1z5sb/CJS8ZOf4BH9R+4AAAAABJRU5ErkJggg=="
118
+ })]
119
+ })]
120
+ });
113
121
  };
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { IllustrationProps } from './types';
3
+ export declare const Syllabus: React.FC<IllustrationProps>;
@@ -0,0 +1,352 @@
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 Syllabus = function Syllabus(_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
+ width: width,
11
+ height: height,
12
+ viewBox: "0 0 515 347",
13
+ "aria-hidden": ariaHidden,
14
+ className: className,
15
+ fill: "none",
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ children: [/*#__PURE__*/_jsx("path", {
18
+ d: "M403.403 118.102h89.671l15.645-.176 5.509-5.929-21.154-13.714V59.89l-84.073-5.743-5.598 5.743v58.211Z",
19
+ fill: "#fff",
20
+ stroke: "#10162F",
21
+ strokeWidth: ".517",
22
+ strokeMiterlimit: "10"
23
+ }), /*#__PURE__*/_jsx("path", {
24
+ d: "M90.94 346.752a16.824 16.824 0 0 1-15.535-10.386 16.822 16.822 0 0 1 3.649-18.328 16.819 16.819 0 0 1 28.71 11.895 16.84 16.84 0 0 1-16.824 16.819Z",
25
+ fill: "#FFD300"
26
+ }), /*#__PURE__*/_jsx("path", {
27
+ d: "M90.939 313.373a16.556 16.556 0 1 1 0 33.112 16.556 16.556 0 0 1 0-33.112Zm0-.518a17.072 17.072 0 1 0 .002 34.144 17.072 17.072 0 0 0-.002-34.144Z",
28
+ fill: "#10162F"
29
+ }), /*#__PURE__*/_jsx("path", {
30
+ d: "M96.753 325.313a1.744 1.744 0 1 0 0-3.488 1.744 1.744 0 0 0 0 3.488Z",
31
+ fill: "#FFD300"
32
+ }), /*#__PURE__*/_jsx("path", {
33
+ d: "M96.754 322.08a1.49 1.49 0 1 1-1.374.92 1.49 1.49 0 0 1 .804-.807c.18-.075.374-.113.57-.113Zm0-.518a2.007 2.007 0 1 0-.01 4.014 2.007 2.007 0 0 0 .01-4.014Z",
34
+ fill: "#10162F"
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M85.13 325.313a1.744 1.744 0 1 0-.002-3.488 1.744 1.744 0 0 0 .001 3.488Z",
37
+ fill: "#FFD300"
38
+ }), /*#__PURE__*/_jsx("path", {
39
+ d: "M85.13 322.08a1.488 1.488 0 0 1 1.461 1.78 1.489 1.489 0 1 1-1.461-1.78Zm0-.518a2.007 2.007 0 1 0-.01 4.014 2.007 2.007 0 0 0 .01-4.014Z",
40
+ fill: "#10162F"
41
+ }), /*#__PURE__*/_jsx("path", {
42
+ d: "M82.522 330.683c0 3.58 3.77 7.615 8.417 7.615 5.173 0 8.422-4.035 8.422-7.615",
43
+ fill: "#FFD300"
44
+ }), /*#__PURE__*/_jsx("path", {
45
+ d: "M82.522 330.683c0 3.58 3.77 7.615 8.417 7.615 5.173 0 8.422-4.035 8.422-7.615",
46
+ stroke: "#10162F",
47
+ strokeWidth: ".517",
48
+ strokeMiterlimit: "10"
49
+ }), /*#__PURE__*/_jsx("path", {
50
+ d: "M17.843 346.752a16.82 16.82 0 1 1 6.436-32.358 16.819 16.819 0 0 1 10.383 15.539 16.834 16.834 0 0 1-16.819 16.819Z",
51
+ fill: "#FFFAE5"
52
+ }), /*#__PURE__*/_jsx("path", {
53
+ d: "M17.844 313.373a16.555 16.555 0 1 1 0 33.111 16.555 16.555 0 0 1 0-33.111Zm0-.518A17.073 17.073 0 1 0 17.846 347a17.073 17.073 0 0 0-.002-34.145Z",
54
+ fill: "#10162F"
55
+ }), /*#__PURE__*/_jsx("path", {
56
+ d: "M23.66 325.313a1.744 1.744 0 1 0-.001-3.488 1.744 1.744 0 0 0 0 3.488Z",
57
+ fill: "#FFFAE5"
58
+ }), /*#__PURE__*/_jsx("path", {
59
+ d: "M23.658 322.08a1.487 1.487 0 0 1 1.461 1.78 1.489 1.489 0 1 1-1.461-1.78Zm0-.518a2.007 2.007 0 1 0-.01 4.014 2.007 2.007 0 0 0 .01-4.014Z",
60
+ fill: "#10162F"
61
+ }), /*#__PURE__*/_jsx("path", {
62
+ d: "M12.03 325.313a1.744 1.744 0 1 0-.001-3.488 1.744 1.744 0 0 0 0 3.488Z",
63
+ fill: "#FFFAE5"
64
+ }), /*#__PURE__*/_jsx("path", {
65
+ d: "M12.019 322.08a1.49 1.49 0 1 1 .012 2.98 1.49 1.49 0 0 1-.012-2.98Zm0-.518a2.005 2.005 0 0 0-1.854 1.239 2.009 2.009 0 0 0 3.523 1.884 2.007 2.007 0 0 0-1.669-3.123Z",
66
+ fill: "#10162F"
67
+ }), /*#__PURE__*/_jsx("path", {
68
+ d: "M26.261 338.298c0-3.58-3.766-7.615-8.417-7.615-5.174 0-8.417 4.035-8.417 7.615",
69
+ fill: "#FFFAE5"
70
+ }), /*#__PURE__*/_jsx("path", {
71
+ d: "M26.261 338.298c0-3.58-3.766-7.615-8.417-7.615-5.174 0-8.417 4.035-8.417 7.615",
72
+ stroke: "#10162F",
73
+ strokeWidth: ".517",
74
+ strokeMiterlimit: "10"
75
+ }), /*#__PURE__*/_jsx("path", {
76
+ d: "M54.51 346.752a16.82 16.82 0 1 1 16.818-16.819 16.834 16.834 0 0 1-16.819 16.819Z",
77
+ fill: "#FFFAE5"
78
+ }), /*#__PURE__*/_jsx("path", {
79
+ d: "M54.508 313.373a16.556 16.556 0 1 1 0 33.112 16.556 16.556 0 0 1 0-33.112Zm0-.518A17.072 17.072 0 1 0 54.51 347a17.072 17.072 0 0 0-.002-34.145Z",
80
+ fill: "#10162F"
81
+ }), /*#__PURE__*/_jsx("path", {
82
+ d: "M60.318 325.313a1.744 1.744 0 1 0-.001-3.488 1.744 1.744 0 0 0 0 3.488Z",
83
+ fill: "#FFFAE5"
84
+ }), /*#__PURE__*/_jsx("path", {
85
+ d: "M60.317 322.08a1.49 1.49 0 1 1 .012 2.98 1.49 1.49 0 0 1-.012-2.98Zm0-.518a2.004 2.004 0 0 0-1.855 1.239 2.008 2.008 0 1 0 1.855-1.239Z",
86
+ fill: "#10162F"
87
+ }), /*#__PURE__*/_jsx("path", {
88
+ d: "M48.692 325.313a1.744 1.744 0 1 0-.001-3.488 1.744 1.744 0 0 0 0 3.488Z",
89
+ fill: "#FFFAE5"
90
+ }), /*#__PURE__*/_jsx("path", {
91
+ d: "M48.692 322.08a1.49 1.49 0 1 1 .012 2.98 1.49 1.49 0 0 1-.012-2.98Zm0-.518a2.005 2.005 0 0 0-1.855 1.239 2.01 2.01 0 0 0 1.463 2.737 2.002 2.002 0 0 0 2.06-.853 2.007 2.007 0 0 0-1.668-3.123Z",
92
+ fill: "#10162F"
93
+ }), /*#__PURE__*/_jsx("path", {
94
+ d: "M62.816 334.599H46.194",
95
+ stroke: "#10162F",
96
+ strokeWidth: ".517",
97
+ strokeMiterlimit: "10"
98
+ }), /*#__PURE__*/_jsx("path", {
99
+ d: "m93.599 285.033-50.7-25.35-.548-179.052a51.217 51.217 0 0 1 51.216-51.217l.032 255.619Z",
100
+ fill: "#FFFAE5"
101
+ }), /*#__PURE__*/_jsx("path", {
102
+ d: "M93 29H77v217h16V29Z",
103
+ fill: "url(#a)"
104
+ }), /*#__PURE__*/_jsx("path", {
105
+ d: "m93.599 285.033-50.7-25.35-.548-179.052a51.217 51.217 0 0 1 51.216-51.217l.032 255.619Z",
106
+ stroke: "#10162F",
107
+ strokeWidth: ".517",
108
+ strokeMiterlimit: "10"
109
+ }), /*#__PURE__*/_jsx("path", {
110
+ d: "M267.69 29.403H93.6v204.945h174.09V29.403Z",
111
+ fill: "#FFD300",
112
+ stroke: "#10162F",
113
+ strokeWidth: ".517",
114
+ strokeMiterlimit: "10"
115
+ }), /*#__PURE__*/_jsx("path", {
116
+ d: "M67.705 234.344H267.69v50.699H67.705a25.35 25.35 0 0 1 0-50.699Z",
117
+ fill: "#fff",
118
+ stroke: "#10162F",
119
+ strokeWidth: ".517",
120
+ strokeMiterlimit: "10"
121
+ }), /*#__PURE__*/_jsx("path", {
122
+ d: "M267.414 246.465H45.392M267.415 259.688H42.635M267.689 272.911H45.666",
123
+ stroke: "#10162F",
124
+ strokeWidth: ".517",
125
+ strokeMiterlimit: "10"
126
+ }), /*#__PURE__*/_jsx("path", {
127
+ d: "M249.784 47.583h-138.28v84.291h138.28V47.583Z",
128
+ fill: "#FFFAE5"
129
+ }), /*#__PURE__*/_jsx("path", {
130
+ d: "M113.573 131.874h-2.069v-2.07",
131
+ stroke: "#10162F",
132
+ strokeWidth: ".517",
133
+ strokeMiterlimit: "10"
134
+ }), /*#__PURE__*/_jsx("path", {
135
+ d: "M111.504 125.588v-73.83",
136
+ stroke: "#10162F",
137
+ strokeWidth: ".517",
138
+ strokeMiterlimit: "10",
139
+ strokeDasharray: "4.22 4.22"
140
+ }), /*#__PURE__*/_jsx("path", {
141
+ d: "M111.504 49.652v-2.069h2.069",
142
+ stroke: "#10162F",
143
+ strokeWidth: ".517",
144
+ strokeMiterlimit: "10"
145
+ }), /*#__PURE__*/_jsx("path", {
146
+ d: "M117.634 47.583h128.047",
147
+ stroke: "#10162F",
148
+ strokeWidth: ".517",
149
+ strokeMiterlimit: "10",
150
+ strokeDasharray: "4.07 4.07"
151
+ }), /*#__PURE__*/_jsx("path", {
152
+ d: "M247.714 47.583h2.069v2.07",
153
+ stroke: "#10162F",
154
+ strokeWidth: ".517",
155
+ strokeMiterlimit: "10"
156
+ }), /*#__PURE__*/_jsx("path", {
157
+ d: "M249.783 53.869v73.824",
158
+ stroke: "#10162F",
159
+ strokeWidth: ".517",
160
+ strokeMiterlimit: "10",
161
+ strokeDasharray: "4.22 4.22"
162
+ }), /*#__PURE__*/_jsx("path", {
163
+ d: "M249.783 129.804v2.07h-2.069",
164
+ stroke: "#10162F",
165
+ strokeWidth: ".517",
166
+ strokeMiterlimit: "10"
167
+ }), /*#__PURE__*/_jsx("path", {
168
+ d: "M243.649 131.874H115.606",
169
+ stroke: "#10162F",
170
+ strokeWidth: ".517",
171
+ strokeMiterlimit: "10",
172
+ strokeDasharray: "4.07 4.07"
173
+ }), /*#__PURE__*/_jsx("path", {
174
+ d: "M105.719 15.078h16.529a6.61 6.61 0 0 1 6.612 6.612v7.714H99.107V21.69a6.611 6.611 0 0 1 6.612-6.612ZM173.481 278.98h-33.716a10.9 10.9 0 0 1-7.715-3.196 10.905 10.905 0 0 1-3.195-7.715v-33.725H99.107v44.636a29.752 29.752 0 0 0 8.711 21.038 29.758 29.758 0 0 0 21.037 8.714h44.626l-16.555-14.873 16.555-14.879ZM450.378 112.039H288.403v218.168h161.975V112.039Z",
175
+ fill: "#10162F",
176
+ stroke: "#10162F",
177
+ strokeWidth: ".517",
178
+ strokeMiterlimit: "10"
179
+ }), /*#__PURE__*/_jsx("path", {
180
+ d: "M461.397 101.019H299.422v218.169h161.975V101.019Z",
181
+ fill: "#fff",
182
+ stroke: "#10162F",
183
+ strokeWidth: ".517",
184
+ strokeMiterlimit: "10"
185
+ }), /*#__PURE__*/_jsx("path", {
186
+ d: "M408.913 112.592h89.671l15.644-.176-15.644-19.643V54.38h-89.671v58.211Z",
187
+ fill: "#FFD300",
188
+ stroke: "#10162F",
189
+ strokeWidth: ".517",
190
+ strokeMiterlimit: "10"
191
+ }), /*#__PURE__*/_jsx("path", {
192
+ d: "M468.133 74.397c0 9.038-11.47 8.07-11.47 15.178v1.17h-7.413c-.047-.714-.047-1.377-.047-2.034 0-8.794 11.113-8.277 11.113-13.968 0-2.333-2.028-3.957-5.381-3.957-4.107 0-6.647 2.793-6.647 6.958h-7.31c0-8.024 6.037-12.794 14.061-12.794 6.699.005 13.094 3 13.094 9.447Zm-19.845 28.019v-9.033h9.441v9.033h-9.441Z",
193
+ fill: "#FFFAE5",
194
+ stroke: "#10162F",
195
+ strokeWidth: ".517"
196
+ }), /*#__PURE__*/_jsx("path", {
197
+ d: "M387.517 5.9h-89.676L287.799.713l-5.603 5.365 15.645 19.643v38.387h89.676l5.51-5.551-5.51-52.655Z",
198
+ fill: "#FFD300",
199
+ stroke: "#10162F",
200
+ strokeWidth: ".517",
201
+ strokeMiterlimit: "10"
202
+ }), /*#__PURE__*/_jsx("path", {
203
+ d: "M393.027.391H303.35l-15.644.176L303.35 20.21v38.392h89.677V.392Z",
204
+ fill: "#fff",
205
+ stroke: "#10162F",
206
+ strokeWidth: ".517",
207
+ strokeMiterlimit: "10"
208
+ }), /*#__PURE__*/_jsx("path", {
209
+ d: "m346.015 136.928-17.724 17.724-9.261-9.26",
210
+ fill: "#fff"
211
+ }), /*#__PURE__*/_jsx("path", {
212
+ d: "m346.015 136.928-17.724 17.724-9.261-9.26",
213
+ stroke: "#10162F",
214
+ strokeWidth: ".517",
215
+ strokeMiterlimit: "10"
216
+ }), /*#__PURE__*/_jsx("path", {
217
+ d: "M441.785 138.77h-81.538v14.035h81.538V138.77Z",
218
+ fill: "url(#b)"
219
+ }), /*#__PURE__*/_jsx("path", {
220
+ d: "m346.015 179.35-17.724 17.724-9.261-9.26",
221
+ fill: "#fff"
222
+ }), /*#__PURE__*/_jsx("path", {
223
+ d: "m346.015 179.35-17.724 17.724-9.261-9.26",
224
+ stroke: "#10162F",
225
+ strokeWidth: ".517",
226
+ strokeMiterlimit: "10"
227
+ }), /*#__PURE__*/_jsx("path", {
228
+ d: "M441.785 181.192h-81.538v14.035h81.538v-14.035Z",
229
+ fill: "url(#c)"
230
+ }), /*#__PURE__*/_jsx("path", {
231
+ d: "m346.015 221.772-17.724 17.724-9.261-9.26",
232
+ fill: "#fff"
233
+ }), /*#__PURE__*/_jsx("path", {
234
+ d: "m346.015 221.772-17.724 17.724-9.261-9.26",
235
+ stroke: "#10162F",
236
+ strokeWidth: ".517",
237
+ strokeMiterlimit: "10"
238
+ }), /*#__PURE__*/_jsx("path", {
239
+ d: "M441.785 223.614h-81.538v14.035h81.538v-14.035Z",
240
+ fill: "url(#d)"
241
+ }), /*#__PURE__*/_jsx("path", {
242
+ d: "m346.015 264.189-17.724 17.729-9.261-9.26",
243
+ fill: "#fff"
244
+ }), /*#__PURE__*/_jsx("path", {
245
+ d: "m346.015 264.189-17.724 17.729-9.261-9.26",
246
+ stroke: "#10162F",
247
+ strokeWidth: ".517",
248
+ strokeMiterlimit: "10"
249
+ }), /*#__PURE__*/_jsx("path", {
250
+ d: "M441.785 266.036h-81.538v14.036h81.538v-14.036Z",
251
+ fill: "url(#e)"
252
+ }), /*#__PURE__*/_jsx("path", {
253
+ d: "m244.498 180.015-2.806 2.806 126.335 126.334 2.806-2.805-126.335-126.335ZM247.306 177.203l-2.804 2.809 126.335 126.335 2.809-2.804 2.804-2.809-126.335-126.335-2.809 2.804ZM252.92 171.591l-2.806 2.805 126.335 126.335 2.806-2.806L252.92 171.591Z",
254
+ fill: "#FFD300",
255
+ stroke: "#10162F",
256
+ strokeWidth: ".517",
257
+ strokeMiterlimit: "10"
258
+ }), /*#__PURE__*/_jsx("path", {
259
+ d: "M231.557 161.476a10.026 10.026 0 0 1-2.633 1.888l12.794 19.458 5.028-.59.585-5.029 5.028-.584.59-5.029-19.509-12.773a10.086 10.086 0 0 1-1.883 2.659Z",
260
+ fill: "#FFFAE5",
261
+ stroke: "#10162F",
262
+ strokeWidth: ".517",
263
+ strokeMiterlimit: "10"
264
+ }), /*#__PURE__*/_jsx("path", {
265
+ d: "m233.441 158.817-13.228-8.686 8.691 13.233a9.985 9.985 0 0 0 4.537-4.547Z",
266
+ fill: "#10162F",
267
+ stroke: "#10162F",
268
+ strokeWidth: ".517",
269
+ strokeMiterlimit: "10"
270
+ }), /*#__PURE__*/_jsx("path", {
271
+ d: "m368.027 309.155 11.209-11.209 15.364 15.365a7.922 7.922 0 0 1 0 11.208 7.922 7.922 0 0 1-11.208 0l-15.365-15.364Z",
272
+ fill: "#FFFAE5",
273
+ stroke: "#10162F",
274
+ strokeWidth: ".517",
275
+ strokeMiterlimit: "10"
276
+ }), /*#__PURE__*/_jsx("path", {
277
+ d: "m370.222 311.35 11.211-11.211M371.562 312.447l11.211-11.211",
278
+ stroke: "#10162F",
279
+ strokeWidth: ".517",
280
+ strokeMiterlimit: "10"
281
+ }), /*#__PURE__*/_jsx("path", {
282
+ d: "M369.228 34.19a4.511 4.511 0 1 0 0-9.023 4.511 4.511 0 0 0 0 9.022ZM348.4 34.19a4.511 4.511 0 1 0 0-9.023 4.511 4.511 0 0 0 0 9.022ZM327.571 34.19a4.511 4.511 0 1 0 0-9.023 4.511 4.511 0 0 0 0 9.022Z",
283
+ fill: "#FFD300",
284
+ stroke: "#10162F",
285
+ strokeWidth: ".517",
286
+ strokeMiterlimit: "10"
287
+ }), /*#__PURE__*/_jsx("path", {
288
+ d: "M243.178 54.195H118.115v71.067h125.063V54.195Z",
289
+ fill: "#fff",
290
+ stroke: "#10162F",
291
+ strokeWidth: ".517",
292
+ strokeMiterlimit: "10"
293
+ }), /*#__PURE__*/_jsxs("defs", {
294
+ children: [/*#__PURE__*/_jsx("pattern", {
295
+ id: "a",
296
+ patternContentUnits: "objectBoundingBox",
297
+ width: ".259",
298
+ height: ".019",
299
+ children: /*#__PURE__*/_jsx("use", {
300
+ xlinkHref: "#f",
301
+ transform: "scale(.03233 .00238)"
302
+ })
303
+ }), /*#__PURE__*/_jsx("pattern", {
304
+ id: "b",
305
+ patternContentUnits: "objectBoundingBox",
306
+ width: ".406",
307
+ height: "2.359",
308
+ children: /*#__PURE__*/_jsx("use", {
309
+ xlinkHref: "#g",
310
+ transform: "scale(.00634 .03686)"
311
+ })
312
+ }), /*#__PURE__*/_jsx("pattern", {
313
+ id: "c",
314
+ patternContentUnits: "objectBoundingBox",
315
+ width: ".406",
316
+ height: "2.359",
317
+ children: /*#__PURE__*/_jsx("use", {
318
+ xlinkHref: "#g",
319
+ transform: "scale(.00634 .03686)"
320
+ })
321
+ }), /*#__PURE__*/_jsx("pattern", {
322
+ id: "d",
323
+ patternContentUnits: "objectBoundingBox",
324
+ width: ".406",
325
+ height: "2.359",
326
+ children: /*#__PURE__*/_jsx("use", {
327
+ xlinkHref: "#g",
328
+ transform: "scale(.00634 .03686)"
329
+ })
330
+ }), /*#__PURE__*/_jsx("pattern", {
331
+ id: "e",
332
+ patternContentUnits: "objectBoundingBox",
333
+ width: ".406",
334
+ height: "2.359",
335
+ children: /*#__PURE__*/_jsx("use", {
336
+ xlinkHref: "#g",
337
+ transform: "scale(.00634 .03686)"
338
+ })
339
+ }), /*#__PURE__*/_jsx("image", {
340
+ id: "f",
341
+ width: "8",
342
+ height: "8",
343
+ xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAeSURBVHgBzc4xAQAAAAEwEVxq6J+OGCzBQDk4MzgV8D0CqU26KA8AAAAASUVORK5CYII="
344
+ }), /*#__PURE__*/_jsx("image", {
345
+ id: "g",
346
+ width: "64",
347
+ height: "64",
348
+ xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADbSURBVHgB7ZZBCsJQEMXGG7jyGt7/ctUKrlUGw7zfRnAVmtfALFrX2/1RH35H5zU5Hs2Np+Tp3HhKns6Np+Tp3O+AwXEvI5UbT8nTufGUPJ0bT8kX4DU57mWkcuMpeTo3npKnc+Mp+QK8Jse9jFRuPCVP58ZT8nRuPCVfgNfkuJeRyo2n5OnceEqezo2n5OF8Z5ei5On8Fb//t9bDq3PjjQfk6dx44wF5Ov8Wf+jvgF/iD3sZxhvf48ZXc3yaG298n1d3fJr/I37ZyzDeeIYbX82Xo/mp4998o/gTA3q3EDFEskQAAAAASUVORK5CYII="
349
+ })]
350
+ })]
351
+ });
352
+ };
package/dist/Target.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 Target: React.FC<IllustrationProps>;