nzk-react-components 1.1.8 → 1.1.10
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/dist/cjs/icons/ArrowLeftAlt.js +36 -0
- package/dist/cjs/icons/ArrowLeftAlt.js.map +1 -0
- package/dist/cjs/icons/ArrowRightAlt.js +37 -0
- package/dist/cjs/icons/ArrowRightAlt.js.map +1 -0
- package/dist/cjs/icons/Back.js +41 -0
- package/dist/cjs/icons/Back.js.map +1 -0
- package/dist/cjs/icons/Next.js +41 -0
- package/dist/cjs/icons/Next.js.map +1 -0
- package/dist/cjs/icons/No.js +38 -0
- package/dist/cjs/icons/No.js.map +1 -0
- package/dist/cjs/icons/Stats.js +42 -0
- package/dist/cjs/icons/Stats.js.map +1 -0
- package/dist/cjs/icons/Yes.js +40 -0
- package/dist/cjs/icons/Yes.js.map +1 -0
- package/dist/cjs/index.js +14 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/components/Icon/icons.d.ts +5 -0
- package/dist/esm/icons/ArrowLeftAlt.js +12 -0
- package/dist/esm/icons/ArrowLeftAlt.js.map +1 -0
- package/dist/esm/icons/ArrowRightAlt.js +13 -0
- package/dist/esm/icons/ArrowRightAlt.js.map +1 -0
- package/dist/esm/icons/Back.js +17 -0
- package/dist/esm/icons/Back.js.map +1 -0
- package/dist/esm/icons/Next.js +17 -0
- package/dist/esm/icons/Next.js.map +1 -0
- package/dist/esm/icons/No.js +14 -0
- package/dist/esm/icons/No.js.map +1 -0
- package/dist/esm/icons/Stats.js +18 -0
- package/dist/esm/icons/Stats.js.map +1 -0
- package/dist/esm/icons/Yes.js +16 -0
- package/dist/esm/icons/Yes.js.map +1 -0
- package/dist/esm/index.js +7 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/icons/ArrowLeftAlt.d.ts +3 -0
- package/dist/icons/ArrowRightAlt.d.ts +3 -0
- package/dist/icons/Back.d.ts +3 -0
- package/dist/icons/Next.d.ts +3 -0
- package/dist/icons/No.d.ts +3 -0
- package/dist/icons/Stats.d.ts +3 -0
- package/dist/icons/Yes.d.ts +3 -0
- package/dist/icons/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var tslib = require('tslib');
|
|
4
|
+
var React = require('react');
|
|
5
|
+
|
|
6
|
+
function _interopNamespace(e) {
|
|
7
|
+
if (e && e.__esModule) return e;
|
|
8
|
+
var n = Object.create(null);
|
|
9
|
+
if (e) {
|
|
10
|
+
Object.keys(e).forEach(function (k) {
|
|
11
|
+
if (k !== 'default') {
|
|
12
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
13
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return e[k];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n['default'] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var SvgArrowLeftAlt = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ "data-name": "Icon - Arrow - Left", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
|
|
29
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }),
|
|
30
|
+
React__namespace.createElement("path", { "data-name": "Path 5393", d: "M74.166 22.448a22.505 22.505 0 0 1 10.279 4.457c6.034 4.859 8.546 16.4 2.666 22.474a12.174 12.174 0 0 1-4.438 2.534L56.506 62.269l11.66 4.613c3.242 1.283 6.388 3.527 9.783 1.911 2.239-1.066 8.011-3.27 10.137-.941a5.171 5.171 0 0 1 1.015 2.068c2.167 7.258-.433 15.223-4.885 21.152-2.9 3.868-5.95 7.859-10.2 10.08-9.3 4.864-16.687-2-23.425-7.29-9.436-7.411-18.157-17.077-26.912-25.313-3.523-3.313-6.243-7.954-5.192-12.96a11.367 11.367 0 0 1 5.371-7.409c3.06-1.766 6.813-2.017 9.865-3.8a30.789 30.789 0 0 0 3.333-2.454 99.477 99.477 0 0 1 8.64-6.384c1.2-.739 2.552-1.2 3.818-1.831 4-1.983 7.048-6.315 10.837-8.832 3.882-2.579 8.97-3.249 13.817-2.436", fill: "#bebebe" }),
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 5394", d: "m78.945 80.187 7-13.316a3.359 3.359 0 0 1 2.14.981 5.173 5.173 0 0 1 1.015 2.067c2.167 7.259-.433 15.224-4.885 21.153-2.43 3.237-4.97 6.546-8.222 8.846a23.54 23.54 0 0 1-1.016.545 5.273 5.273 0 0 1-1.939.639c-2.007.142-3.521-1.889-3.495-3.751.029-2.153 1.839-3.463 3.128-4.93 2.9-3.3 4.228-8.341 6.274-12.234", fill: "#8b8b8b" }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 5395", d: "M57.787 47.4a40.649 40.649 0 0 1 7.44-3.486 41.8 41.8 0 0 1 7.624-2.6c3.795-.723 14.793.441 13.892 6.462a5.83 5.83 0 0 1-1.577 3.024 23.013 23.013 0 0 1-2.5 1.117l-26.16 10.351 4.136 1.632a8.752 8.752 0 0 1-2.548-.462 8.45 8.45 0 0 1-5.249-9.7 11.243 11.243 0 0 1 4.942-6.338", fill: "#8b8b8b" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 5396", d: "M19.708 53.233c.347-2.429 2.2-4.3 3.971-5.965q13.133-12.354 27.3-23.488c6.741-5.292 13.734-13.98 23.037-9.115 4.25 2.222 7.295 6.212 10.2 10.08 3.525 4.694 6.982 11.7 2.9 15.914a12.158 12.158 0 0 1-4.438 2.534L56.506 53.549 82.675 63.9a12.146 12.146 0 0 1 4.438 2.535c4.084 4.216.627 11.22-2.9 15.913-2.9 3.868-5.949 7.859-10.2 10.08-9.3 4.864-16.3-3.822-23.034-9.114Q36.828 72.2 23.679 59.829c-1.558-1.464-3.181-3.094-3.783-5.121a2.905 2.905 0 0 1-.188-1.475", fill: "#fff" }))); };
|
|
34
|
+
|
|
35
|
+
module.exports = SvgArrowLeftAlt;
|
|
36
|
+
//# sourceMappingURL=ArrowLeftAlt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowLeftAlt.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var tslib = require('tslib');
|
|
4
|
+
var React = require('react');
|
|
5
|
+
|
|
6
|
+
function _interopNamespace(e) {
|
|
7
|
+
if (e && e.__esModule) return e;
|
|
8
|
+
var n = Object.create(null);
|
|
9
|
+
if (e) {
|
|
10
|
+
Object.keys(e).forEach(function (k) {
|
|
11
|
+
if (k !== 'default') {
|
|
12
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
13
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return e[k];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n['default'] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var SvgArrowRightAlt = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
|
|
29
|
+
React__namespace.createElement("path", { "data-name": "Path 5397", d: "M98.134 67.41a11.205 11.205 0 0 0-1.676-3.91 14.17 14.17 0 0 0-3.516-4.408Q79.809 46.735 65.639 35.6C58.9 30.309 51.908 21.623 42.6 26.486c-4.249 2.222-7.3 6.213-10.2 10.081a29.1 29.1 0 0 0-3.624 6.2c-3.326 5.627-3.866 13.695.727 18.436a7.879 7.879 0 0 0 1.943 1.418 23.013 23.013 0 0 0 2.495 1.117l15.152 6-15.147 5.987a12.16 12.16 0 0 0-4.438 2.535 6.406 6.406 0 0 0-1.194 1.7 5.919 5.919 0 0 0-.794 1.775 18.461 18.461 0 0 0-.6 2.75 22.126 22.126 0 0 0 .945 9.681 29.217 29.217 0 0 0 3.723 7.587c.263.386.535.764.812 1.135.314.417.629.836.948 1.253l.6.777c.125.161.249.323.376.483.245.311.495.618.745.925l.236.286q.425.512.861 1.008l.094.105a22.63 22.63 0 0 0 6.338 5.243c9.3 4.863 16.687-2 23.425-7.291 9.436-7.41 18.158-17.076 26.913-25.312 3.523-3.313 6.243-7.954 5.192-12.96", opacity: 0.3 }),
|
|
30
|
+
React__namespace.createElement("path", { "data-name": "Path 5398", d: "M43.7 22.448a22.505 22.505 0 0 0-10.279 4.457c-6.034 4.859-8.546 16.4-2.666 22.474a12.174 12.174 0 0 0 4.438 2.534L61.36 62.269 49.7 66.882c-3.242 1.283-6.388 3.527-9.783 1.911-2.239-1.066-8.011-3.27-10.137-.941a5.171 5.171 0 0 0-1.015 2.068c-2.167 7.258.433 15.223 4.885 21.152 2.9 3.868 5.95 7.859 10.2 10.08 9.3 4.864 16.687-2 23.425-7.29 9.436-7.411 18.157-17.077 26.912-25.313 3.523-3.313 6.243-7.954 5.192-12.96a11.367 11.367 0 0 0-5.371-7.409c-3.06-1.766-6.813-2.017-9.865-3.8a30.79 30.79 0 0 1-3.333-2.454 99.476 99.476 0 0 0-8.64-6.384c-1.2-.739-2.552-1.2-3.818-1.831-4-1.983-7.048-6.315-10.837-8.832-3.882-2.579-8.97-3.249-13.817-2.436", fill: "#bebebe" }),
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 5399", d: "m38.921 80.187-7-13.316a3.359 3.359 0 0 0-2.14.981 5.173 5.173 0 0 0-1.015 2.067c-2.167 7.259.433 15.224 4.885 21.153 2.43 3.237 4.969 6.546 8.222 8.846.335.188.67.373 1.016.545a5.268 5.268 0 0 0 1.938.639c2.007.142 3.521-1.889 3.5-3.751-.031-2.153-1.839-3.463-3.129-4.93-2.9-3.3-4.228-8.341-6.273-12.234", fill: "#8b8b8b" }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 5400", d: "M60.079 47.4a40.649 40.649 0 0 0-7.44-3.486 41.8 41.8 0 0 0-7.624-2.6c-3.795-.723-14.793.441-13.892 6.462A5.83 5.83 0 0 0 32.7 50.8a23.012 23.012 0 0 0 2.5 1.117l26.16 10.351-4.136 1.632a8.752 8.752 0 0 0 2.548-.462 8.45 8.45 0 0 0 5.249-9.7 11.243 11.243 0 0 0-4.942-6.338", fill: "#8b8b8b" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 5401", d: "M98.158 53.233c-.347-2.429-2.2-4.3-3.971-5.965Q81.055 34.914 66.884 23.78C60.146 18.488 53.153 9.8 43.85 14.665c-4.25 2.222-7.295 6.212-10.2 10.08-3.525 4.694-6.982 11.7-2.9 15.914a12.166 12.166 0 0 0 4.438 2.534L61.36 53.549 35.191 63.9a12.154 12.154 0 0 0-4.438 2.535c-4.084 4.216-.627 11.22 2.9 15.913 2.9 3.868 5.949 7.859 10.2 10.08 9.3 4.864 16.3-3.822 23.034-9.114q14.151-11.114 27.3-23.485c1.558-1.464 3.181-3.094 3.783-5.121a2.9 2.9 0 0 0 .188-1.475", fill: "#fff" }),
|
|
34
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }))); };
|
|
35
|
+
|
|
36
|
+
module.exports = SvgArrowRightAlt;
|
|
37
|
+
//# sourceMappingURL=ArrowRightAlt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowRightAlt.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var tslib = require('tslib');
|
|
4
|
+
var React = require('react');
|
|
5
|
+
|
|
6
|
+
function _interopNamespace(e) {
|
|
7
|
+
if (e && e.__esModule) return e;
|
|
8
|
+
var n = Object.create(null);
|
|
9
|
+
if (e) {
|
|
10
|
+
Object.keys(e).forEach(function (k) {
|
|
11
|
+
if (k !== 'default') {
|
|
12
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
13
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return e[k];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n['default'] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var SvgBack = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
|
|
29
|
+
React__namespace.createElement("path", { "data-name": "Path 5402", d: "M.532 56.26c1.153-3.43 35.754-32.107 40.523-33.467 3.467-.989 2.649 8.4 5.317 9.169s72.877-5.154 73.248-.962c.047.538.024 1.9-.064 3.857a.4.4 0 0 1 .053.149c.371 4.2-3.218 65.035-8.178 65.4-.479.417-7.575-1.13-17.769-3.529-6.387-1.492-13.729-3.27-20.76-4.958h-.017c-20.169-4.82-28.177-5.985-28.177-5.985-3.435.754-4.984 9.906-8.036 9.9a2.307 2.307 0 0 1-.847-.29l-.008-.006C29.66 92.5-1.049 66.607.037 63.378c.129-.384-.393-6.107.5-7.118", opacity: 0.3 }),
|
|
30
|
+
React__namespace.createElement("path", { "data-name": "Path 5403", d: "M41.045 19.98C36.81 21.188 7.585 41.413.532 49.441c-.888 1.012-.366 6.735-.5 7.118-1.148 3.431 33.588 32.451 36.64 32.458s4.6-9.143 8.037-9.9 61.762 14.848 66.722 14.483 8.55-61.207 8.179-65.4-70.579 1.727-73.248.957-1.85-10.158-5.317-9.169", fill: "#bebebe" }),
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 5404", d: "M41.055 15.975C36.286 17.335 1.685 46.012.532 49.442S33.63 85 36.682 85.012s4.6-9.143 8.037-9.9 61.4 8.169 66.358 7.8 8.913-54.53 8.543-58.727-70.579 1.727-73.248.957-1.851-10.158-5.317-9.169", fill: "#fff" }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 5405", d: "M44.709 79.12c-1.43-.385-.17-4.138 1.447-4.029s39.16 5.13 51.476 6.469 14.568 11.371 13.8 12.04-18.378-3.671-38.546-8.491-28.177-5.989-28.177-5.989", fill: "#8b8b8b" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 5406", d: "M.483 57.953s1.66-3.915 11.357 5.447S34.4 83.385 35.443 85.009a4.908 4.908 0 0 1 .382 3.721S13.767 73.556.483 57.953", fill: "#8b8b8b" }),
|
|
34
|
+
React__namespace.createElement("path", { "data-name": "Path 5407", d: "m30.931 54.1.268-2.392c.145-1.623.737-9.233.8-10.828l.078-.7.074-.662c.091-.474.375-2.679.465-3.153.758-1.107 4.029-.7 4.949-.6a19.513 19.513 0 0 1 4.064.977c3.2 1.066 4.357 2.687 3.977 6.072-.3 2.687-2.322 4.1-4.658 4.993-.041.033-.082.066-.119.062v.036c-.012.111 2.268 1.372 2.628 1.823a5.265 5.265 0 0 1 1.255 4.425l-.083.736a11.86 11.86 0 0 1-.307 1.419l-1.095 2.113c-.041.033-.933 1.013-1.31 1.381-1.3 1.308-4.332 1.75-5.98 1.826-.6.008-3.349-.039-3.9-.064l-.626-.07c-1.067-.12-1.267.006-1.18-1.1.016-.147.087-1.443.1-1.591l.033-.294c.169-1.509.4-2.9.569-4.408m5.636 2.905c3.288.257 4.545-6.31.628-6.6a.127.127 0 0 0-.077.028l-.082.065a21.849 21.849 0 0 0-.318 2.163c-.131 1.178-.149 3-.322 4.212-.009.074.135.127.171.131m1.059-12.439c1.889.436 3.529-3.554.454-4.048-.037 0-.082.066-.082.066l-.429 3.827Z", fill: "#6e2988" }),
|
|
35
|
+
React__namespace.createElement("path", { "data-name": "Path 5408", d: "m46.43 50.806.054-.478a85.6 85.6 0 0 1 1.229-5.973 9.16 9.16 0 0 0 .233-.757c.09-.139.82-1.659 1.062-2.154 0-.037.086-.1.09-.139 2.166-2.7 5.255-4.329 9.036-2.825.036 0 .069.045.106.049a5.531 5.531 0 0 1 1.365.787 8.414 8.414 0 0 1 1.919 3.829c.733 2.765.051 5.856-.185 8.625.016.188-.083 1.406-.1 1.516l-.281 2.5c-.07.622-.242 2.214-.258 2.321-.061.552-.473 3.227-.576 3.811a1.759 1.759 0 0 1-1.87 1.393c-.221-.025.634 0-2.032-.489a2.919 2.919 0 0 1-.421-.233 1.229 1.229 0 0 1-.768-1.13c.029-.257.079-1.37.068-1.594.012-.111.024-.556.037-.667a.177.177 0 0 0-.172-.131c-.037 0-.151.02-.188.016-.111-.012-3.054-.342-3.169-.317-.11-.013-.09.138-.094.175l-.021.184c-.017.482-.108 1.963-.083 2.078-.009.073.117.609.113.646l-.024.22c-.025.221-.07.291-.3.34-.626-.07-2.09.027-2.752-.048l-1.325-.148-1.288-.145c-.319-.147-.323-.446-.326-.745.432-3.528.526-7.021.917-10.517m6.042 2.615 1.1.2 1.656.186c.065-.253.292-1.607.324-1.9l.021-.184c.074-.662.018-1.489.092-2.151a19.681 19.681 0 0 0 .183-3.3c.154-2.367-.381-3.247-.986-3.166s-1.314 1.082-1.639 2.648c-.106.287-.34 1.043-.348 1.117a17.19 17.19 0 0 0-.416 2.375 24.813 24.813 0 0 0-.232 4.073.31.31 0 0 0 .249.1", fill: "#6e2988" }),
|
|
36
|
+
React__namespace.createElement("path", { "data-name": "Path 5409", d: "M63.106 51.968c0-.037-.024-.45-.024-.45a15.287 15.287 0 0 1 1.5-5.049 13.582 13.582 0 0 1 .8-1.774 8.423 8.423 0 0 1 8.2-4.372c.479.053.561-.012.912.177 3.982 1.043 5.038 3.918 4.556 8.224a20.987 20.987 0 0 1-.313 2.126 1.024 1.024 0 0 1-.737.55c-.41-.008-2.3-.108-2.708-.117l-.993-.111-.884-.1c-.326-.074-.437-.422-.383-.9.037-.332 1.305-5 .365-5.25-2.931-.776-3.608 5.259-3.888 7.762l-.046.4c-.222 1.987-.61 5.112.992 6.446l.147.017c.957.107 1.652.222 2.13-4.047.128-1.141 3.583-.046 3.828.094.515.058 1.337.373 1.259 1.073-.78 6.955-2.5 9.3-8.127 8.665-2.539-.284-3.724-1.349-5.251-3.346a8.86 8.86 0 0 1-1.284-4.5l-.061-.455c-.056-.49-.187-.989-.243-1.48-.017-.523.23-1.055.029-1.6l.223-1.987", fill: "#6e2988" }),
|
|
37
|
+
React__namespace.createElement("path", { "data-name": "Path 5410", d: "M79.254 63.168c.33-2.944.807-5.871 1.137-8.816.458-4.084.585-8.207 1.047-12.328.021-.184.119-.732.123-.769l.09-.139a3.542 3.542 0 0 1 .822-.019c1.591.1 2.658.223 4.167.392l1.067.12.065.082c0 .036.024 1.455 0 2.012-.034.965-.239 5.451-.309 6.411l.068.716.066.082a.13.13 0 0 0 .069.045c.148.016.541-.5.663-.6 1.372-1.6 3.026-4.057 3.265-6.192.063-.552.014-1.116.071-1.631l.017-.148.2-.089 6.477.726c.221.024.228.286.212.433-.4 3.607-3.75 8.523-6.451 10.68l-.017.147c4.815 2.589 5.035 7.607 5.19 11.872.017.189 0 .372.012.56.012.561-.778.957-1.24 1.091-.772-.087-4.2-.4-4.944-.442l-.552-.062-.588-.066a.278.278 0 0 1-.155-.278c-.329-3.055.1-8.224-2.092-10.594a2.344 2.344 0 0 0-.315-.184l-.086.1-.28 2.5A34.812 34.812 0 0 1 86 65.19c-.639 1.047-2.009.968-3.158.914-.074-.009-1.554-.1-2.143-.166l-.221-.025c-.773-.087-1.341-.336-1.393-1.2l.173-1.545", fill: "#6e2988" }),
|
|
38
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }))); };
|
|
39
|
+
|
|
40
|
+
module.exports = SvgBack;
|
|
41
|
+
//# sourceMappingURL=Back.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Back.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var tslib = require('tslib');
|
|
4
|
+
var React = require('react');
|
|
5
|
+
|
|
6
|
+
function _interopNamespace(e) {
|
|
7
|
+
if (e && e.__esModule) return e;
|
|
8
|
+
var n = Object.create(null);
|
|
9
|
+
if (e) {
|
|
10
|
+
Object.keys(e).forEach(function (k) {
|
|
11
|
+
if (k !== 'default') {
|
|
12
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
13
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return e[k];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n['default'] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var SvgNext = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 119.779" }, props),
|
|
29
|
+
React__namespace.createElement("path", { d: "M119.468 56.26c-1.153-3.43-35.754-32.107-40.523-33.467-3.467-.989-2.649 8.4-5.317 9.169S.751 26.808.38 31c-.047.538-.024 1.9.064 3.857a.4.4 0 0 0-.053.149c-.371 4.2 3.218 65.035 8.178 65.4.479.417 7.575-1.13 17.769-3.529 6.387-1.492 13.729-3.27 20.76-4.958h.017c20.169-4.82 28.177-5.985 28.177-5.985 3.435.754 4.984 9.906 8.036 9.9a2.307 2.307 0 0 0 .847-.29l.008-.006c6.156-3.038 36.865-28.935 35.779-32.164-.129-.384.393-6.107-.495-7.118", opacity: 0.3 }),
|
|
30
|
+
React__namespace.createElement("path", { "data-name": "Path 5339", d: "M78.955 19.98c4.235 1.208 33.46 21.433 40.513 29.461.888 1.012.366 6.735.495 7.118 1.153 3.431-33.583 32.451-36.635 32.458s-4.6-9.143-8.037-9.9S13.529 93.965 8.569 93.6.019 32.389.39 28.192s70.579 1.727 73.248.957 1.85-10.158 5.317-9.169", fill: "#bebebe" }),
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 5340", d: "M78.945 15.975c4.769 1.36 39.37 30.037 40.523 33.467S86.37 85 83.318 85.012s-4.6-9.143-8.037-9.9-61.4 8.169-66.358 7.8S.01 28.384.38 24.187s70.579 1.727 73.248.957 1.85-10.158 5.317-9.169", fill: "#fff" }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 5341", d: "M75.291 79.12c1.43-.385.17-4.138-1.447-4.029s-39.16 5.13-51.476 6.469S7.8 92.931 8.568 93.6s18.378-3.671 38.546-8.491 28.177-5.989 28.177-5.989", fill: "#8b8b8b" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 5342", d: "M119.517 57.953s-1.66-3.915-11.357 5.448S85.6 83.385 84.557 85.009a4.908 4.908 0 0 0-.382 3.721s22.058-15.174 35.342-30.777", fill: "#8b8b8b" }),
|
|
34
|
+
React__namespace.createElement("path", { "data-name": "Path 5343", d: "M21.811 53.074c-.045-.1-.1-1.278-.108-1.451 0-.034-.1-.373-.108-.443a102.243 102.243 0 0 1-.823-7.51c0-.068-.028-.379-.033-.448.292-.579 1.031-.668 1.66-.715 1.371-.1 2.6-.091 4.007-.23.725.223.77.324 1 .863 0 .035.042.066.045.1.086.167.7 1.372.873 1.706 0 .035.044.1.047.135l4.976 9.248c-.122-1.623-.5-3.227-.666-4.916-.007-.1-.038-2.012-.086-2.147-.01-.138-.151-1.031-.162-1.168a5.48 5.48 0 0 0-.138-1.346L32.1 42.2c-.041-.552.8-.719 1.208-.785a18.681 18.681 0 0 1 3.087-.577 1.8 1.8 0 0 1 1.6.4c0 .035.084.133-.175.152l1.41 14.377c.028.38.2 2.139.223 2.484 0 .521.076 3.016.078 3.537-.148 1.018-.952 1.217-1.945 1.4-.037 0-.7.157-1.472.249h-.073c-.485 0-1.747.061-1.784.064-1.339.03-2.962-3.738-6.2-10.164-.1 1.119.99 6.768 1.027 7.772.011.138.135 1.31.109 1.45.078 2.044-2.37 2.192-4 2.314l-.3.022c-.778.058-1.754-.042-2.036-.82-.2-3.736-.656-7.279-1.046-11", fill: "#6e2988" }),
|
|
35
|
+
React__namespace.createElement("path", { "data-name": "Path 5344", d: "M40.54 41.95a.483.483 0 0 1-.1-.306c-.1-1.277 9.878-1.919 9.651-1.971.963-.072 3-.225 3.1 1.087.018.242-.041.456-.025.662.046.622.355 1.259.4 1.915a2.826 2.826 0 0 1-.679 1.892 1.151 1.151 0 0 1-.86.446h-.037a21.611 21.611 0 0 1-5.127.7l-.106.077.026.345c.085 1.14.313 2.2.359 3.308l.077.029c.037 0 .187.02.225.017.666-.049 1.352-.344 2.019-.394a1.363 1.363 0 0 1 1.552.822c.058.274.257 1.44.275 1.682 0 .034.08.584.1.791.01.138.015.694.023.8-.092.771-.32 1.205-1.167 1.338-.334.025-2 .218-2.292.241l-.138.149.147 1.968 7.027-.7c.185-.014.356.286.4.422.239 1.2.887 3.893.367 4.9l-10.525 1.17a3.65 3.65 0 0 1-1.033.147c-.148.011-.669.015-.781.023a.556.556 0 0 1-.47-.312c-.4-3.825-2.253-16.189-2.408-21.248", fill: "#6e2988" }),
|
|
36
|
+
React__namespace.createElement("path", { "data-name": "Path 5345", d: "M66.888 57.484c-.04-.032-.2-.194-.241-.226h-.036c-.7.053-1.523 4.559-3.746 4.725a33.119 33.119 0 0 1-4.214-.066c-.6-.094-.543-.273-.939-.591-.2-.192-.571-.165-.6-.51l-.005-.069c1.076-1.053 4.942-8.149 5.224-8.865L53.6 40.66l-.007-.1c-.01-.139-.016-.208.167-.255l.63-.048c1.889-.141 4.287-.459 5.954-.584 1.119.021 1.261.913 1.828 1.53l3.728 4.581 3.171-6.42c1.215-.195 2.81-.279 3.959-.365l2.519-.188c.112-.008.082.1.087.167-.159 1.852-5.075 9.861-5.319 10.574-.2.362-.234.365-.213.641 0 .034.012.173.015.207a72.342 72.342 0 0 0 4.593 5.6c.6.51 2.258 2.3 2.307 2.953a1.64 1.64 0 0 1-1.7 1.724l-5.076.38a.8.8 0 0 1-.75-.57Z", fill: "#6e2988" }),
|
|
37
|
+
React__namespace.createElement("path", { "data-name": "Path 5346", d: "M81.709 48.388c-.2-.645-.7-5.331-1.115-5.439a1.5 1.5 0 0 0-.449-.036c-.3-.012-2.329.244-2.7.272-.227-.053-.531-.135-.554-.445a39.7 39.7 0 0 0-.419-4.1c0-.069-.008-.1-.013-.172a.544.544 0 0 1-.1-.306c-.021-.276.747-.472 1.041-.529 1.98-.426 4.306-.7 12.766-1.162a1.007 1.007 0 0 1 .657.818 30.554 30.554 0 0 1 .079 4.544c-.649.778-2.453.566-3.478.816a1.2 1.2 0 0 0-.255.088c.008.1-.04.455-.032.559v.034c.227 3.039 1.042 10.445 1.717 14.493a2.668 2.668 0 0 1-.258 1.026c-.743 1.029-2.04 1.125-3.3 1.22l-.334.024c-1.185.089-2.193.061-2.3-1.321l-.162-2.351Z", fill: "#6e2988" }),
|
|
38
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 0h120v119.779H0z" }))); };
|
|
39
|
+
|
|
40
|
+
module.exports = SvgNext;
|
|
41
|
+
//# sourceMappingURL=Next.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Next.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var tslib = require('tslib');
|
|
4
|
+
var React = require('react');
|
|
5
|
+
|
|
6
|
+
function _interopNamespace(e) {
|
|
7
|
+
if (e && e.__esModule) return e;
|
|
8
|
+
var n = Object.create(null);
|
|
9
|
+
if (e) {
|
|
10
|
+
Object.keys(e).forEach(function (k) {
|
|
11
|
+
if (k !== 'default') {
|
|
12
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
13
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return e[k];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n['default'] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var SvgNo = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119.779 119.779" }, props),
|
|
29
|
+
React__namespace.createElement("path", { d: "M27.177 71.8c-.072-.2 0-2.507 0-2.846 0-.068-.145-.745-.145-.88-.364-4.879-.509-9.825-.509-14.772v-.881c.654-1.084 2.108-1.152 3.344-1.152 2.69 0 5.088.2 7.85.136 1.381.542 1.454.745 1.818 1.829 0 .068.072.136.072.2.145.339 1.163 2.779 1.454 3.456 0 .068.072.2.072.272l8.36 18.768c0-3.184-.509-6.369-.582-9.689 0-.2.218-3.93.146-4.2 0-.271-.146-2.033-.146-2.3a10.819 10.819 0 0 0-.072-2.643v-5.011c0-1.085 1.672-1.289 2.471-1.355a36.439 36.439 0 0 1 6.106-.678 3.517 3.517 0 0 1 3.053 1.016c0 .068.146.271-.363.271L60.76 79.6c0 .745.073 4.2.073 4.879-.073 1.015-.291 5.894-.364 6.911-.436 1.965-2.035 2.236-4 2.439-.072 0-1.381.2-2.908.272h-.145c-.945-.069-3.416-.137-3.489-.137-2.616-.135-5.234-7.724-10.612-20.734-.364 2.169.944 13.348.872 15.315 0 .27.072 2.574 0 2.845-.146 4-4.943 3.93-8.142 3.93h-.581c-1.527 0-3.416-.339-3.853-1.9.146-7.318-.218-14.3-.436-21.615", opacity: 0.3 }),
|
|
30
|
+
React__namespace.createElement("path", { "data-name": "shadow", d: "M75.806 49.377c12.5-1.492 15.628 2.981 17.737 13.551.145.542.435 2.575.435 2.778 0 .136.073 1.83.073 2.507 0 7.183 0 13.145-3.271 19.785a15.839 15.839 0 0 1-1.38 2.711 5.429 5.429 0 0 1-.945.813 14.315 14.315 0 0 1-9.667 3.117c-6.615 0-9.6-3.592-11.413-9.215-.073-.339-.872-2.982-1.09-3.727a3.8 3.8 0 0 1-.146-.813l-.944-9.148v-.812c0-6.777 1.453-20.463 10.612-21.547m4.506 33.743c3.561-.135 3.2-9.486 3.126-12.671v-.677c0-1.9-.073-9.825-3.417-9.825-2.4 0-3.126 8.944-3.126 10.367-.363 11.316.728 12.874 3.417 12.806", opacity: 0.3 }),
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 5363", d: "M27.177 62.572c-.072-.2 0-2.507 0-2.846 0-.068-.145-.745-.145-.88-.364-4.879-.509-9.825-.509-14.771v-.881c.654-1.085 2.108-1.152 3.344-1.152 2.69 0 5.088.2 7.85.135 1.381.542 1.454.745 1.818 1.829 0 .069.072.136.072.2.145.338 1.163 2.778 1.454 3.455 0 .068.072.2.072.272l8.36 18.768c0-3.184-.509-6.369-.582-9.689 0-.2.218-3.93.146-4.2 0-.271-.146-2.033-.146-2.3a10.822 10.822 0 0 0-.072-2.643v-5.014c0-1.085 1.672-1.288 2.471-1.355a36.544 36.544 0 0 1 6.106-.678 3.52 3.52 0 0 1 3.053 1.016c0 .068.146.271-.363.271l.654 28.255c0 .745.073 4.2.073 4.879-.073 1.016-.291 5.9-.364 6.911-.436 1.965-2.035 2.236-4 2.439-.072 0-1.381.2-2.908.272h-.145c-.945-.069-3.416-.136-3.489-.136-2.614-.136-5.232-7.729-10.61-20.734-.364 2.168.944 13.348.872 15.314 0 .27.072 2.574 0 2.845-.146 4-4.943 3.93-8.142 3.93h-.581c-1.527 0-3.416-.339-3.853-1.9.146-7.318-.218-14.3-.436-21.615", fill: "#919191" }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 5364", d: "M75.806 40.144c12.5-1.491 15.628 2.981 17.737 13.551.145.542.435 2.575.435 2.779 0 .135.073 1.829.073 2.507 0 7.182 0 13.144-3.271 19.785a15.831 15.831 0 0 1-1.381 2.71 5.429 5.429 0 0 1-.945.813 14.315 14.315 0 0 1-9.667 3.117c-6.615 0-9.6-3.591-11.413-9.215-.073-.339-.872-2.981-1.09-3.727a3.785 3.785 0 0 1-.146-.812l-.944-9.152v-.813c0-6.776 1.453-20.463 10.612-21.547m4.507 33.743c3.561-.135 3.2-9.486 3.126-12.671v-.677c0-1.9-.073-9.825-3.417-9.825-2.4 0-3.126 8.944-3.126 10.367-.363 11.316.728 12.874 3.417 12.806", fill: "#919191" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 5365", d: "M27.177 53.34c-.072-.2 0-2.506 0-2.846 0-.068-.145-.744-.145-.88-.364-4.879-.509-9.825-.509-14.771v-.881c.654-1.085 2.108-1.152 3.344-1.152 2.69 0 5.088.2 7.85.135 1.381.543 1.454.746 1.818 1.83 0 .068.072.135.072.2.145.338 1.163 2.778 1.454 3.455 0 .068.072.2.072.272l8.36 18.769c0-3.185-.509-6.37-.582-9.69 0-.2.218-3.93.146-4.2 0-.271-.146-2.033-.146-2.3a10.829 10.829 0 0 0-.072-2.644v-5.014c0-1.084 1.672-1.287 2.471-1.355a36.649 36.649 0 0 1 6.106-.678 3.517 3.517 0 0 1 3.053 1.017c0 .067.146.27-.363.27l.654 28.255c0 .746.073 4.2.073 4.879-.073 1.017-.291 5.895-.364 6.911-.436 1.965-2.035 2.236-4 2.439-.072 0-1.381.2-2.908.272h-.145c-.945-.069-3.416-.135-3.489-.135-2.616-.137-5.234-7.726-10.612-20.735-.364 2.168.944 13.349.872 15.314 0 .271.072 2.575 0 2.845-.146 4-4.943 3.931-8.142 3.931h-.581c-1.527 0-3.416-.34-3.853-1.9.146-7.318-.218-14.3-.436-21.615", fill: "#fff" }),
|
|
34
|
+
React__namespace.createElement("path", { "data-name": "Path 5366", d: "M75.806 30.912c12.5-1.49 15.628 2.982 17.737 13.551.145.543.435 2.576.435 2.779 0 .135.073 1.83.073 2.508 0 7.181 0 13.143-3.271 19.785a15.823 15.823 0 0 1-1.38 2.709 5.474 5.474 0 0 1-.945.814 14.32 14.32 0 0 1-9.667 3.117c-6.615 0-9.6-3.591-11.413-9.216-.073-.338-.872-2.98-1.09-3.726a3.793 3.793 0 0 1-.146-.813l-.944-9.147v-.814c0-6.775 1.453-20.463 10.612-21.547m4.507 33.743c3.561-.135 3.2-9.486 3.126-12.671v-.676c0-1.9-.073-9.825-3.417-9.825-2.4 0-3.126 8.943-3.126 10.366-.363 11.316.728 12.874 3.417 12.806", fill: "#fff" }),
|
|
35
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 0h119.779v119.779H0z" }))); };
|
|
36
|
+
|
|
37
|
+
module.exports = SvgNo;
|
|
38
|
+
//# sourceMappingURL=No.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"No.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var tslib = require('tslib');
|
|
4
|
+
var React = require('react');
|
|
5
|
+
|
|
6
|
+
function _interopNamespace(e) {
|
|
7
|
+
if (e && e.__esModule) return e;
|
|
8
|
+
var n = Object.create(null);
|
|
9
|
+
if (e) {
|
|
10
|
+
Object.keys(e).forEach(function (k) {
|
|
11
|
+
if (k !== 'default') {
|
|
12
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
13
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return e[k];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n['default'] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var SvgStats = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119 119" }, props),
|
|
29
|
+
React__namespace.createElement("path", { "data-name": "Path 5288", d: "M0 48.988v6.778c5.957 0 10.744 1.837 14.229 5.46 7.5 7.8 7.067 21.286 7.062 21.421l6.772.264c.025-.671.531-16.527-8.949-26.384C14.3 51.525 7.871 48.988 0 48.988", fill: "red" }),
|
|
30
|
+
React__namespace.createElement("path", { "data-name": "Path 5289", d: "M0 41.974v8.185c7.193 0 12.974 2.218 17.182 6.593 9.061 9.421 8.536 25.705 8.528 25.868l8.179.319c.032-.809.641-19.957-10.808-31.86-5.81-6.042-13.576-9.1-23.081-9.1", fill: "#ed5a24" }),
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 5290", d: "M0 41.974v8.185c7.193 0 12.974 2.218 17.182 6.593 9.061 9.421 8.536 25.705 8.528 25.868l8.179.319c.032-.809.641-19.957-10.808-31.86-5.81-6.042-13.576-9.1-23.081-9.1", fill: "#ff5a27" }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 5291", d: "M0 33.5v9.884c8.669 0 15.639 2.668 20.718 7.93C31.626 62.619 31.054 82.4 31.047 82.6l9.877.376c.038-.978.774-24.1-13.051-38.474C20.856 37.2 11.478 33.5 0 33.5", fill: "#f8ea21" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 5292", d: "M0 23.273v11.936c10.49 0 18.92 3.235 25.056 9.615C38.269 58.561 37.5 82.31 37.493 82.547l11.927.465c.046-1.18.934-29.1-15.761-46.462C25.186 27.74 13.861 23.273 0 23.273", fill: "#88c23f" }),
|
|
34
|
+
React__namespace.createElement("path", { "data-name": "Path 5293", d: "M0 10.92v14.413c12.642 0 22.806 3.891 30.212 11.564 15.907 16.481 15.074 45.322 15.064 45.614l14.4.549c.055-1.425 1.128-35.145-19.033-56.107C30.414 16.314 16.738 10.92 0 10.92", fill: "#33c6ff" }),
|
|
35
|
+
React__namespace.createElement("path", { "data-name": "Path 5294", d: "M63.372 82.779c.078-18.5-4.071-38.553-14.583-54.017A53.229 53.229 0 0 0 15.845 6.4 72.373 72.373 0 0 0 0 4.7v8.7c12.3-.01 24.337 3.1 33.689 11.311 14.353 12.783 19.584 32.865 20.844 51.48.109 1.877.168 3.742.155 5.61l-.012.639Z", fill: "#a41aa4" }),
|
|
36
|
+
React__namespace.createElement("path", { "data-name": "Path 5295", d: "M14.866 92.487a11.763 11.763 0 0 1 6.57-10.557 15.69 15.69 0 0 1 14.107-9.05c.016-.09.034-.179.051-.268l.046-.245q.054-.273.114-.543l.03-.138q.067-.3.143-.6l.06-.232.11-.412.072-.253c.038-.132.077-.263.117-.394l.075-.244c.047-.147.1-.294.144-.44l.061-.184c.07-.2.142-.4.216-.605l.07-.184c.054-.143.109-.286.166-.427.03-.078.062-.155.094-.232q.078-.19.159-.381l.1-.231.178-.4.092-.2c.091-.194.183-.386.279-.577l.04-.08q.126-.25.257-.5l.107-.2c.068-.126.137-.252.207-.377l.12-.21c.071-.124.143-.247.215-.369l.117-.195c.089-.148.181-.294.273-.441l.068-.107q.174-.271.353-.538c.034-.05.069-.1.1-.148q.132-.194.267-.385l.134-.185q.126-.174.255-.347l.137-.181q.142-.187.288-.371l.11-.14c.134-.168.271-.334.409-.5l.063-.073c.119-.14.238-.279.36-.416l.136-.153.3-.332.15-.16c.1-.111.21-.221.316-.329l.136-.14q.214-.216.433-.428l.025-.025c.157-.151.315-.3.475-.446l.13-.116c.117-.107.236-.212.355-.317l.07-.062a26.671 26.671 0 0 1 43.728 15.468c.131 0 .26-.009.391-.009a15.7 15.7 0 0 1 14.981 20.356c-.069.224-.145.445-.224.664-.026.073-.055.144-.082.216q-.084.224-.175.444l-.1.239q-.092.212-.189.419c-.036.076-.07.151-.107.226-.079.163-.162.323-.247.483l-.072.138q-.163.3-.339.59c-.04.066-.082.131-.123.2-.082.13-.164.26-.25.388-.05.077-.1.152-.154.228-.081.117-.164.232-.247.347-.055.075-.109.149-.165.223-.092.121-.187.241-.283.36-.049.061-.1.123-.146.183q-.212.253-.434.5c-.054.06-.111.118-.166.177-.1.109-.2.216-.306.322-.069.07-.14.138-.21.207-.1.092-.191.184-.288.274q-.109.1-.222.2c-.1.091-.207.18-.311.269-.071.06-.141.121-.213.18q-.252.207-.513.4h.021c-11.791 9.693-39.57 9.062-39.57 9.062s-25.055.634-37.7-7.581a11.816 11.816 0 0 1-1.547-1.1c-.118-.091-.236-.182-.351-.276h.033a11.734 11.734 0 0 1-3.881-8.731", opacity: 0.3 }),
|
|
37
|
+
React__namespace.createElement("path", { "data-name": "Path 5296", d: "M27.564 53.047a35.558 35.558 0 0 1 70 .01c.174-.005.347-.014.521-.014a20.913 20.913 0 1 1-15.1 35.375 35.561 35.561 0 0 1-40.447.279 20.911 20.911 0 1 1-14.978-35.65", fill: "#fff" }),
|
|
38
|
+
React__namespace.createElement("path", { "data-name": "Path 5297", d: "M0 79.185a15.685 15.685 0 0 1 8.92-14.154 21.923 21.923 0 0 0 21.451 19.664c-.023.062 7.486.183 7.486.183a35.548 35.548 0 0 1 1.423-52.427 35.573 35.573 0 0 0 35.108 41.176c.969 0 1.93-.041 2.88-.118q.686-.054 1.365-.134l.077-.01q1.416-.172 2.8-.453l.061-.012c.445-.091.887-.192 1.326-.3l.119-.029q.648-.162 1.288-.347l.115-.034q.649-.19 1.288-.4l.054-.019a35.086 35.086 0 0 0 3.895-1.578l.044-.021q.618-.294 1.222-.613l.05-.027q.61-.322 1.206-.666l.009-.006a35.627 35.627 0 0 0 4.613-3.186l.007-.006q.543-.441 1.067-.9a20.917 20.917 0 0 0 20.177 15.416h.011a20.944 20.944 0 0 1-7.423 10.506h.028c-15.718 12.922-52.751 12.08-52.751 12.08s-33.4.845-50.252-10.1A15.807 15.807 0 0 1 5.6 91.192c-.156-.122-.314-.243-.467-.368h.042A15.642 15.642 0 0 1 0 79.185", fill: "#dddfe4" }),
|
|
39
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 0h119v119H0z" }))); };
|
|
40
|
+
|
|
41
|
+
module.exports = SvgStats;
|
|
42
|
+
//# sourceMappingURL=Stats.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stats.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var tslib = require('tslib');
|
|
4
|
+
var React = require('react');
|
|
5
|
+
|
|
6
|
+
function _interopNamespace(e) {
|
|
7
|
+
if (e && e.__esModule) return e;
|
|
8
|
+
var n = Object.create(null);
|
|
9
|
+
if (e) {
|
|
10
|
+
Object.keys(e).forEach(function (k) {
|
|
11
|
+
if (k !== 'default') {
|
|
12
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
13
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () {
|
|
16
|
+
return e[k];
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n['default'] = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
|
|
28
|
+
var SvgYes = function (props) { return (React__namespace.createElement("svg", tslib.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119.779 119.779" }, props),
|
|
29
|
+
React__namespace.createElement("path", { d: "M21.6 92.986a111.672 111.672 0 0 0-1.575-15.421C8.71 74.9 9.211 59.608 9.354 55.135V53.6c1.218-1.335 4.226-1.335 6.8-1.335h4.01c1.933.2 2.005 2.335 2.076 3.738v.4c0 2.6.359 13.085 4.869 12.684 4.3-.4 4.153-4.94 4.153-6.274v-1.27c-.071-.934-.071-6.074-.214-7.009a2.652 2.652 0 0 1-.287-.667c0-.067-.071-.134-.071-.2 0-.735 1.145-1 1.574-1.2.359-.133 1.934-.6 2.292-.735 2.724-.269 5.444-.532 8.309-.532h1.074a1.34 1.34 0 0 1 .931 1.47l-.931 12.215c.215 6.076-5.156 10.214-10.812 13.152-.358.2.215.733.215 1.067 0 .8-.215 1.6-.215 2.4 0 4.339.716 8.545.716 12.817 0 1.069-1.719 1.869-2.363 2.27a2.816 2.816 0 0 1-.644.134c-.573.133-3.508.4-4.082.467-1.146.066-2.291.266-3.436.266-.5 0-1.934-.2-1.934-.934 0-1.134.215-2.337.215-3.538", opacity: 0.3 }),
|
|
30
|
+
React__namespace.createElement("path", { "data-name": "shadow", d: "M48.738 55.937a.939.939 0 0 1-.143-.6c0-2.471 19.261-2.27 18.831-2.4 1.862 0 5.8 0 5.8 2.537 0 .468-.143.867-.143 1.268 0 1.2.5 2.471.5 3.739a5.452 5.452 0 0 1-1.575 3.538 2.228 2.228 0 0 1-1.718.735h-.072a41.6 41.6 0 0 1-9.953.6l-.215.134v.668c0 2.2.287 4.271.215 6.408l.143.067c.072 0 .358.067.43.067 1.289 0 2.65-.468 3.938-.468 1.432 0 2.506.534 2.865 1.8.071.535.286 2.8.286 3.271 0 .067.071 1.136.071 1.536 0 .267-.071 1.334-.071 1.535-.286 1.47-.788 2.27-2.435 2.4-.644 0-3.867.133-4.44.133l-.286.268v3.8l13.605-.334c.358 0 .645.6.716.867.286 2.337 1.146 7.611 0 9.48l-20.407.734a7.092 7.092 0 0 1-2.005.133c-.286 0-1.289-.066-1.5-.066a1.075 1.075 0 0 1-.859-.667c-.215-7.411-2.005-31.443-1.575-41.189M77.525 81.3l.143-.134 10.1.334c.143 0 .429-.066.429.067v.533c.073 1.936-1.216 6.343 3.8 5.675 1.36-.134 1.933-2.07 1.933-3.07 0-3.138-3.938-4.94-6.444-6.542l-.358-.334c-4.869-3.138-9.6-6.275-9.6-12.083a1.435 1.435 0 0 1 .072-.268c.358-.334.286-.4 0-.733a8.619 8.619 0 0 1-.215-1.336 1.647 1.647 0 0 0-.143-.334v-.266c0-7.678 8.377-10.949 16.182-11.016 13.819-.067 13.247 11.95 12.244 18.291 0 .134-.931 0-1.145 0h-1.075c-1.432-.067-6.014 0-7.446-.133-.645 0-.645-.467-.716-.8v-3.669c-.072-1.468-1-3.671-3.223-3.671-5.37 0-1.145 7.21 1.719 9.012.573.334 1.146.668 1.647 1 6.731 4.073 14.034 8.545 7.805 18.758a12.6 12.6 0 0 1-3.008 3.739c-2.649 2.07-5.943 2.671-9.523 2.671-9.237 0-12.459-3.6-13.175-14.821v-.87Z", opacity: 0.3 }),
|
|
31
|
+
React__namespace.createElement("path", { "data-name": "Path 5353", d: "M21.6 83.891a111.658 111.658 0 0 0-1.575-15.42C8.71 65.8 9.211 50.513 9.354 46.041v-1.536c1.218-1.335 4.226-1.335 6.8-1.335h4.01c1.933.2 2.005 2.336 2.076 3.738v.4c0 2.6.359 13.084 4.869 12.683 4.3-.4 4.153-4.94 4.153-6.274v-1.268c-.071-.935-.071-6.075-.214-7.01a2.652 2.652 0 0 1-.287-.667c0-.067-.071-.134-.071-.2 0-.734 1.145-1 1.574-1.2.359-.133 1.934-.6 2.292-.734 2.724-.269 5.444-.538 8.309-.538h1.074a1.339 1.339 0 0 1 .931 1.469l-.931 12.216c.215 6.077-5.156 10.215-10.812 13.153-.358.2.215.734.215 1.068 0 .8-.215 1.6-.215 2.4 0 4.339.716 8.545.716 12.818 0 1.068-1.719 1.869-2.363 2.269a2.816 2.816 0 0 1-.644.134c-.573.133-3.508.4-4.082.467-1.146.066-2.291.267-3.436.267-.5 0-1.934-.2-1.934-.935 0-1.134.215-2.336.215-3.538", fill: "#919191" }),
|
|
32
|
+
React__namespace.createElement("path", { "data-name": "Path 5354", d: "M48.738 46.842a.939.939 0 0 1-.143-.6c0-2.47 19.261-2.27 18.831-2.4 1.862 0 5.8 0 5.8 2.536 0 .468-.143.868-.143 1.269 0 1.2.5 2.47.5 3.739a5.45 5.45 0 0 1-1.575 3.537 2.228 2.228 0 0 1-1.718.735h-.072a41.651 41.651 0 0 1-9.953.6l-.215.133v.668c0 2.2.287 4.272.215 6.408l.143.067c.072 0 .358.067.43.067 1.289 0 2.65-.467 3.938-.467 1.432 0 2.506.533 2.865 1.8.071.534.286 2.8.286 3.271 0 .067.071 1.135.071 1.535 0 .268-.071 1.335-.071 1.536-.286 1.469-.788 2.27-2.435 2.4-.644 0-3.867.133-4.44.133l-.286.268v3.805l13.605-.334c.358 0 .645.6.716.868.286 2.336 1.146 7.61 0 9.479l-20.407.735a7.092 7.092 0 0 1-2.005.133c-.286 0-1.289-.067-1.5-.067a1.075 1.075 0 0 1-.859-.667c-.215-7.411-2.005-31.443-1.575-41.189", fill: "#919191" }),
|
|
33
|
+
React__namespace.createElement("path", { "data-name": "Path 5355", d: "m77.525 72.209.143-.134 10.1.334c.143 0 .429-.066.429.067v.534c.073 1.936-1.216 6.342 3.8 5.675 1.36-.134 1.933-2.07 1.933-3.071 0-3.138-3.938-4.94-6.444-6.542l-.358-.334c-4.869-3.138-9.6-6.275-9.6-12.083a1.42 1.42 0 0 1 .072-.267c.358-.334.286-.4 0-.734a8.6 8.6 0 0 1-.215-1.336 1.647 1.647 0 0 0-.143-.334v-.266c0-7.677 8.377-10.948 16.182-11.015 13.819-.067 13.247 11.949 12.244 18.291 0 .133-.931 0-1.145 0h-1.075c-1.432-.067-6.014 0-7.446-.134-.645 0-.645-.467-.716-.8v-3.672c-.072-1.469-1-3.672-3.223-3.672-5.37 0-1.145 7.21 1.719 9.012.573.334 1.146.668 1.647 1 6.731 4.071 14.034 8.544 7.805 18.758a12.629 12.629 0 0 1-3.008 3.739C97.574 87.3 94.28 87.9 90.7 87.9c-9.237 0-12.459-3.605-13.175-14.82v-.868Z", fill: "#919191" }),
|
|
34
|
+
React__namespace.createElement("path", { "data-name": "Path 5356", d: "M21.6 74.8a111.628 111.628 0 0 0-1.575-15.419C8.71 56.706 9.211 41.418 9.354 36.946v-1.535c1.218-1.336 4.226-1.336 6.8-1.336h4.01c1.933.2 2.005 2.337 2.076 3.738v.4c0 2.6.359 13.084 4.869 12.683 4.3-.4 4.153-4.94 4.153-6.274v-1.267c-.071-.936-.071-6.076-.214-7.01a2.674 2.674 0 0 1-.287-.668c0-.067-.071-.134-.071-.2 0-.733 1.145-1 1.574-1.2.359-.133 1.934-.6 2.292-.733 2.721-.268 5.442-.535 8.306-.535h1.074a1.34 1.34 0 0 1 .931 1.469l-.931 12.216c.215 6.075-5.156 10.214-10.812 13.151-.358.2.215.735.215 1.069 0 .8-.215 1.6-.215 2.4 0 4.34.716 8.545.716 12.818 0 1.068-1.719 1.87-2.363 2.269a2.816 2.816 0 0 1-.644.134c-.573.133-3.508.4-4.082.467-1.146.067-2.291.268-3.436.268-.5 0-1.934-.2-1.934-.936 0-1.134.215-2.335.215-3.538", fill: "#fff" }),
|
|
35
|
+
React__namespace.createElement("path", { "data-name": "Path 5357", d: "M49.12 55.919c-.338-7.063-.567-13.955-.382-18.172a.938.938 0 0 1-.143-.6c0-2.47 19.261-2.27 18.832-2.4 1.862 0 5.8 0 5.8 2.536 0 .467-.143.868-.143 1.269 0 1.2.5 2.469.5 3.739a5.448 5.448 0 0 1-1.576 3.536 2.22 2.22 0 0 1-1.718.735h-.072a41.592 41.592 0 0 1-9.952.6l-.215.133v.667c0 2.2.286 4.273.215 6.408l.143.067c.071 0 .358.067.43.067 1.288 0 2.649-.466 3.938-.466 1.431 0 2.506.533 2.864 1.8.071.533.287 2.8.287 3.271 0 .067.07 1.134.07 1.535 0 .268-.07 1.335-.07 1.536-.287 1.468-.789 2.27-2.436 2.4-.644 0-3.866.134-4.439.134l-.286.267v3.805l13.6-.334c.359 0 .645.6.716.869.286 2.335 1.146 7.609 0 9.479l-20.407.734a7.054 7.054 0 0 1-2 .134c-.287 0-1.289-.067-1.5-.067a1.071 1.071 0 0 1-.859-.668c-.122-4.2-.751-13.757-1.194-23.017", fill: "#fff" }),
|
|
36
|
+
React__namespace.createElement("path", { "data-name": "Path 5358", d: "m77.525 63.114.143-.134 10.1.334c.143 0 .429-.066.429.067v.535c.073 1.936-1.216 6.341 3.8 5.674 1.36-.133 1.933-2.069 1.933-3.071 0-3.138-3.938-4.94-6.444-6.542l-.358-.334c-4.869-3.138-9.6-6.275-9.6-12.083a1.4 1.4 0 0 1 .072-.266c.358-.334.286-.4 0-.735a8.587 8.587 0 0 1-.215-1.335 1.647 1.647 0 0 0-.143-.334v-.267c0-7.677 8.377-10.948 16.182-11.014 13.819-.067 13.247 11.949 12.244 18.291 0 .133-.931 0-1.145 0h-1.075c-1.432-.067-6.014 0-7.446-.134-.645 0-.645-.468-.716-.8v-3.67c-.072-1.47-1-3.672-3.223-3.672-5.37 0-1.145 7.21 1.719 9.011.573.334 1.146.668 1.647 1 6.731 4.071 14.034 8.545 7.805 18.759a12.638 12.638 0 0 1-3.008 3.738C97.574 78.2 94.28 78.8 90.7 78.8c-9.237 0-12.459-3.605-13.175-14.819v-.869Z", fill: "#fff" }),
|
|
37
|
+
React__namespace.createElement("path", { fill: "none", d: "M0 0h119.779v119.779H0z" }))); };
|
|
38
|
+
|
|
39
|
+
module.exports = SvgYes;
|
|
40
|
+
//# sourceMappingURL=Yes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Yes.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/cjs/index.js
CHANGED
|
@@ -26,11 +26,14 @@ var AdvancedTutoring = require('./icons/AdvancedTutoring.js');
|
|
|
26
26
|
var Ant = require('./icons/Ant.js');
|
|
27
27
|
var Archive = require('./icons/Archive.js');
|
|
28
28
|
var ArrowDown = require('./icons/ArrowDown.js');
|
|
29
|
+
var ArrowLeftAlt = require('./icons/ArrowLeftAlt.js');
|
|
29
30
|
var ArrowLeft = require('./icons/ArrowLeft.js');
|
|
31
|
+
var ArrowRightAlt = require('./icons/ArrowRightAlt.js');
|
|
30
32
|
var ArrowRight = require('./icons/ArrowRight.js');
|
|
31
33
|
var ArrowUp = require('./icons/ArrowUp.js');
|
|
32
34
|
var Audio = require('./icons/Audio.js');
|
|
33
35
|
var Awards = require('./icons/Awards.js');
|
|
36
|
+
var Back = require('./icons/Back.js');
|
|
34
37
|
var Bear = require('./icons/Bear.js');
|
|
35
38
|
var Beaver = require('./icons/Beaver.js');
|
|
36
39
|
var Bertie = require('./icons/Bertie.js');
|
|
@@ -113,6 +116,8 @@ var MrWhale = require('./icons/MrWhale.js');
|
|
|
113
116
|
var MyHistory = require('./icons/MyHistory.js');
|
|
114
117
|
var MyZoo = require('./icons/MyZoo.js');
|
|
115
118
|
var New = require('./icons/New.js');
|
|
119
|
+
var Next = require('./icons/Next.js');
|
|
120
|
+
var No = require('./icons/No.js');
|
|
116
121
|
var Notifications = require('./icons/Notifications.js');
|
|
117
122
|
var Nozza = require('./icons/Nozza.js');
|
|
118
123
|
var NzktvBlue = require('./icons/NzktvBlue.js');
|
|
@@ -151,6 +156,7 @@ var SoundOff = require('./icons/SoundOff.js');
|
|
|
151
156
|
var SoundOn = require('./icons/SoundOn.js');
|
|
152
157
|
var StarTutoring = require('./icons/StarTutoring.js');
|
|
153
158
|
var StarWriting = require('./icons/StarWriting.js');
|
|
159
|
+
var Stats = require('./icons/Stats.js');
|
|
154
160
|
var StopWatch = require('./icons/StopWatch.js');
|
|
155
161
|
var Target = require('./icons/Target.js');
|
|
156
162
|
var Task = require('./icons/Task.js');
|
|
@@ -194,6 +200,7 @@ var WritingTypePlayscript = require('./icons/WritingTypePlayscript.js');
|
|
|
194
200
|
var WritingTypePoem = require('./icons/WritingTypePoem.js');
|
|
195
201
|
var WritingTypeReport = require('./icons/WritingTypeReport.js');
|
|
196
202
|
var Writing = require('./icons/Writing.js');
|
|
203
|
+
var Yes = require('./icons/Yes.js');
|
|
197
204
|
var ZooPoint = require('./icons/ZooPoint.js');
|
|
198
205
|
|
|
199
206
|
|
|
@@ -223,11 +230,14 @@ exports.AdvancedTutoring = AdvancedTutoring;
|
|
|
223
230
|
exports.Ant = Ant;
|
|
224
231
|
exports.Archive = Archive;
|
|
225
232
|
exports.ArrowDown = ArrowDown;
|
|
233
|
+
exports.ArrowLeftAlt = ArrowLeftAlt;
|
|
226
234
|
exports.ArrowLeft = ArrowLeft;
|
|
235
|
+
exports.ArrowRightAlt = ArrowRightAlt;
|
|
227
236
|
exports.ArrowRight = ArrowRight;
|
|
228
237
|
exports.ArrowUp = ArrowUp;
|
|
229
238
|
exports.Audio = Audio;
|
|
230
239
|
exports.Awards = Awards;
|
|
240
|
+
exports.Back = Back;
|
|
231
241
|
exports.Bear = Bear;
|
|
232
242
|
exports.Beaver = Beaver;
|
|
233
243
|
exports.Bertie = Bertie;
|
|
@@ -310,6 +320,8 @@ exports.MrWhale = MrWhale;
|
|
|
310
320
|
exports.MyHistory = MyHistory;
|
|
311
321
|
exports.MyZoo = MyZoo;
|
|
312
322
|
exports.New = New;
|
|
323
|
+
exports.Next = Next;
|
|
324
|
+
exports.No = No;
|
|
313
325
|
exports.Notifications = Notifications;
|
|
314
326
|
exports.Nozza = Nozza;
|
|
315
327
|
exports.NzktvBlue = NzktvBlue;
|
|
@@ -348,6 +360,7 @@ exports.SoundOff = SoundOff;
|
|
|
348
360
|
exports.SoundOn = SoundOn;
|
|
349
361
|
exports.StarTutoring = StarTutoring;
|
|
350
362
|
exports.StarWriting = StarWriting;
|
|
363
|
+
exports.Stats = Stats;
|
|
351
364
|
exports.StopWatch = StopWatch;
|
|
352
365
|
exports.Target = Target;
|
|
353
366
|
exports.Task = Task;
|
|
@@ -391,5 +404,6 @@ exports.WritingTypePlayscript = WritingTypePlayscript;
|
|
|
391
404
|
exports.WritingTypePoem = WritingTypePoem;
|
|
392
405
|
exports.WritingTypeReport = WritingTypeReport;
|
|
393
406
|
exports.Writing = Writing;
|
|
407
|
+
exports.Yes = Yes;
|
|
394
408
|
exports.ZooPoint = ZooPoint;
|
|
395
409
|
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __assign } from 'tslib';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var SvgArrowLeftAlt = function (props) { return (React.createElement("svg", __assign({ "data-name": "Icon - Arrow - Left", xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
|
|
5
|
+
React.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }),
|
|
6
|
+
React.createElement("path", { "data-name": "Path 5393", d: "M74.166 22.448a22.505 22.505 0 0 1 10.279 4.457c6.034 4.859 8.546 16.4 2.666 22.474a12.174 12.174 0 0 1-4.438 2.534L56.506 62.269l11.66 4.613c3.242 1.283 6.388 3.527 9.783 1.911 2.239-1.066 8.011-3.27 10.137-.941a5.171 5.171 0 0 1 1.015 2.068c2.167 7.258-.433 15.223-4.885 21.152-2.9 3.868-5.95 7.859-10.2 10.08-9.3 4.864-16.687-2-23.425-7.29-9.436-7.411-18.157-17.077-26.912-25.313-3.523-3.313-6.243-7.954-5.192-12.96a11.367 11.367 0 0 1 5.371-7.409c3.06-1.766 6.813-2.017 9.865-3.8a30.789 30.789 0 0 0 3.333-2.454 99.477 99.477 0 0 1 8.64-6.384c1.2-.739 2.552-1.2 3.818-1.831 4-1.983 7.048-6.315 10.837-8.832 3.882-2.579 8.97-3.249 13.817-2.436", fill: "#bebebe" }),
|
|
7
|
+
React.createElement("path", { "data-name": "Path 5394", d: "m78.945 80.187 7-13.316a3.359 3.359 0 0 1 2.14.981 5.173 5.173 0 0 1 1.015 2.067c2.167 7.259-.433 15.224-4.885 21.153-2.43 3.237-4.97 6.546-8.222 8.846a23.54 23.54 0 0 1-1.016.545 5.273 5.273 0 0 1-1.939.639c-2.007.142-3.521-1.889-3.495-3.751.029-2.153 1.839-3.463 3.128-4.93 2.9-3.3 4.228-8.341 6.274-12.234", fill: "#8b8b8b" }),
|
|
8
|
+
React.createElement("path", { "data-name": "Path 5395", d: "M57.787 47.4a40.649 40.649 0 0 1 7.44-3.486 41.8 41.8 0 0 1 7.624-2.6c3.795-.723 14.793.441 13.892 6.462a5.83 5.83 0 0 1-1.577 3.024 23.013 23.013 0 0 1-2.5 1.117l-26.16 10.351 4.136 1.632a8.752 8.752 0 0 1-2.548-.462 8.45 8.45 0 0 1-5.249-9.7 11.243 11.243 0 0 1 4.942-6.338", fill: "#8b8b8b" }),
|
|
9
|
+
React.createElement("path", { "data-name": "Path 5396", d: "M19.708 53.233c.347-2.429 2.2-4.3 3.971-5.965q13.133-12.354 27.3-23.488c6.741-5.292 13.734-13.98 23.037-9.115 4.25 2.222 7.295 6.212 10.2 10.08 3.525 4.694 6.982 11.7 2.9 15.914a12.158 12.158 0 0 1-4.438 2.534L56.506 53.549 82.675 63.9a12.146 12.146 0 0 1 4.438 2.535c4.084 4.216.627 11.22-2.9 15.913-2.9 3.868-5.949 7.859-10.2 10.08-9.3 4.864-16.3-3.822-23.034-9.114Q36.828 72.2 23.679 59.829c-1.558-1.464-3.181-3.094-3.783-5.121a2.905 2.905 0 0 1-.188-1.475", fill: "#fff" }))); };
|
|
10
|
+
|
|
11
|
+
export { SvgArrowLeftAlt as default };
|
|
12
|
+
//# sourceMappingURL=ArrowLeftAlt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowLeftAlt.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { __assign } from 'tslib';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var SvgArrowRightAlt = function (props) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
|
|
5
|
+
React.createElement("path", { "data-name": "Path 5397", d: "M98.134 67.41a11.205 11.205 0 0 0-1.676-3.91 14.17 14.17 0 0 0-3.516-4.408Q79.809 46.735 65.639 35.6C58.9 30.309 51.908 21.623 42.6 26.486c-4.249 2.222-7.3 6.213-10.2 10.081a29.1 29.1 0 0 0-3.624 6.2c-3.326 5.627-3.866 13.695.727 18.436a7.879 7.879 0 0 0 1.943 1.418 23.013 23.013 0 0 0 2.495 1.117l15.152 6-15.147 5.987a12.16 12.16 0 0 0-4.438 2.535 6.406 6.406 0 0 0-1.194 1.7 5.919 5.919 0 0 0-.794 1.775 18.461 18.461 0 0 0-.6 2.75 22.126 22.126 0 0 0 .945 9.681 29.217 29.217 0 0 0 3.723 7.587c.263.386.535.764.812 1.135.314.417.629.836.948 1.253l.6.777c.125.161.249.323.376.483.245.311.495.618.745.925l.236.286q.425.512.861 1.008l.094.105a22.63 22.63 0 0 0 6.338 5.243c9.3 4.863 16.687-2 23.425-7.291 9.436-7.41 18.158-17.076 26.913-25.312 3.523-3.313 6.243-7.954 5.192-12.96", opacity: 0.3 }),
|
|
6
|
+
React.createElement("path", { "data-name": "Path 5398", d: "M43.7 22.448a22.505 22.505 0 0 0-10.279 4.457c-6.034 4.859-8.546 16.4-2.666 22.474a12.174 12.174 0 0 0 4.438 2.534L61.36 62.269 49.7 66.882c-3.242 1.283-6.388 3.527-9.783 1.911-2.239-1.066-8.011-3.27-10.137-.941a5.171 5.171 0 0 0-1.015 2.068c-2.167 7.258.433 15.223 4.885 21.152 2.9 3.868 5.95 7.859 10.2 10.08 9.3 4.864 16.687-2 23.425-7.29 9.436-7.411 18.157-17.077 26.912-25.313 3.523-3.313 6.243-7.954 5.192-12.96a11.367 11.367 0 0 0-5.371-7.409c-3.06-1.766-6.813-2.017-9.865-3.8a30.79 30.79 0 0 1-3.333-2.454 99.476 99.476 0 0 0-8.64-6.384c-1.2-.739-2.552-1.2-3.818-1.831-4-1.983-7.048-6.315-10.837-8.832-3.882-2.579-8.97-3.249-13.817-2.436", fill: "#bebebe" }),
|
|
7
|
+
React.createElement("path", { "data-name": "Path 5399", d: "m38.921 80.187-7-13.316a3.359 3.359 0 0 0-2.14.981 5.173 5.173 0 0 0-1.015 2.067c-2.167 7.259.433 15.224 4.885 21.153 2.43 3.237 4.969 6.546 8.222 8.846.335.188.67.373 1.016.545a5.268 5.268 0 0 0 1.938.639c2.007.142 3.521-1.889 3.5-3.751-.031-2.153-1.839-3.463-3.129-4.93-2.9-3.3-4.228-8.341-6.273-12.234", fill: "#8b8b8b" }),
|
|
8
|
+
React.createElement("path", { "data-name": "Path 5400", d: "M60.079 47.4a40.649 40.649 0 0 0-7.44-3.486 41.8 41.8 0 0 0-7.624-2.6c-3.795-.723-14.793.441-13.892 6.462A5.83 5.83 0 0 0 32.7 50.8a23.012 23.012 0 0 0 2.5 1.117l26.16 10.351-4.136 1.632a8.752 8.752 0 0 0 2.548-.462 8.45 8.45 0 0 0 5.249-9.7 11.243 11.243 0 0 0-4.942-6.338", fill: "#8b8b8b" }),
|
|
9
|
+
React.createElement("path", { "data-name": "Path 5401", d: "M98.158 53.233c-.347-2.429-2.2-4.3-3.971-5.965Q81.055 34.914 66.884 23.78C60.146 18.488 53.153 9.8 43.85 14.665c-4.25 2.222-7.295 6.212-10.2 10.08-3.525 4.694-6.982 11.7-2.9 15.914a12.166 12.166 0 0 0 4.438 2.534L61.36 53.549 35.191 63.9a12.154 12.154 0 0 0-4.438 2.535c-4.084 4.216-.627 11.22 2.9 15.913 2.9 3.868 5.949 7.859 10.2 10.08 9.3 4.864 16.3-3.822 23.034-9.114q14.151-11.114 27.3-23.485c1.558-1.464 3.181-3.094 3.783-5.121a2.9 2.9 0 0 0 .188-1.475", fill: "#fff" }),
|
|
10
|
+
React.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }))); };
|
|
11
|
+
|
|
12
|
+
export { SvgArrowRightAlt as default };
|
|
13
|
+
//# sourceMappingURL=ArrowRightAlt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowRightAlt.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { __assign } from 'tslib';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var SvgBack = function (props) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 120" }, props),
|
|
5
|
+
React.createElement("path", { "data-name": "Path 5402", d: "M.532 56.26c1.153-3.43 35.754-32.107 40.523-33.467 3.467-.989 2.649 8.4 5.317 9.169s72.877-5.154 73.248-.962c.047.538.024 1.9-.064 3.857a.4.4 0 0 1 .053.149c.371 4.2-3.218 65.035-8.178 65.4-.479.417-7.575-1.13-17.769-3.529-6.387-1.492-13.729-3.27-20.76-4.958h-.017c-20.169-4.82-28.177-5.985-28.177-5.985-3.435.754-4.984 9.906-8.036 9.9a2.307 2.307 0 0 1-.847-.29l-.008-.006C29.66 92.5-1.049 66.607.037 63.378c.129-.384-.393-6.107.5-7.118", opacity: 0.3 }),
|
|
6
|
+
React.createElement("path", { "data-name": "Path 5403", d: "M41.045 19.98C36.81 21.188 7.585 41.413.532 49.441c-.888 1.012-.366 6.735-.5 7.118-1.148 3.431 33.588 32.451 36.64 32.458s4.6-9.143 8.037-9.9 61.762 14.848 66.722 14.483 8.55-61.207 8.179-65.4-70.579 1.727-73.248.957-1.85-10.158-5.317-9.169", fill: "#bebebe" }),
|
|
7
|
+
React.createElement("path", { "data-name": "Path 5404", d: "M41.055 15.975C36.286 17.335 1.685 46.012.532 49.442S33.63 85 36.682 85.012s4.6-9.143 8.037-9.9 61.4 8.169 66.358 7.8 8.913-54.53 8.543-58.727-70.579 1.727-73.248.957-1.851-10.158-5.317-9.169", fill: "#fff" }),
|
|
8
|
+
React.createElement("path", { "data-name": "Path 5405", d: "M44.709 79.12c-1.43-.385-.17-4.138 1.447-4.029s39.16 5.13 51.476 6.469 14.568 11.371 13.8 12.04-18.378-3.671-38.546-8.491-28.177-5.989-28.177-5.989", fill: "#8b8b8b" }),
|
|
9
|
+
React.createElement("path", { "data-name": "Path 5406", d: "M.483 57.953s1.66-3.915 11.357 5.447S34.4 83.385 35.443 85.009a4.908 4.908 0 0 1 .382 3.721S13.767 73.556.483 57.953", fill: "#8b8b8b" }),
|
|
10
|
+
React.createElement("path", { "data-name": "Path 5407", d: "m30.931 54.1.268-2.392c.145-1.623.737-9.233.8-10.828l.078-.7.074-.662c.091-.474.375-2.679.465-3.153.758-1.107 4.029-.7 4.949-.6a19.513 19.513 0 0 1 4.064.977c3.2 1.066 4.357 2.687 3.977 6.072-.3 2.687-2.322 4.1-4.658 4.993-.041.033-.082.066-.119.062v.036c-.012.111 2.268 1.372 2.628 1.823a5.265 5.265 0 0 1 1.255 4.425l-.083.736a11.86 11.86 0 0 1-.307 1.419l-1.095 2.113c-.041.033-.933 1.013-1.31 1.381-1.3 1.308-4.332 1.75-5.98 1.826-.6.008-3.349-.039-3.9-.064l-.626-.07c-1.067-.12-1.267.006-1.18-1.1.016-.147.087-1.443.1-1.591l.033-.294c.169-1.509.4-2.9.569-4.408m5.636 2.905c3.288.257 4.545-6.31.628-6.6a.127.127 0 0 0-.077.028l-.082.065a21.849 21.849 0 0 0-.318 2.163c-.131 1.178-.149 3-.322 4.212-.009.074.135.127.171.131m1.059-12.439c1.889.436 3.529-3.554.454-4.048-.037 0-.082.066-.082.066l-.429 3.827Z", fill: "#6e2988" }),
|
|
11
|
+
React.createElement("path", { "data-name": "Path 5408", d: "m46.43 50.806.054-.478a85.6 85.6 0 0 1 1.229-5.973 9.16 9.16 0 0 0 .233-.757c.09-.139.82-1.659 1.062-2.154 0-.037.086-.1.09-.139 2.166-2.7 5.255-4.329 9.036-2.825.036 0 .069.045.106.049a5.531 5.531 0 0 1 1.365.787 8.414 8.414 0 0 1 1.919 3.829c.733 2.765.051 5.856-.185 8.625.016.188-.083 1.406-.1 1.516l-.281 2.5c-.07.622-.242 2.214-.258 2.321-.061.552-.473 3.227-.576 3.811a1.759 1.759 0 0 1-1.87 1.393c-.221-.025.634 0-2.032-.489a2.919 2.919 0 0 1-.421-.233 1.229 1.229 0 0 1-.768-1.13c.029-.257.079-1.37.068-1.594.012-.111.024-.556.037-.667a.177.177 0 0 0-.172-.131c-.037 0-.151.02-.188.016-.111-.012-3.054-.342-3.169-.317-.11-.013-.09.138-.094.175l-.021.184c-.017.482-.108 1.963-.083 2.078-.009.073.117.609.113.646l-.024.22c-.025.221-.07.291-.3.34-.626-.07-2.09.027-2.752-.048l-1.325-.148-1.288-.145c-.319-.147-.323-.446-.326-.745.432-3.528.526-7.021.917-10.517m6.042 2.615 1.1.2 1.656.186c.065-.253.292-1.607.324-1.9l.021-.184c.074-.662.018-1.489.092-2.151a19.681 19.681 0 0 0 .183-3.3c.154-2.367-.381-3.247-.986-3.166s-1.314 1.082-1.639 2.648c-.106.287-.34 1.043-.348 1.117a17.19 17.19 0 0 0-.416 2.375 24.813 24.813 0 0 0-.232 4.073.31.31 0 0 0 .249.1", fill: "#6e2988" }),
|
|
12
|
+
React.createElement("path", { "data-name": "Path 5409", d: "M63.106 51.968c0-.037-.024-.45-.024-.45a15.287 15.287 0 0 1 1.5-5.049 13.582 13.582 0 0 1 .8-1.774 8.423 8.423 0 0 1 8.2-4.372c.479.053.561-.012.912.177 3.982 1.043 5.038 3.918 4.556 8.224a20.987 20.987 0 0 1-.313 2.126 1.024 1.024 0 0 1-.737.55c-.41-.008-2.3-.108-2.708-.117l-.993-.111-.884-.1c-.326-.074-.437-.422-.383-.9.037-.332 1.305-5 .365-5.25-2.931-.776-3.608 5.259-3.888 7.762l-.046.4c-.222 1.987-.61 5.112.992 6.446l.147.017c.957.107 1.652.222 2.13-4.047.128-1.141 3.583-.046 3.828.094.515.058 1.337.373 1.259 1.073-.78 6.955-2.5 9.3-8.127 8.665-2.539-.284-3.724-1.349-5.251-3.346a8.86 8.86 0 0 1-1.284-4.5l-.061-.455c-.056-.49-.187-.989-.243-1.48-.017-.523.23-1.055.029-1.6l.223-1.987", fill: "#6e2988" }),
|
|
13
|
+
React.createElement("path", { "data-name": "Path 5410", d: "M79.254 63.168c.33-2.944.807-5.871 1.137-8.816.458-4.084.585-8.207 1.047-12.328.021-.184.119-.732.123-.769l.09-.139a3.542 3.542 0 0 1 .822-.019c1.591.1 2.658.223 4.167.392l1.067.12.065.082c0 .036.024 1.455 0 2.012-.034.965-.239 5.451-.309 6.411l.068.716.066.082a.13.13 0 0 0 .069.045c.148.016.541-.5.663-.6 1.372-1.6 3.026-4.057 3.265-6.192.063-.552.014-1.116.071-1.631l.017-.148.2-.089 6.477.726c.221.024.228.286.212.433-.4 3.607-3.75 8.523-6.451 10.68l-.017.147c4.815 2.589 5.035 7.607 5.19 11.872.017.189 0 .372.012.56.012.561-.778.957-1.24 1.091-.772-.087-4.2-.4-4.944-.442l-.552-.062-.588-.066a.278.278 0 0 1-.155-.278c-.329-3.055.1-8.224-2.092-10.594a2.344 2.344 0 0 0-.315-.184l-.086.1-.28 2.5A34.812 34.812 0 0 1 86 65.19c-.639 1.047-2.009.968-3.158.914-.074-.009-1.554-.1-2.143-.166l-.221-.025c-.773-.087-1.341-.336-1.393-1.2l.173-1.545", fill: "#6e2988" }),
|
|
14
|
+
React.createElement("path", { fill: "none", d: "M0 0h120v120H0z" }))); };
|
|
15
|
+
|
|
16
|
+
export { SvgBack as default };
|
|
17
|
+
//# sourceMappingURL=Back.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Back.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { __assign } from 'tslib';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var SvgNext = function (props) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 120 119.779" }, props),
|
|
5
|
+
React.createElement("path", { d: "M119.468 56.26c-1.153-3.43-35.754-32.107-40.523-33.467-3.467-.989-2.649 8.4-5.317 9.169S.751 26.808.38 31c-.047.538-.024 1.9.064 3.857a.4.4 0 0 0-.053.149c-.371 4.2 3.218 65.035 8.178 65.4.479.417 7.575-1.13 17.769-3.529 6.387-1.492 13.729-3.27 20.76-4.958h.017c20.169-4.82 28.177-5.985 28.177-5.985 3.435.754 4.984 9.906 8.036 9.9a2.307 2.307 0 0 0 .847-.29l.008-.006c6.156-3.038 36.865-28.935 35.779-32.164-.129-.384.393-6.107-.495-7.118", opacity: 0.3 }),
|
|
6
|
+
React.createElement("path", { "data-name": "Path 5339", d: "M78.955 19.98c4.235 1.208 33.46 21.433 40.513 29.461.888 1.012.366 6.735.495 7.118 1.153 3.431-33.583 32.451-36.635 32.458s-4.6-9.143-8.037-9.9S13.529 93.965 8.569 93.6.019 32.389.39 28.192s70.579 1.727 73.248.957 1.85-10.158 5.317-9.169", fill: "#bebebe" }),
|
|
7
|
+
React.createElement("path", { "data-name": "Path 5340", d: "M78.945 15.975c4.769 1.36 39.37 30.037 40.523 33.467S86.37 85 83.318 85.012s-4.6-9.143-8.037-9.9-61.4 8.169-66.358 7.8S.01 28.384.38 24.187s70.579 1.727 73.248.957 1.85-10.158 5.317-9.169", fill: "#fff" }),
|
|
8
|
+
React.createElement("path", { "data-name": "Path 5341", d: "M75.291 79.12c1.43-.385.17-4.138-1.447-4.029s-39.16 5.13-51.476 6.469S7.8 92.931 8.568 93.6s18.378-3.671 38.546-8.491 28.177-5.989 28.177-5.989", fill: "#8b8b8b" }),
|
|
9
|
+
React.createElement("path", { "data-name": "Path 5342", d: "M119.517 57.953s-1.66-3.915-11.357 5.448S85.6 83.385 84.557 85.009a4.908 4.908 0 0 0-.382 3.721s22.058-15.174 35.342-30.777", fill: "#8b8b8b" }),
|
|
10
|
+
React.createElement("path", { "data-name": "Path 5343", d: "M21.811 53.074c-.045-.1-.1-1.278-.108-1.451 0-.034-.1-.373-.108-.443a102.243 102.243 0 0 1-.823-7.51c0-.068-.028-.379-.033-.448.292-.579 1.031-.668 1.66-.715 1.371-.1 2.6-.091 4.007-.23.725.223.77.324 1 .863 0 .035.042.066.045.1.086.167.7 1.372.873 1.706 0 .035.044.1.047.135l4.976 9.248c-.122-1.623-.5-3.227-.666-4.916-.007-.1-.038-2.012-.086-2.147-.01-.138-.151-1.031-.162-1.168a5.48 5.48 0 0 0-.138-1.346L32.1 42.2c-.041-.552.8-.719 1.208-.785a18.681 18.681 0 0 1 3.087-.577 1.8 1.8 0 0 1 1.6.4c0 .035.084.133-.175.152l1.41 14.377c.028.38.2 2.139.223 2.484 0 .521.076 3.016.078 3.537-.148 1.018-.952 1.217-1.945 1.4-.037 0-.7.157-1.472.249h-.073c-.485 0-1.747.061-1.784.064-1.339.03-2.962-3.738-6.2-10.164-.1 1.119.99 6.768 1.027 7.772.011.138.135 1.31.109 1.45.078 2.044-2.37 2.192-4 2.314l-.3.022c-.778.058-1.754-.042-2.036-.82-.2-3.736-.656-7.279-1.046-11", fill: "#6e2988" }),
|
|
11
|
+
React.createElement("path", { "data-name": "Path 5344", d: "M40.54 41.95a.483.483 0 0 1-.1-.306c-.1-1.277 9.878-1.919 9.651-1.971.963-.072 3-.225 3.1 1.087.018.242-.041.456-.025.662.046.622.355 1.259.4 1.915a2.826 2.826 0 0 1-.679 1.892 1.151 1.151 0 0 1-.86.446h-.037a21.611 21.611 0 0 1-5.127.7l-.106.077.026.345c.085 1.14.313 2.2.359 3.308l.077.029c.037 0 .187.02.225.017.666-.049 1.352-.344 2.019-.394a1.363 1.363 0 0 1 1.552.822c.058.274.257 1.44.275 1.682 0 .034.08.584.1.791.01.138.015.694.023.8-.092.771-.32 1.205-1.167 1.338-.334.025-2 .218-2.292.241l-.138.149.147 1.968 7.027-.7c.185-.014.356.286.4.422.239 1.2.887 3.893.367 4.9l-10.525 1.17a3.65 3.65 0 0 1-1.033.147c-.148.011-.669.015-.781.023a.556.556 0 0 1-.47-.312c-.4-3.825-2.253-16.189-2.408-21.248", fill: "#6e2988" }),
|
|
12
|
+
React.createElement("path", { "data-name": "Path 5345", d: "M66.888 57.484c-.04-.032-.2-.194-.241-.226h-.036c-.7.053-1.523 4.559-3.746 4.725a33.119 33.119 0 0 1-4.214-.066c-.6-.094-.543-.273-.939-.591-.2-.192-.571-.165-.6-.51l-.005-.069c1.076-1.053 4.942-8.149 5.224-8.865L53.6 40.66l-.007-.1c-.01-.139-.016-.208.167-.255l.63-.048c1.889-.141 4.287-.459 5.954-.584 1.119.021 1.261.913 1.828 1.53l3.728 4.581 3.171-6.42c1.215-.195 2.81-.279 3.959-.365l2.519-.188c.112-.008.082.1.087.167-.159 1.852-5.075 9.861-5.319 10.574-.2.362-.234.365-.213.641 0 .034.012.173.015.207a72.342 72.342 0 0 0 4.593 5.6c.6.51 2.258 2.3 2.307 2.953a1.64 1.64 0 0 1-1.7 1.724l-5.076.38a.8.8 0 0 1-.75-.57Z", fill: "#6e2988" }),
|
|
13
|
+
React.createElement("path", { "data-name": "Path 5346", d: "M81.709 48.388c-.2-.645-.7-5.331-1.115-5.439a1.5 1.5 0 0 0-.449-.036c-.3-.012-2.329.244-2.7.272-.227-.053-.531-.135-.554-.445a39.7 39.7 0 0 0-.419-4.1c0-.069-.008-.1-.013-.172a.544.544 0 0 1-.1-.306c-.021-.276.747-.472 1.041-.529 1.98-.426 4.306-.7 12.766-1.162a1.007 1.007 0 0 1 .657.818 30.554 30.554 0 0 1 .079 4.544c-.649.778-2.453.566-3.478.816a1.2 1.2 0 0 0-.255.088c.008.1-.04.455-.032.559v.034c.227 3.039 1.042 10.445 1.717 14.493a2.668 2.668 0 0 1-.258 1.026c-.743 1.029-2.04 1.125-3.3 1.22l-.334.024c-1.185.089-2.193.061-2.3-1.321l-.162-2.351Z", fill: "#6e2988" }),
|
|
14
|
+
React.createElement("path", { fill: "none", d: "M0 0h120v119.779H0z" }))); };
|
|
15
|
+
|
|
16
|
+
export { SvgNext as default };
|
|
17
|
+
//# sourceMappingURL=Next.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Next.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { __assign } from 'tslib';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var SvgNo = function (props) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119.779 119.779" }, props),
|
|
5
|
+
React.createElement("path", { d: "M27.177 71.8c-.072-.2 0-2.507 0-2.846 0-.068-.145-.745-.145-.88-.364-4.879-.509-9.825-.509-14.772v-.881c.654-1.084 2.108-1.152 3.344-1.152 2.69 0 5.088.2 7.85.136 1.381.542 1.454.745 1.818 1.829 0 .068.072.136.072.2.145.339 1.163 2.779 1.454 3.456 0 .068.072.2.072.272l8.36 18.768c0-3.184-.509-6.369-.582-9.689 0-.2.218-3.93.146-4.2 0-.271-.146-2.033-.146-2.3a10.819 10.819 0 0 0-.072-2.643v-5.011c0-1.085 1.672-1.289 2.471-1.355a36.439 36.439 0 0 1 6.106-.678 3.517 3.517 0 0 1 3.053 1.016c0 .068.146.271-.363.271L60.76 79.6c0 .745.073 4.2.073 4.879-.073 1.015-.291 5.894-.364 6.911-.436 1.965-2.035 2.236-4 2.439-.072 0-1.381.2-2.908.272h-.145c-.945-.069-3.416-.137-3.489-.137-2.616-.135-5.234-7.724-10.612-20.734-.364 2.169.944 13.348.872 15.315 0 .27.072 2.574 0 2.845-.146 4-4.943 3.93-8.142 3.93h-.581c-1.527 0-3.416-.339-3.853-1.9.146-7.318-.218-14.3-.436-21.615", opacity: 0.3 }),
|
|
6
|
+
React.createElement("path", { "data-name": "shadow", d: "M75.806 49.377c12.5-1.492 15.628 2.981 17.737 13.551.145.542.435 2.575.435 2.778 0 .136.073 1.83.073 2.507 0 7.183 0 13.145-3.271 19.785a15.839 15.839 0 0 1-1.38 2.711 5.429 5.429 0 0 1-.945.813 14.315 14.315 0 0 1-9.667 3.117c-6.615 0-9.6-3.592-11.413-9.215-.073-.339-.872-2.982-1.09-3.727a3.8 3.8 0 0 1-.146-.813l-.944-9.148v-.812c0-6.777 1.453-20.463 10.612-21.547m4.506 33.743c3.561-.135 3.2-9.486 3.126-12.671v-.677c0-1.9-.073-9.825-3.417-9.825-2.4 0-3.126 8.944-3.126 10.367-.363 11.316.728 12.874 3.417 12.806", opacity: 0.3 }),
|
|
7
|
+
React.createElement("path", { "data-name": "Path 5363", d: "M27.177 62.572c-.072-.2 0-2.507 0-2.846 0-.068-.145-.745-.145-.88-.364-4.879-.509-9.825-.509-14.771v-.881c.654-1.085 2.108-1.152 3.344-1.152 2.69 0 5.088.2 7.85.135 1.381.542 1.454.745 1.818 1.829 0 .069.072.136.072.2.145.338 1.163 2.778 1.454 3.455 0 .068.072.2.072.272l8.36 18.768c0-3.184-.509-6.369-.582-9.689 0-.2.218-3.93.146-4.2 0-.271-.146-2.033-.146-2.3a10.822 10.822 0 0 0-.072-2.643v-5.014c0-1.085 1.672-1.288 2.471-1.355a36.544 36.544 0 0 1 6.106-.678 3.52 3.52 0 0 1 3.053 1.016c0 .068.146.271-.363.271l.654 28.255c0 .745.073 4.2.073 4.879-.073 1.016-.291 5.9-.364 6.911-.436 1.965-2.035 2.236-4 2.439-.072 0-1.381.2-2.908.272h-.145c-.945-.069-3.416-.136-3.489-.136-2.614-.136-5.232-7.729-10.61-20.734-.364 2.168.944 13.348.872 15.314 0 .27.072 2.574 0 2.845-.146 4-4.943 3.93-8.142 3.93h-.581c-1.527 0-3.416-.339-3.853-1.9.146-7.318-.218-14.3-.436-21.615", fill: "#919191" }),
|
|
8
|
+
React.createElement("path", { "data-name": "Path 5364", d: "M75.806 40.144c12.5-1.491 15.628 2.981 17.737 13.551.145.542.435 2.575.435 2.779 0 .135.073 1.829.073 2.507 0 7.182 0 13.144-3.271 19.785a15.831 15.831 0 0 1-1.381 2.71 5.429 5.429 0 0 1-.945.813 14.315 14.315 0 0 1-9.667 3.117c-6.615 0-9.6-3.591-11.413-9.215-.073-.339-.872-2.981-1.09-3.727a3.785 3.785 0 0 1-.146-.812l-.944-9.152v-.813c0-6.776 1.453-20.463 10.612-21.547m4.507 33.743c3.561-.135 3.2-9.486 3.126-12.671v-.677c0-1.9-.073-9.825-3.417-9.825-2.4 0-3.126 8.944-3.126 10.367-.363 11.316.728 12.874 3.417 12.806", fill: "#919191" }),
|
|
9
|
+
React.createElement("path", { "data-name": "Path 5365", d: "M27.177 53.34c-.072-.2 0-2.506 0-2.846 0-.068-.145-.744-.145-.88-.364-4.879-.509-9.825-.509-14.771v-.881c.654-1.085 2.108-1.152 3.344-1.152 2.69 0 5.088.2 7.85.135 1.381.543 1.454.746 1.818 1.83 0 .068.072.135.072.2.145.338 1.163 2.778 1.454 3.455 0 .068.072.2.072.272l8.36 18.769c0-3.185-.509-6.37-.582-9.69 0-.2.218-3.93.146-4.2 0-.271-.146-2.033-.146-2.3a10.829 10.829 0 0 0-.072-2.644v-5.014c0-1.084 1.672-1.287 2.471-1.355a36.649 36.649 0 0 1 6.106-.678 3.517 3.517 0 0 1 3.053 1.017c0 .067.146.27-.363.27l.654 28.255c0 .746.073 4.2.073 4.879-.073 1.017-.291 5.895-.364 6.911-.436 1.965-2.035 2.236-4 2.439-.072 0-1.381.2-2.908.272h-.145c-.945-.069-3.416-.135-3.489-.135-2.616-.137-5.234-7.726-10.612-20.735-.364 2.168.944 13.349.872 15.314 0 .271.072 2.575 0 2.845-.146 4-4.943 3.931-8.142 3.931h-.581c-1.527 0-3.416-.34-3.853-1.9.146-7.318-.218-14.3-.436-21.615", fill: "#fff" }),
|
|
10
|
+
React.createElement("path", { "data-name": "Path 5366", d: "M75.806 30.912c12.5-1.49 15.628 2.982 17.737 13.551.145.543.435 2.576.435 2.779 0 .135.073 1.83.073 2.508 0 7.181 0 13.143-3.271 19.785a15.823 15.823 0 0 1-1.38 2.709 5.474 5.474 0 0 1-.945.814 14.32 14.32 0 0 1-9.667 3.117c-6.615 0-9.6-3.591-11.413-9.216-.073-.338-.872-2.98-1.09-3.726a3.793 3.793 0 0 1-.146-.813l-.944-9.147v-.814c0-6.775 1.453-20.463 10.612-21.547m4.507 33.743c3.561-.135 3.2-9.486 3.126-12.671v-.676c0-1.9-.073-9.825-3.417-9.825-2.4 0-3.126 8.943-3.126 10.366-.363 11.316.728 12.874 3.417 12.806", fill: "#fff" }),
|
|
11
|
+
React.createElement("path", { fill: "none", d: "M0 0h119.779v119.779H0z" }))); };
|
|
12
|
+
|
|
13
|
+
export { SvgNo as default };
|
|
14
|
+
//# sourceMappingURL=No.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"No.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { __assign } from 'tslib';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var SvgStats = function (props) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119 119" }, props),
|
|
5
|
+
React.createElement("path", { "data-name": "Path 5288", d: "M0 48.988v6.778c5.957 0 10.744 1.837 14.229 5.46 7.5 7.8 7.067 21.286 7.062 21.421l6.772.264c.025-.671.531-16.527-8.949-26.384C14.3 51.525 7.871 48.988 0 48.988", fill: "red" }),
|
|
6
|
+
React.createElement("path", { "data-name": "Path 5289", d: "M0 41.974v8.185c7.193 0 12.974 2.218 17.182 6.593 9.061 9.421 8.536 25.705 8.528 25.868l8.179.319c.032-.809.641-19.957-10.808-31.86-5.81-6.042-13.576-9.1-23.081-9.1", fill: "#ed5a24" }),
|
|
7
|
+
React.createElement("path", { "data-name": "Path 5290", d: "M0 41.974v8.185c7.193 0 12.974 2.218 17.182 6.593 9.061 9.421 8.536 25.705 8.528 25.868l8.179.319c.032-.809.641-19.957-10.808-31.86-5.81-6.042-13.576-9.1-23.081-9.1", fill: "#ff5a27" }),
|
|
8
|
+
React.createElement("path", { "data-name": "Path 5291", d: "M0 33.5v9.884c8.669 0 15.639 2.668 20.718 7.93C31.626 62.619 31.054 82.4 31.047 82.6l9.877.376c.038-.978.774-24.1-13.051-38.474C20.856 37.2 11.478 33.5 0 33.5", fill: "#f8ea21" }),
|
|
9
|
+
React.createElement("path", { "data-name": "Path 5292", d: "M0 23.273v11.936c10.49 0 18.92 3.235 25.056 9.615C38.269 58.561 37.5 82.31 37.493 82.547l11.927.465c.046-1.18.934-29.1-15.761-46.462C25.186 27.74 13.861 23.273 0 23.273", fill: "#88c23f" }),
|
|
10
|
+
React.createElement("path", { "data-name": "Path 5293", d: "M0 10.92v14.413c12.642 0 22.806 3.891 30.212 11.564 15.907 16.481 15.074 45.322 15.064 45.614l14.4.549c.055-1.425 1.128-35.145-19.033-56.107C30.414 16.314 16.738 10.92 0 10.92", fill: "#33c6ff" }),
|
|
11
|
+
React.createElement("path", { "data-name": "Path 5294", d: "M63.372 82.779c.078-18.5-4.071-38.553-14.583-54.017A53.229 53.229 0 0 0 15.845 6.4 72.373 72.373 0 0 0 0 4.7v8.7c12.3-.01 24.337 3.1 33.689 11.311 14.353 12.783 19.584 32.865 20.844 51.48.109 1.877.168 3.742.155 5.61l-.012.639Z", fill: "#a41aa4" }),
|
|
12
|
+
React.createElement("path", { "data-name": "Path 5295", d: "M14.866 92.487a11.763 11.763 0 0 1 6.57-10.557 15.69 15.69 0 0 1 14.107-9.05c.016-.09.034-.179.051-.268l.046-.245q.054-.273.114-.543l.03-.138q.067-.3.143-.6l.06-.232.11-.412.072-.253c.038-.132.077-.263.117-.394l.075-.244c.047-.147.1-.294.144-.44l.061-.184c.07-.2.142-.4.216-.605l.07-.184c.054-.143.109-.286.166-.427.03-.078.062-.155.094-.232q.078-.19.159-.381l.1-.231.178-.4.092-.2c.091-.194.183-.386.279-.577l.04-.08q.126-.25.257-.5l.107-.2c.068-.126.137-.252.207-.377l.12-.21c.071-.124.143-.247.215-.369l.117-.195c.089-.148.181-.294.273-.441l.068-.107q.174-.271.353-.538c.034-.05.069-.1.1-.148q.132-.194.267-.385l.134-.185q.126-.174.255-.347l.137-.181q.142-.187.288-.371l.11-.14c.134-.168.271-.334.409-.5l.063-.073c.119-.14.238-.279.36-.416l.136-.153.3-.332.15-.16c.1-.111.21-.221.316-.329l.136-.14q.214-.216.433-.428l.025-.025c.157-.151.315-.3.475-.446l.13-.116c.117-.107.236-.212.355-.317l.07-.062a26.671 26.671 0 0 1 43.728 15.468c.131 0 .26-.009.391-.009a15.7 15.7 0 0 1 14.981 20.356c-.069.224-.145.445-.224.664-.026.073-.055.144-.082.216q-.084.224-.175.444l-.1.239q-.092.212-.189.419c-.036.076-.07.151-.107.226-.079.163-.162.323-.247.483l-.072.138q-.163.3-.339.59c-.04.066-.082.131-.123.2-.082.13-.164.26-.25.388-.05.077-.1.152-.154.228-.081.117-.164.232-.247.347-.055.075-.109.149-.165.223-.092.121-.187.241-.283.36-.049.061-.1.123-.146.183q-.212.253-.434.5c-.054.06-.111.118-.166.177-.1.109-.2.216-.306.322-.069.07-.14.138-.21.207-.1.092-.191.184-.288.274q-.109.1-.222.2c-.1.091-.207.18-.311.269-.071.06-.141.121-.213.18q-.252.207-.513.4h.021c-11.791 9.693-39.57 9.062-39.57 9.062s-25.055.634-37.7-7.581a11.816 11.816 0 0 1-1.547-1.1c-.118-.091-.236-.182-.351-.276h.033a11.734 11.734 0 0 1-3.881-8.731", opacity: 0.3 }),
|
|
13
|
+
React.createElement("path", { "data-name": "Path 5296", d: "M27.564 53.047a35.558 35.558 0 0 1 70 .01c.174-.005.347-.014.521-.014a20.913 20.913 0 1 1-15.1 35.375 35.561 35.561 0 0 1-40.447.279 20.911 20.911 0 1 1-14.978-35.65", fill: "#fff" }),
|
|
14
|
+
React.createElement("path", { "data-name": "Path 5297", d: "M0 79.185a15.685 15.685 0 0 1 8.92-14.154 21.923 21.923 0 0 0 21.451 19.664c-.023.062 7.486.183 7.486.183a35.548 35.548 0 0 1 1.423-52.427 35.573 35.573 0 0 0 35.108 41.176c.969 0 1.93-.041 2.88-.118q.686-.054 1.365-.134l.077-.01q1.416-.172 2.8-.453l.061-.012c.445-.091.887-.192 1.326-.3l.119-.029q.648-.162 1.288-.347l.115-.034q.649-.19 1.288-.4l.054-.019a35.086 35.086 0 0 0 3.895-1.578l.044-.021q.618-.294 1.222-.613l.05-.027q.61-.322 1.206-.666l.009-.006a35.627 35.627 0 0 0 4.613-3.186l.007-.006q.543-.441 1.067-.9a20.917 20.917 0 0 0 20.177 15.416h.011a20.944 20.944 0 0 1-7.423 10.506h.028c-15.718 12.922-52.751 12.08-52.751 12.08s-33.4.845-50.252-10.1A15.807 15.807 0 0 1 5.6 91.192c-.156-.122-.314-.243-.467-.368h.042A15.642 15.642 0 0 1 0 79.185", fill: "#dddfe4" }),
|
|
15
|
+
React.createElement("path", { fill: "none", d: "M0 0h119v119H0z" }))); };
|
|
16
|
+
|
|
17
|
+
export { SvgStats as default };
|
|
18
|
+
//# sourceMappingURL=Stats.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Stats.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { __assign } from 'tslib';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
var SvgYes = function (props) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", viewBox: "0 0 119.779 119.779" }, props),
|
|
5
|
+
React.createElement("path", { d: "M21.6 92.986a111.672 111.672 0 0 0-1.575-15.421C8.71 74.9 9.211 59.608 9.354 55.135V53.6c1.218-1.335 4.226-1.335 6.8-1.335h4.01c1.933.2 2.005 2.335 2.076 3.738v.4c0 2.6.359 13.085 4.869 12.684 4.3-.4 4.153-4.94 4.153-6.274v-1.27c-.071-.934-.071-6.074-.214-7.009a2.652 2.652 0 0 1-.287-.667c0-.067-.071-.134-.071-.2 0-.735 1.145-1 1.574-1.2.359-.133 1.934-.6 2.292-.735 2.724-.269 5.444-.532 8.309-.532h1.074a1.34 1.34 0 0 1 .931 1.47l-.931 12.215c.215 6.076-5.156 10.214-10.812 13.152-.358.2.215.733.215 1.067 0 .8-.215 1.6-.215 2.4 0 4.339.716 8.545.716 12.817 0 1.069-1.719 1.869-2.363 2.27a2.816 2.816 0 0 1-.644.134c-.573.133-3.508.4-4.082.467-1.146.066-2.291.266-3.436.266-.5 0-1.934-.2-1.934-.934 0-1.134.215-2.337.215-3.538", opacity: 0.3 }),
|
|
6
|
+
React.createElement("path", { "data-name": "shadow", d: "M48.738 55.937a.939.939 0 0 1-.143-.6c0-2.471 19.261-2.27 18.831-2.4 1.862 0 5.8 0 5.8 2.537 0 .468-.143.867-.143 1.268 0 1.2.5 2.471.5 3.739a5.452 5.452 0 0 1-1.575 3.538 2.228 2.228 0 0 1-1.718.735h-.072a41.6 41.6 0 0 1-9.953.6l-.215.134v.668c0 2.2.287 4.271.215 6.408l.143.067c.072 0 .358.067.43.067 1.289 0 2.65-.468 3.938-.468 1.432 0 2.506.534 2.865 1.8.071.535.286 2.8.286 3.271 0 .067.071 1.136.071 1.536 0 .267-.071 1.334-.071 1.535-.286 1.47-.788 2.27-2.435 2.4-.644 0-3.867.133-4.44.133l-.286.268v3.8l13.605-.334c.358 0 .645.6.716.867.286 2.337 1.146 7.611 0 9.48l-20.407.734a7.092 7.092 0 0 1-2.005.133c-.286 0-1.289-.066-1.5-.066a1.075 1.075 0 0 1-.859-.667c-.215-7.411-2.005-31.443-1.575-41.189M77.525 81.3l.143-.134 10.1.334c.143 0 .429-.066.429.067v.533c.073 1.936-1.216 6.343 3.8 5.675 1.36-.134 1.933-2.07 1.933-3.07 0-3.138-3.938-4.94-6.444-6.542l-.358-.334c-4.869-3.138-9.6-6.275-9.6-12.083a1.435 1.435 0 0 1 .072-.268c.358-.334.286-.4 0-.733a8.619 8.619 0 0 1-.215-1.336 1.647 1.647 0 0 0-.143-.334v-.266c0-7.678 8.377-10.949 16.182-11.016 13.819-.067 13.247 11.95 12.244 18.291 0 .134-.931 0-1.145 0h-1.075c-1.432-.067-6.014 0-7.446-.133-.645 0-.645-.467-.716-.8v-3.669c-.072-1.468-1-3.671-3.223-3.671-5.37 0-1.145 7.21 1.719 9.012.573.334 1.146.668 1.647 1 6.731 4.073 14.034 8.545 7.805 18.758a12.6 12.6 0 0 1-3.008 3.739c-2.649 2.07-5.943 2.671-9.523 2.671-9.237 0-12.459-3.6-13.175-14.821v-.87Z", opacity: 0.3 }),
|
|
7
|
+
React.createElement("path", { "data-name": "Path 5353", d: "M21.6 83.891a111.658 111.658 0 0 0-1.575-15.42C8.71 65.8 9.211 50.513 9.354 46.041v-1.536c1.218-1.335 4.226-1.335 6.8-1.335h4.01c1.933.2 2.005 2.336 2.076 3.738v.4c0 2.6.359 13.084 4.869 12.683 4.3-.4 4.153-4.94 4.153-6.274v-1.268c-.071-.935-.071-6.075-.214-7.01a2.652 2.652 0 0 1-.287-.667c0-.067-.071-.134-.071-.2 0-.734 1.145-1 1.574-1.2.359-.133 1.934-.6 2.292-.734 2.724-.269 5.444-.538 8.309-.538h1.074a1.339 1.339 0 0 1 .931 1.469l-.931 12.216c.215 6.077-5.156 10.215-10.812 13.153-.358.2.215.734.215 1.068 0 .8-.215 1.6-.215 2.4 0 4.339.716 8.545.716 12.818 0 1.068-1.719 1.869-2.363 2.269a2.816 2.816 0 0 1-.644.134c-.573.133-3.508.4-4.082.467-1.146.066-2.291.267-3.436.267-.5 0-1.934-.2-1.934-.935 0-1.134.215-2.336.215-3.538", fill: "#919191" }),
|
|
8
|
+
React.createElement("path", { "data-name": "Path 5354", d: "M48.738 46.842a.939.939 0 0 1-.143-.6c0-2.47 19.261-2.27 18.831-2.4 1.862 0 5.8 0 5.8 2.536 0 .468-.143.868-.143 1.269 0 1.2.5 2.47.5 3.739a5.45 5.45 0 0 1-1.575 3.537 2.228 2.228 0 0 1-1.718.735h-.072a41.651 41.651 0 0 1-9.953.6l-.215.133v.668c0 2.2.287 4.272.215 6.408l.143.067c.072 0 .358.067.43.067 1.289 0 2.65-.467 3.938-.467 1.432 0 2.506.533 2.865 1.8.071.534.286 2.8.286 3.271 0 .067.071 1.135.071 1.535 0 .268-.071 1.335-.071 1.536-.286 1.469-.788 2.27-2.435 2.4-.644 0-3.867.133-4.44.133l-.286.268v3.805l13.605-.334c.358 0 .645.6.716.868.286 2.336 1.146 7.61 0 9.479l-20.407.735a7.092 7.092 0 0 1-2.005.133c-.286 0-1.289-.067-1.5-.067a1.075 1.075 0 0 1-.859-.667c-.215-7.411-2.005-31.443-1.575-41.189", fill: "#919191" }),
|
|
9
|
+
React.createElement("path", { "data-name": "Path 5355", d: "m77.525 72.209.143-.134 10.1.334c.143 0 .429-.066.429.067v.534c.073 1.936-1.216 6.342 3.8 5.675 1.36-.134 1.933-2.07 1.933-3.071 0-3.138-3.938-4.94-6.444-6.542l-.358-.334c-4.869-3.138-9.6-6.275-9.6-12.083a1.42 1.42 0 0 1 .072-.267c.358-.334.286-.4 0-.734a8.6 8.6 0 0 1-.215-1.336 1.647 1.647 0 0 0-.143-.334v-.266c0-7.677 8.377-10.948 16.182-11.015 13.819-.067 13.247 11.949 12.244 18.291 0 .133-.931 0-1.145 0h-1.075c-1.432-.067-6.014 0-7.446-.134-.645 0-.645-.467-.716-.8v-3.672c-.072-1.469-1-3.672-3.223-3.672-5.37 0-1.145 7.21 1.719 9.012.573.334 1.146.668 1.647 1 6.731 4.071 14.034 8.544 7.805 18.758a12.629 12.629 0 0 1-3.008 3.739C97.574 87.3 94.28 87.9 90.7 87.9c-9.237 0-12.459-3.605-13.175-14.82v-.868Z", fill: "#919191" }),
|
|
10
|
+
React.createElement("path", { "data-name": "Path 5356", d: "M21.6 74.8a111.628 111.628 0 0 0-1.575-15.419C8.71 56.706 9.211 41.418 9.354 36.946v-1.535c1.218-1.336 4.226-1.336 6.8-1.336h4.01c1.933.2 2.005 2.337 2.076 3.738v.4c0 2.6.359 13.084 4.869 12.683 4.3-.4 4.153-4.94 4.153-6.274v-1.267c-.071-.936-.071-6.076-.214-7.01a2.674 2.674 0 0 1-.287-.668c0-.067-.071-.134-.071-.2 0-.733 1.145-1 1.574-1.2.359-.133 1.934-.6 2.292-.733 2.721-.268 5.442-.535 8.306-.535h1.074a1.34 1.34 0 0 1 .931 1.469l-.931 12.216c.215 6.075-5.156 10.214-10.812 13.151-.358.2.215.735.215 1.069 0 .8-.215 1.6-.215 2.4 0 4.34.716 8.545.716 12.818 0 1.068-1.719 1.87-2.363 2.269a2.816 2.816 0 0 1-.644.134c-.573.133-3.508.4-4.082.467-1.146.067-2.291.268-3.436.268-.5 0-1.934-.2-1.934-.936 0-1.134.215-2.335.215-3.538", fill: "#fff" }),
|
|
11
|
+
React.createElement("path", { "data-name": "Path 5357", d: "M49.12 55.919c-.338-7.063-.567-13.955-.382-18.172a.938.938 0 0 1-.143-.6c0-2.47 19.261-2.27 18.832-2.4 1.862 0 5.8 0 5.8 2.536 0 .467-.143.868-.143 1.269 0 1.2.5 2.469.5 3.739a5.448 5.448 0 0 1-1.576 3.536 2.22 2.22 0 0 1-1.718.735h-.072a41.592 41.592 0 0 1-9.952.6l-.215.133v.667c0 2.2.286 4.273.215 6.408l.143.067c.071 0 .358.067.43.067 1.288 0 2.649-.466 3.938-.466 1.431 0 2.506.533 2.864 1.8.071.533.287 2.8.287 3.271 0 .067.07 1.134.07 1.535 0 .268-.07 1.335-.07 1.536-.287 1.468-.789 2.27-2.436 2.4-.644 0-3.866.134-4.439.134l-.286.267v3.805l13.6-.334c.359 0 .645.6.716.869.286 2.335 1.146 7.609 0 9.479l-20.407.734a7.054 7.054 0 0 1-2 .134c-.287 0-1.289-.067-1.5-.067a1.071 1.071 0 0 1-.859-.668c-.122-4.2-.751-13.757-1.194-23.017", fill: "#fff" }),
|
|
12
|
+
React.createElement("path", { "data-name": "Path 5358", d: "m77.525 63.114.143-.134 10.1.334c.143 0 .429-.066.429.067v.535c.073 1.936-1.216 6.341 3.8 5.674 1.36-.133 1.933-2.069 1.933-3.071 0-3.138-3.938-4.94-6.444-6.542l-.358-.334c-4.869-3.138-9.6-6.275-9.6-12.083a1.4 1.4 0 0 1 .072-.266c.358-.334.286-.4 0-.735a8.587 8.587 0 0 1-.215-1.335 1.647 1.647 0 0 0-.143-.334v-.267c0-7.677 8.377-10.948 16.182-11.014 13.819-.067 13.247 11.949 12.244 18.291 0 .133-.931 0-1.145 0h-1.075c-1.432-.067-6.014 0-7.446-.134-.645 0-.645-.468-.716-.8v-3.67c-.072-1.47-1-3.672-3.223-3.672-5.37 0-1.145 7.21 1.719 9.011.573.334 1.146.668 1.647 1 6.731 4.071 14.034 8.545 7.805 18.759a12.638 12.638 0 0 1-3.008 3.738C97.574 78.2 94.28 78.8 90.7 78.8c-9.237 0-12.459-3.605-13.175-14.819v-.869Z", fill: "#fff" }),
|
|
13
|
+
React.createElement("path", { fill: "none", d: "M0 0h119.779v119.779H0z" }))); };
|
|
14
|
+
|
|
15
|
+
export { SvgYes as default };
|
|
16
|
+
//# sourceMappingURL=Yes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Yes.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
|
package/dist/esm/index.js
CHANGED
|
@@ -22,11 +22,14 @@ export { default as AdvancedTutoring } from './icons/AdvancedTutoring.js';
|
|
|
22
22
|
export { default as Ant } from './icons/Ant.js';
|
|
23
23
|
export { default as Archive } from './icons/Archive.js';
|
|
24
24
|
export { default as ArrowDown } from './icons/ArrowDown.js';
|
|
25
|
+
export { default as ArrowLeftAlt } from './icons/ArrowLeftAlt.js';
|
|
25
26
|
export { default as ArrowLeft } from './icons/ArrowLeft.js';
|
|
27
|
+
export { default as ArrowRightAlt } from './icons/ArrowRightAlt.js';
|
|
26
28
|
export { default as ArrowRight } from './icons/ArrowRight.js';
|
|
27
29
|
export { default as ArrowUp } from './icons/ArrowUp.js';
|
|
28
30
|
export { default as Audio } from './icons/Audio.js';
|
|
29
31
|
export { default as Awards } from './icons/Awards.js';
|
|
32
|
+
export { default as Back } from './icons/Back.js';
|
|
30
33
|
export { default as Bear } from './icons/Bear.js';
|
|
31
34
|
export { default as Beaver } from './icons/Beaver.js';
|
|
32
35
|
export { default as Bertie } from './icons/Bertie.js';
|
|
@@ -109,6 +112,8 @@ export { default as MrWhale } from './icons/MrWhale.js';
|
|
|
109
112
|
export { default as MyHistory } from './icons/MyHistory.js';
|
|
110
113
|
export { default as MyZoo } from './icons/MyZoo.js';
|
|
111
114
|
export { default as New } from './icons/New.js';
|
|
115
|
+
export { default as Next } from './icons/Next.js';
|
|
116
|
+
export { default as No } from './icons/No.js';
|
|
112
117
|
export { default as Notifications } from './icons/Notifications.js';
|
|
113
118
|
export { default as Nozza } from './icons/Nozza.js';
|
|
114
119
|
export { default as NzktvBlue } from './icons/NzktvBlue.js';
|
|
@@ -147,6 +152,7 @@ export { default as SoundOff } from './icons/SoundOff.js';
|
|
|
147
152
|
export { default as SoundOn } from './icons/SoundOn.js';
|
|
148
153
|
export { default as StarTutoring } from './icons/StarTutoring.js';
|
|
149
154
|
export { default as StarWriting } from './icons/StarWriting.js';
|
|
155
|
+
export { default as Stats } from './icons/Stats.js';
|
|
150
156
|
export { default as StopWatch } from './icons/StopWatch.js';
|
|
151
157
|
export { default as Target } from './icons/Target.js';
|
|
152
158
|
export { default as Task } from './icons/Task.js';
|
|
@@ -190,5 +196,6 @@ export { default as WritingTypePlayscript } from './icons/WritingTypePlayscript.
|
|
|
190
196
|
export { default as WritingTypePoem } from './icons/WritingTypePoem.js';
|
|
191
197
|
export { default as WritingTypeReport } from './icons/WritingTypeReport.js';
|
|
192
198
|
export { default as Writing } from './icons/Writing.js';
|
|
199
|
+
export { default as Yes } from './icons/Yes.js';
|
|
193
200
|
export { default as ZooPoint } from './icons/ZooPoint.js';
|
|
194
201
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -7,11 +7,14 @@ export { default as AdvancedTutoring } from "./AdvancedTutoring";
|
|
|
7
7
|
export { default as Ant } from "./Ant";
|
|
8
8
|
export { default as Archive } from "./Archive";
|
|
9
9
|
export { default as ArrowDown } from "./ArrowDown";
|
|
10
|
+
export { default as ArrowLeftAlt } from "./ArrowLeftAlt";
|
|
10
11
|
export { default as ArrowLeft } from "./ArrowLeft";
|
|
12
|
+
export { default as ArrowRightAlt } from "./ArrowRightAlt";
|
|
11
13
|
export { default as ArrowRight } from "./ArrowRight";
|
|
12
14
|
export { default as ArrowUp } from "./ArrowUp";
|
|
13
15
|
export { default as Audio } from "./Audio";
|
|
14
16
|
export { default as Awards } from "./Awards";
|
|
17
|
+
export { default as Back } from "./Back";
|
|
15
18
|
export { default as Bear } from "./Bear";
|
|
16
19
|
export { default as Beaver } from "./Beaver";
|
|
17
20
|
export { default as Bertie } from "./Bertie";
|
|
@@ -94,6 +97,8 @@ export { default as MrWhale } from "./MrWhale";
|
|
|
94
97
|
export { default as MyHistory } from "./MyHistory";
|
|
95
98
|
export { default as MyZoo } from "./MyZoo";
|
|
96
99
|
export { default as New } from "./New";
|
|
100
|
+
export { default as Next } from "./Next";
|
|
101
|
+
export { default as No } from "./No";
|
|
97
102
|
export { default as Notifications } from "./Notifications";
|
|
98
103
|
export { default as Nozza } from "./Nozza";
|
|
99
104
|
export { default as NzktvBlue } from "./NzktvBlue";
|
|
@@ -132,6 +137,7 @@ export { default as SoundOff } from "./SoundOff";
|
|
|
132
137
|
export { default as SoundOn } from "./SoundOn";
|
|
133
138
|
export { default as StarTutoring } from "./StarTutoring";
|
|
134
139
|
export { default as StarWriting } from "./StarWriting";
|
|
140
|
+
export { default as Stats } from "./Stats";
|
|
135
141
|
export { default as StopWatch } from "./StopWatch";
|
|
136
142
|
export { default as Target } from "./Target";
|
|
137
143
|
export { default as Task } from "./Task";
|
|
@@ -175,4 +181,5 @@ export { default as WritingTypePlayscript } from "./WritingTypePlayscript";
|
|
|
175
181
|
export { default as WritingTypePoem } from "./WritingTypePoem";
|
|
176
182
|
export { default as WritingTypeReport } from "./WritingTypeReport";
|
|
177
183
|
export { default as Writing } from "./Writing";
|
|
184
|
+
export { default as Yes } from "./Yes";
|
|
178
185
|
export { default as ZooPoint } from "./ZooPoint";
|