@codecademy/gamut-illustrations 1.0.0-alpha.f6cb5a.0 → 67.0.0-alpha.35c6c5.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/LICENSE +1 -1
- package/dist/Announcement.d.ts +3 -0
- package/dist/Announcement.js +157 -0
- package/dist/Bee.d.ts +1 -1
- package/dist/Bee.js +124 -112
- package/dist/Bell.d.ts +1 -1
- package/dist/Bell.js +36 -31
- package/dist/BinaryBlocks.d.ts +1 -1
- package/dist/BinaryBlocks.js +126 -116
- package/dist/BinaryStairs.d.ts +3 -0
- package/dist/BinaryStairs.js +81 -0
- package/dist/Blocks.d.ts +3 -0
- package/dist/Blocks.js +247 -0
- package/dist/Blueprint.d.ts +3 -0
- package/dist/Blueprint.js +94 -0
- package/dist/BlueprintWhite.d.ts +3 -0
- package/dist/BlueprintWhite.js +101 -0
- package/dist/BookAndNotepad.d.ts +3 -0
- package/dist/BookAndNotepad.js +96 -0
- package/dist/Browser.d.ts +1 -1
- package/dist/Browser.js +69 -61
- package/dist/BrowserLock.d.ts +1 -1
- package/dist/BrowserLock.js +36 -31
- package/dist/BrowserPuzzle.d.ts +1 -1
- package/dist/BrowserPuzzle.js +61 -54
- package/dist/ChatBox.d.ts +1 -1
- package/dist/ChatBox.js +36 -31
- package/dist/CodeCelebration.d.ts +3 -0
- package/dist/CodeCelebration.js +158 -0
- package/dist/Coffee.d.ts +3 -0
- package/dist/Coffee.js +63 -0
- package/dist/Confetti.d.ts +1 -1
- package/dist/Confetti.js +87 -79
- package/dist/EmailAt.d.ts +1 -1
- package/dist/EmailAt.js +30 -25
- package/dist/Envelope.d.ts +1 -1
- package/dist/Envelope.js +30 -25
- package/dist/ErrorWindow.d.ts +3 -0
- package/dist/ErrorWindow.js +128 -0
- package/dist/Heart.d.ts +1 -1
- package/dist/Heart.js +24 -19
- package/dist/Hills.d.ts +1 -1
- package/dist/Hills.js +45 -38
- package/dist/HomeOffice.d.ts +1 -1
- package/dist/HomeOffice.js +110 -99
- package/dist/Interest.d.ts +3 -0
- package/dist/Interest.js +382 -0
- package/dist/Keyhole.d.ts +1 -1
- package/dist/Keyhole.js +24 -19
- package/dist/Knowledge.d.ts +3 -0
- package/dist/Knowledge.js +308 -0
- package/dist/LightBulbAndGears.d.ts +3 -0
- package/dist/LightBulbAndGears.js +356 -0
- package/dist/MagnifyingGlass.d.ts +3 -0
- package/dist/MagnifyingGlass.js +67 -0
- package/dist/Maze.d.ts +1 -1
- package/dist/Maze.js +61 -58
- package/dist/Megaphone.d.ts +1 -1
- package/dist/Megaphone.js +42 -37
- package/dist/MobilePhone.d.ts +3 -0
- package/dist/MobilePhone.js +96 -0
- package/dist/New.d.ts +1 -1
- package/dist/New.js +54 -49
- package/dist/NumberBlocks.d.ts +1 -1
- package/dist/NumberBlocks.js +273 -252
- package/dist/Onboarding.d.ts +1 -1
- package/dist/Onboarding.js +314 -253
- package/dist/Plant.d.ts +1 -1
- package/dist/Plant.js +62 -55
- package/dist/PortfolioProject.d.ts +1 -1
- package/dist/PortfolioProject.js +29 -26
- package/dist/PracticeProject.d.ts +1 -1
- package/dist/PracticeProject.js +37 -34
- package/dist/PracticeTarget.d.ts +3 -0
- package/dist/PracticeTarget.js +78 -0
- package/dist/Purpose.d.ts +3 -0
- package/dist/Purpose.js +136 -0
- package/dist/Puzzle.d.ts +3 -0
- package/dist/Puzzle.js +159 -0
- package/dist/Python.d.ts +1 -1
- package/dist/Python.js +16 -11
- package/dist/Sun.d.ts +1 -1
- package/dist/Sun.js +111 -103
- package/dist/Syllabus.d.ts +3 -0
- package/dist/Syllabus.js +352 -0
- package/dist/Target.d.ts +1 -1
- package/dist/Target.js +37 -32
- package/dist/TinyBlocks.d.ts +3 -0
- package/dist/TinyBlocks.js +22 -0
- package/dist/Warning.d.ts +3 -0
- package/dist/Warning.js +101 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +21 -1
- package/dist/types.js +1 -0
- package/package.json +9 -11
- package/CHANGELOG.md +0 -1271
- package/babel.config.js +0 -15
- package/dist/__tests__/gamut-illustrations.test.js +0 -32
- package/jest.config.js +0 -1
- package/tsconfig.json +0 -7
package/dist/Puzzle.js
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
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 Puzzle = function Puzzle(_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
|
+
viewBox: "0 0 310 249",
|
|
15
|
+
fill: "none",
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
18
|
+
children: "Puzzle Illustration"
|
|
19
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
20
|
+
d: "m100.359 26.475-.054 22.318c0-2.844-1.85-5.743-5.606-7.877-1.96-1.148-4.3-2.078-6.803-2.79l.054-22.318c2.504.657 4.844 1.641 6.803 2.79 3.701 2.134 5.606 5.033 5.606 7.877ZM177.261 19.747l-.055 22.318c0 2.845-1.85 5.634-5.551 7.768-1.959 1.148-4.3 2.078-6.803 2.79l.054-22.319c2.504-.656 4.844-1.64 6.803-2.79 3.701-2.133 5.552-4.977 5.552-7.767Z",
|
|
21
|
+
fill: "#10162F",
|
|
22
|
+
stroke: "#10162F",
|
|
23
|
+
strokeWidth: 1.641,
|
|
24
|
+
strokeMiterlimit: 10
|
|
25
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
26
|
+
d: "m191.084 45.456-.054 22.264-25.961 15.207.055-22.318 25.96-15.153Z",
|
|
27
|
+
fill: "#F5FFE3",
|
|
28
|
+
stroke: "#10162F",
|
|
29
|
+
strokeWidth: 1.641,
|
|
30
|
+
strokeMiterlimit: 10
|
|
31
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "m63.241 60.609-.054 22.318L37.063 67.72l.055-22.264L63.24 60.61Z",
|
|
33
|
+
fill: "#fff",
|
|
34
|
+
stroke: "#10162F",
|
|
35
|
+
strokeWidth: 1.641,
|
|
36
|
+
strokeMiterlimit: 10
|
|
37
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
38
|
+
d: "m100.576 64.547-.054 22.318c0-2.844-1.85-5.743-5.606-7.877-7.456-4.321-19.538-4.321-26.94 0-1.959 1.15-3.592 2.517-4.734 3.939l.054-22.318c1.143-1.477 2.776-2.79 4.735-3.939 7.401-4.321 19.484-4.321 26.94 0 3.7 2.188 5.605 5.033 5.605 7.877Z",
|
|
39
|
+
fill: "#F5FFE3",
|
|
40
|
+
stroke: "#10162F",
|
|
41
|
+
strokeWidth: 1.641,
|
|
42
|
+
strokeMiterlimit: 10
|
|
43
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
44
|
+
d: "m177.532 71.275-.054 22.319c0 2.844-1.851 5.634-5.551 7.767-7.402 4.321-19.484 4.321-26.94 0-1.96-1.149-3.592-2.516-4.79-3.938l.055-22.319c1.197 1.477 2.83 2.79 4.789 3.939 7.456 4.321 19.538 4.321 26.94 0 3.701-2.133 5.551-4.978 5.551-7.768Z",
|
|
45
|
+
fill: "#fff",
|
|
46
|
+
stroke: "#10162F",
|
|
47
|
+
strokeWidth: 1.641,
|
|
48
|
+
strokeMiterlimit: 10
|
|
49
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
50
|
+
d: "m140.306 75.105-.054 22.318-25.961 15.152.055-22.318 25.96-15.153Z",
|
|
51
|
+
fill: "#F5FFE3",
|
|
52
|
+
stroke: "#10162F",
|
|
53
|
+
strokeWidth: 1.641,
|
|
54
|
+
strokeMiterlimit: 10
|
|
55
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
56
|
+
d: "M171.654 11.87c7.457 4.321 7.511 11.378.109 15.699-1.959 1.149-4.299 2.079-6.803 2.79l26.124 15.152-25.96 15.152c2.503.657 4.843 1.641 6.803 2.79 7.456 4.321 7.51 11.378.108 15.7-7.401 4.32-19.483 4.32-26.94 0-1.959-1.15-3.592-2.517-4.789-3.94l-25.96 15.153-26.124-15.152c2.504-.657 4.844-1.641 6.803-2.79 7.402-4.321 7.402-11.378-.109-15.7-7.51-4.32-19.538-4.32-26.94 0-1.959 1.15-3.592 2.517-4.734 3.94L37.118 45.51l25.96-15.152c1.198 1.477 2.83 2.79 4.79 3.938 7.456 4.322 19.538 4.322 26.94 0 7.401-4.321 7.401-11.378-.11-15.699-1.959-1.149-4.299-2.079-6.802-2.79L113.856.656l26.124 15.152c1.142-1.477 2.775-2.79 4.734-3.938 7.402-4.376 19.484-4.376 26.94 0Z",
|
|
57
|
+
fill: "#AEE938",
|
|
58
|
+
stroke: "#10162F",
|
|
59
|
+
strokeWidth: 1.641,
|
|
60
|
+
strokeMiterlimit: 10
|
|
61
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
62
|
+
d: "m114.346 90.257-.054 22.318-26.124-15.152.055-22.319 26.123 15.153Z",
|
|
63
|
+
fill: "#fff",
|
|
64
|
+
stroke: "#10162F",
|
|
65
|
+
strokeWidth: 1.641,
|
|
66
|
+
strokeMiterlimit: 10
|
|
67
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
68
|
+
d: "m245.454 139.378.054-22.318c0-2.844 1.851-5.634 5.552-7.767 1.959-1.149 4.299-2.079 6.803-2.79l-.055 22.318c-2.503.656-4.844 1.641-6.803 2.79-3.701 2.133-5.551 4.923-5.551 7.767ZM218.188 117.17l-.055 22.318c0-2.844-1.85-5.744-5.606-7.877-1.959-1.149-4.299-2.079-6.803-2.79l.055-22.318c2.503.657 4.844 1.641 6.803 2.79 3.755 2.188 5.606 5.032 5.606 7.877ZM141.177 110.442l-.054 22.318c0 2.844-1.851 5.634-5.551 7.767-1.96 1.149-4.3 2.079-6.803 2.79l.054-22.318c2.503-.656 4.844-1.641 6.803-2.79 3.701-2.133 5.551-4.923 5.551-7.767ZM14.532 132.65l.054-22.318c0 2.844 1.85 5.744 5.606 7.877 1.96 1.149 4.3 2.079 6.803 2.79l-.054 22.318c-2.504-.657-4.844-1.641-6.803-2.79-3.756-2.133-5.606-5.032-5.606-7.877Z",
|
|
69
|
+
fill: "#10162F",
|
|
70
|
+
stroke: "#10162F",
|
|
71
|
+
strokeWidth: 1.641,
|
|
72
|
+
strokeMiterlimit: 10
|
|
73
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
74
|
+
d: "m308.912 136.151-.054 22.318-25.96 15.152.109-22.318 25.905-15.152ZM180.798 151.139l-.055 22.263-25.797-14.933.054-22.318 25.798 14.988ZM129.258 151.194l-.054 22.318c-1.143-1.313-2.612-2.516-4.408-3.501-7.456-4.321-19.539-4.321-26.94 0l.054-22.318c7.402-4.321 19.484-4.321 26.94 0 1.742 1.039 3.266 2.243 4.408 3.501Z",
|
|
75
|
+
fill: "#fff",
|
|
76
|
+
stroke: "#10162F",
|
|
77
|
+
strokeWidth: 1.641,
|
|
78
|
+
strokeMiterlimit: 10
|
|
79
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
80
|
+
d: "m155.001 136.151-.055 22.318-25.742 15.043.054-22.318 25.743-15.043ZM27.213 151.358l-.109 22.263L.981 158.469l.109-22.318 26.123 15.207ZM180.798 151.139l-.055 22.319c-2.503.656-4.843 1.641-6.803 2.789l.055-22.318c1.959-1.149 4.299-2.133 6.803-2.79Z",
|
|
81
|
+
fill: "#fff",
|
|
82
|
+
stroke: "#10162F",
|
|
83
|
+
strokeWidth: 1.641,
|
|
84
|
+
strokeMiterlimit: 10
|
|
85
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
86
|
+
d: "m64.493 155.296-.054 22.319c0-2.845-1.85-5.744-5.606-7.877-7.456-4.322-19.538-4.322-26.94 0-1.96 1.148-3.538 2.516-4.735 3.938l.055-22.318c1.142-1.477 2.775-2.79 4.735-3.938 7.401-4.322 19.483-4.322 26.94 0 3.7 2.133 5.605 4.977 5.605 7.876ZM92.304 177.779l.054-22.319c0-2.844 1.85-5.634 5.552-7.767l-.055 22.318c-3.7 2.133-5.551 4.978-5.551 7.768ZM168.389 183.96l.054-22.318c0-2.845 1.851-5.634 5.552-7.768l-.055 22.318c-3.701 2.134-5.551 4.978-5.551 7.768Z",
|
|
87
|
+
fill: "#fff",
|
|
88
|
+
stroke: "#10162F",
|
|
89
|
+
strokeWidth: 1.641,
|
|
90
|
+
strokeMiterlimit: 10
|
|
91
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
92
|
+
d: "M97.91 185.656c-3.756-2.188-5.606-5.033-5.606-7.877l.054-22.318c0 2.844 1.85 5.743 5.606 7.877 0 7.494 0 14.933-.054 22.318ZM104.005 188.227c-2.231-.657-4.3-1.532-6.04-2.571 0-7.44.053-14.879.053-22.318 1.742 1.039 3.81 1.914 6.042 2.571-.055 6.728-.055 15.644-.055 22.318ZM205.778 165.635l-.054 22.318c-1.143 1.477-2.776 2.79-4.735 3.939l.054-22.318c1.96-1.149 3.538-2.462 4.735-3.939ZM295.415 161.97l-.054 22.318c0 2.845-1.851 5.634-5.552 7.768-7.401 4.321-19.484 4.321-26.94 0-1.959-1.149-3.592-2.517-4.789-3.939l.054-22.318c1.198 1.477 2.831 2.79 4.79 3.939 7.456 4.321 19.538 4.321 26.94 0 3.701-2.134 5.551-4.924 5.551-7.768ZM168.389 183.96l.054-22.318c0 2.845 1.851 5.744 5.606 7.877 7.456 4.321 19.538 4.321 26.94 0l-.054 22.318c-7.402 4.322-19.484 4.322-26.94 0-3.701-2.133-5.606-4.978-5.606-7.877Z",
|
|
93
|
+
fill: "#fff",
|
|
94
|
+
stroke: "#10162F",
|
|
95
|
+
strokeWidth: 1.641,
|
|
96
|
+
strokeMiterlimit: 10
|
|
97
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
98
|
+
d: "m258.189 165.799-.109 22.318-25.906 15.152.054-22.263 25.961-15.207Z",
|
|
99
|
+
fill: "#fff",
|
|
100
|
+
stroke: "#10162F",
|
|
101
|
+
strokeWidth: 1.641,
|
|
102
|
+
strokeMiterlimit: 10
|
|
103
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
104
|
+
d: "m308.912 136.151-25.96 15.152c2.503.657 4.843 1.641 6.803 2.79 7.456 4.322 7.51 11.378.109 15.699-7.402 4.322-19.484 4.322-26.94 0-1.96-1.148-3.592-2.516-4.79-3.938l-25.96 15.152-26.45-15.371c-1.143 1.477-2.776 2.79-4.735 3.939-7.402 4.321-19.484 4.321-26.94 0-7.456-4.322-7.511-11.378-.109-15.7 1.959-1.148 4.3-2.078 6.803-2.789l-25.797-14.934 25.96-15.152c1.198 1.477 2.83 2.79 4.79 3.938 7.456 4.322 19.538 4.322 26.94 0 7.401-4.321 7.401-11.377-.109-15.699-1.959-1.149-4.3-2.078-6.803-2.79l25.96-15.152 26.124 15.152c-2.504.657-4.844 1.641-6.803 2.79-7.402 4.322-7.402 11.378.109 15.699 7.456 4.322 19.538 4.322 26.939 0 1.96-1.148 3.592-2.516 4.735-3.938l26.124 15.152Z",
|
|
105
|
+
fill: "#FFF0E5",
|
|
106
|
+
stroke: "#10162F",
|
|
107
|
+
strokeWidth: 1.641,
|
|
108
|
+
strokeMiterlimit: 10
|
|
109
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
110
|
+
d: "m232.229 181.006-.055 22.264-26.45-15.371.055-22.264 26.45 15.371Z",
|
|
111
|
+
fill: "#fff",
|
|
112
|
+
stroke: "#10162F",
|
|
113
|
+
strokeWidth: 1.641,
|
|
114
|
+
strokeMiterlimit: 10
|
|
115
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
116
|
+
d: "M135.571 102.564c7.456 4.322 7.511 11.378.109 15.7-1.959 1.148-4.299 2.078-6.803 2.789l26.124 15.153-25.743 15.042c-1.143-1.312-2.612-2.516-4.408-3.5-7.456-4.322-19.539-4.322-26.94 0-7.402 4.321-7.402 11.377.109 15.699 1.741 1.039 3.809 1.914 6.041 2.571l-25.743 15.043-26.124-15.153c2.504-.656 4.844-1.641 6.803-2.789 7.402-4.322 7.402-11.378-.108-15.7-7.456-4.321-19.539-4.321-26.94 0-1.96 1.149-3.538 2.517-4.735 3.939L1.089 136.206l25.96-15.153c-2.503-.656-4.843-1.641-6.803-2.789-7.456-4.322-7.51-11.378-.108-15.7 7.401-4.321 19.483-4.321 26.94 0 1.959 1.149 3.591 2.517 4.789 3.939l25.96-15.152 26.124 15.152c1.143-1.477 2.775-2.79 4.735-3.939 7.347-4.321 19.429-4.321 26.885 0Z",
|
|
117
|
+
fill: "#FFF0E5",
|
|
118
|
+
stroke: "#10162F",
|
|
119
|
+
strokeWidth: 1.641,
|
|
120
|
+
strokeMiterlimit: 10
|
|
121
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
122
|
+
d: "m78.263 181.006-.054 22.263-26.124-15.152.054-22.263 26.124 15.152Z",
|
|
123
|
+
fill: "#fff",
|
|
124
|
+
stroke: "#10162F",
|
|
125
|
+
strokeWidth: 1.641,
|
|
126
|
+
strokeMiterlimit: 10
|
|
127
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
128
|
+
d: "m104.06 165.963-.054 22.264-25.797 15.042.054-22.263 25.797-15.043Z",
|
|
129
|
+
fill: "#fff",
|
|
130
|
+
stroke: "#10162F",
|
|
131
|
+
strokeWidth: 1.641,
|
|
132
|
+
strokeMiterlimit: 10
|
|
133
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
134
|
+
d: "m103.625 195.666-.055 22.318-25.361-14.715.054-22.263 25.362 14.66ZM232.229 181.006l-.055 22.264-25.96 15.152.055-22.264 25.96-15.152ZM168.933 222.251l.055-22.318c0-2.845 1.85-5.635 5.551-7.768 7.402-4.321 19.484-4.321 26.94 0 1.959 1.149 3.592 2.516 4.789 3.939l-.054 22.318c-1.198-1.477-2.83-2.79-4.79-3.939-7.456-4.321-19.538-4.321-26.94 0-3.7 2.134-5.496 4.978-5.551 7.768Z",
|
|
135
|
+
fill: "#fff",
|
|
136
|
+
stroke: "#10162F",
|
|
137
|
+
strokeWidth: 1.641,
|
|
138
|
+
strokeMiterlimit: 10
|
|
139
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
140
|
+
d: "m91.216 228.541.054-22.318c0 2.845 1.85 5.744 5.606 7.877 7.456 4.322 19.538 4.322 26.94 0 1.959-1.148 3.592-2.516 4.735-3.993l-.055 22.318c-1.143 1.477-2.776 2.845-4.735 3.993-7.401 4.322-19.484 4.322-26.94 0-3.755-2.133-5.605-5.032-5.605-7.877ZM155.491 225.806l-.054 22.264-26.886-15.59.054-22.318 26.886 15.644Z",
|
|
141
|
+
fill: "#fff",
|
|
142
|
+
stroke: "#10162F",
|
|
143
|
+
strokeWidth: 1.641,
|
|
144
|
+
strokeMiterlimit: 10
|
|
145
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
146
|
+
d: "m181.451 210.654-.055 22.264-25.96 15.152.054-22.263 25.961-15.153Z",
|
|
147
|
+
fill: "#fff",
|
|
148
|
+
stroke: "#10162F",
|
|
149
|
+
strokeWidth: 1.641,
|
|
150
|
+
strokeMiterlimit: 10
|
|
151
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
152
|
+
d: "m232.228 181.006-25.96 15.152c-1.197-1.477-2.83-2.789-4.789-3.938-7.456-4.322-19.539-4.322-26.94 0-7.402 4.321-7.402 11.378.109 15.699 1.959 1.149 4.299 2.079 6.803 2.79l-25.961 15.152-26.885-15.59c-1.143 1.477-2.776 2.845-4.735 3.993-7.402 4.322-19.484 4.322-26.94 0-7.456-4.321-7.51-11.377-.109-15.699 1.96-1.149 4.3-2.078 6.803-2.79l-25.361-14.714 25.742-15.043c-2.231-.656-4.3-1.532-6.041-2.571-7.456-4.321-7.51-11.378-.109-15.699 7.402-4.322 19.484-4.322 26.94 0 1.742 1.039 3.266 2.243 4.408 3.501l25.743-15.043 25.797 14.933c-2.503.657-4.844 1.641-6.803 2.79-7.402 4.321-7.402 11.378.109 15.699 7.511 4.322 19.538 4.322 26.94 0 1.959-1.148 3.592-2.516 4.735-3.938l26.504 15.316Z",
|
|
153
|
+
fill: "#FFF0E5",
|
|
154
|
+
stroke: "#10162F",
|
|
155
|
+
strokeWidth: 1.641,
|
|
156
|
+
strokeMiterlimit: 10
|
|
157
|
+
})]
|
|
158
|
+
});
|
|
159
|
+
};
|
package/dist/Python.d.ts
CHANGED
package/dist/Python.js
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
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 Python = function Python(_ref) {
|
|
3
5
|
var ariaHidden = _ref['aria-hidden'],
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
return /*#__PURE__*/
|
|
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 80 80",
|
|
13
15
|
fill: "none",
|
|
14
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
18
|
+
children: "Python Illustration"
|
|
19
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
20
|
+
d: "M40 57.5h-.5v5h18V66s0 0 0 0c0 7.456-6.044 13.5-13.5 13.5h-8c-7.456 0-13.5-6.044-13.5-13.5v-5.972h0V54l.004-.292v-.004c.154-6.117 5.086-11.048 11.205-11.2h.003L34 42.5H36.794h-.001H46.005l.315-.003h.005c8.853-.171 15.999-7.315 16.172-16.169v-.004l.003-.32V22.5H66c7.456 0 13.5 6.044 13.5 13.5v8c0 7.456-6.044 13.5-13.5 13.5H40zm0-40H22.5V14C22.5 6.544 28.544.5 36 .5h8C51.456.5 57.5 6.544 57.5 14v12l-.004.293v.003c-.154 6.117-5.087 11.048-11.205 11.2h-.003L46 37.5H33.995l-.315.003h-.005c-8.853.171-15.999 7.315-16.172 16.169v.004l-.003.32V57.5H14C6.544 57.5.5 51.456.5 44v-8c0-7.456 6.044-13.5 13.5-13.5h26.5v-5H40zm8 49a3.5 3.5 0 100 7 3.5 3.5 0 000-7zm-17-60a3.5 3.5 0 100 7 3.5 3.5 0 000-7z",
|
|
21
|
+
fill: "#FFF2FF",
|
|
22
|
+
stroke: "#10162F"
|
|
23
|
+
})]
|
|
24
|
+
});
|
|
20
25
|
};
|
package/dist/Sun.d.ts
CHANGED
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
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
return /*#__PURE__*/
|
|
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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
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
|
};
|