jfs-components 0.0.78 → 0.0.84
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/CHANGELOG.md +11 -0
- package/lib/commonjs/components/AppBar/AppBar.js +56 -6
- package/lib/commonjs/components/Attached/Attached.js +183 -0
- package/lib/commonjs/components/Card/Card.js +25 -2
- package/lib/commonjs/components/Checkbox/Checkbox.js +18 -2
- package/lib/commonjs/components/Drawer/Drawer.js +6 -1
- package/lib/commonjs/components/DropdownInput/DropdownInput.js +30 -6
- package/lib/commonjs/components/ExpandableCheckbox/ExpandableCheckbox.js +17 -11
- package/lib/commonjs/components/FormField/FormField.js +1 -14
- package/lib/commonjs/components/FullscreenModal/FullscreenModal.js +9 -7
- package/lib/commonjs/components/ListItem/ListItem.js +26 -24
- package/lib/commonjs/components/MessageField/MessageField.js +1 -13
- package/lib/commonjs/components/PaymentFeedback/PaymentFeedback.js +12 -9
- package/lib/commonjs/components/PlanComparisonCard/PlanComparisonCard.js +237 -0
- package/lib/commonjs/components/Slot/Slot.js +73 -0
- package/lib/commonjs/components/Spinner/Spinner.js +217 -0
- package/lib/commonjs/components/TextInput/TextInput.js +33 -18
- package/lib/commonjs/components/index.js +28 -0
- package/lib/commonjs/icons/components/IconArrowdown.js +19 -0
- package/lib/commonjs/icons/components/IconArrowup.js +19 -0
- package/lib/commonjs/icons/components/IconChevrondowncircle.js +19 -0
- package/lib/commonjs/icons/components/IconChevronleftcircle.js +19 -0
- package/lib/commonjs/icons/components/IconChevronrightcircle.js +19 -0
- package/lib/commonjs/icons/components/IconChevronupcircle.js +19 -0
- package/lib/commonjs/icons/components/IconOsnavback.js +19 -0
- package/lib/commonjs/icons/components/IconOsnavcenter.js +19 -0
- package/lib/commonjs/icons/components/IconOsnavhome.js +19 -0
- package/lib/commonjs/icons/components/IconOsnavtask.js +19 -0
- package/lib/commonjs/icons/components/IconSignin.js +19 -0
- package/lib/commonjs/icons/components/IconSignout.js +19 -0
- package/lib/commonjs/icons/components/index.js +132 -0
- package/lib/commonjs/icons/registry.js +2 -2
- package/lib/module/components/AppBar/AppBar.js +56 -6
- package/lib/module/components/Attached/Attached.js +178 -0
- package/lib/module/components/Card/Card.js +25 -2
- package/lib/module/components/Checkbox/Checkbox.js +18 -2
- package/lib/module/components/Drawer/Drawer.js +6 -1
- package/lib/module/components/DropdownInput/DropdownInput.js +30 -6
- package/lib/module/components/ExpandableCheckbox/ExpandableCheckbox.js +17 -11
- package/lib/module/components/FormField/FormField.js +3 -16
- package/lib/module/components/FullscreenModal/FullscreenModal.js +9 -7
- package/lib/module/components/ListItem/ListItem.js +26 -24
- package/lib/module/components/MessageField/MessageField.js +3 -15
- package/lib/module/components/PaymentFeedback/PaymentFeedback.js +13 -9
- package/lib/module/components/PlanComparisonCard/PlanComparisonCard.js +234 -0
- package/lib/module/components/Slot/Slot.js +68 -0
- package/lib/module/components/Spinner/Spinner.js +212 -0
- package/lib/module/components/TextInput/TextInput.js +34 -19
- package/lib/module/components/index.js +4 -0
- package/lib/module/icons/components/IconArrowdown.js +12 -0
- package/lib/module/icons/components/IconArrowup.js +12 -0
- package/lib/module/icons/components/IconChevrondowncircle.js +12 -0
- package/lib/module/icons/components/IconChevronleftcircle.js +12 -0
- package/lib/module/icons/components/IconChevronrightcircle.js +12 -0
- package/lib/module/icons/components/IconChevronupcircle.js +12 -0
- package/lib/module/icons/components/IconOsnavback.js +12 -0
- package/lib/module/icons/components/IconOsnavcenter.js +12 -0
- package/lib/module/icons/components/IconOsnavhome.js +12 -0
- package/lib/module/icons/components/IconOsnavtask.js +12 -0
- package/lib/module/icons/components/IconSignin.js +12 -0
- package/lib/module/icons/components/IconSignout.js +12 -0
- package/lib/module/icons/components/index.js +12 -0
- package/lib/module/icons/registry.js +2 -2
- package/lib/typescript/src/components/AppBar/AppBar.d.ts +12 -1
- package/lib/typescript/src/components/Attached/Attached.d.ts +64 -0
- package/lib/typescript/src/components/Card/Card.d.ts +9 -2
- package/lib/typescript/src/components/DropdownInput/DropdownInput.d.ts +3 -2
- package/lib/typescript/src/components/ListItem/ListItem.d.ts +16 -6
- package/lib/typescript/src/components/PaymentFeedback/PaymentFeedback.d.ts +5 -1
- package/lib/typescript/src/components/PlanComparisonCard/PlanComparisonCard.d.ts +66 -0
- package/lib/typescript/src/components/Slot/Slot.d.ts +52 -0
- package/lib/typescript/src/components/Spinner/Spinner.d.ts +45 -0
- package/lib/typescript/src/components/index.d.ts +4 -0
- package/lib/typescript/src/icons/components/IconArrowdown.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconArrowup.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconChevrondowncircle.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconChevronleftcircle.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconChevronrightcircle.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconChevronupcircle.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconOsnavback.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconOsnavcenter.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconOsnavhome.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconOsnavtask.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconSignin.d.ts +3 -0
- package/lib/typescript/src/icons/components/IconSignout.d.ts +3 -0
- package/lib/typescript/src/icons/components/index.d.ts +12 -0
- package/lib/typescript/src/icons/registry.d.ts +1 -1
- package/package.json +3 -2
- package/src/components/AppBar/AppBar.tsx +79 -12
- package/src/components/Attached/Attached.tsx +237 -0
- package/src/components/Card/Card.tsx +28 -1
- package/src/components/Checkbox/Checkbox.tsx +14 -2
- package/src/components/Drawer/Drawer.tsx +4 -0
- package/src/components/DropdownInput/DropdownInput.tsx +54 -20
- package/src/components/ExpandableCheckbox/ExpandableCheckbox.tsx +13 -9
- package/src/components/FormField/FormField.tsx +3 -19
- package/src/components/FullscreenModal/FullscreenModal.tsx +6 -3
- package/src/components/ListItem/ListItem.tsx +42 -25
- package/src/components/MessageField/MessageField.tsx +3 -18
- package/src/components/PaymentFeedback/PaymentFeedback.tsx +15 -8
- package/src/components/PlanComparisonCard/PlanComparisonCard.tsx +316 -0
- package/src/components/Slot/Slot.tsx +91 -0
- package/src/components/Spinner/Spinner.tsx +273 -0
- package/src/components/TextInput/TextInput.tsx +37 -19
- package/src/components/index.ts +4 -0
- package/src/icons/components/IconArrowdown.tsx +11 -0
- package/src/icons/components/IconArrowup.tsx +11 -0
- package/src/icons/components/IconChevrondowncircle.tsx +11 -0
- package/src/icons/components/IconChevronleftcircle.tsx +11 -0
- package/src/icons/components/IconChevronrightcircle.tsx +11 -0
- package/src/icons/components/IconChevronupcircle.tsx +11 -0
- package/src/icons/components/IconOsnavback.tsx +11 -0
- package/src/icons/components/IconOsnavcenter.tsx +11 -0
- package/src/icons/components/IconOsnavhome.tsx +11 -0
- package/src/icons/components/IconOsnavtask.tsx +11 -0
- package/src/icons/components/IconSignin.tsx +11 -0
- package/src/icons/components/IconSignout.tsx +11 -0
- package/src/icons/components/index.ts +12 -0
- package/src/icons/registry.ts +49 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.IconSignout = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactNativeSvg = _interopRequireWildcard(require("react-native-svg"));
|
|
9
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
10
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
12
|
+
const IconSignout = props => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.default, {
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
14
|
+
...props,
|
|
15
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
|
|
16
|
+
d: "M21.9 11.6102C21.8518 11.4883 21.7766 11.3789 21.68 11.2902L18.68 8.29018C18.4987 8.11021 18.2554 8.00644 18 8.00018C17.8694 8.00176 17.7403 8.02894 17.62 8.08018C17.4965 8.13075 17.3843 8.20555 17.29 8.30018C17.1053 8.48644 17.0012 8.73784 17 9.00018C17.0066 9.26436 17.1098 9.51697 17.29 9.71018L18.56 11.0002H10C9.73771 11.0013 9.48631 11.1054 9.30005 11.2902C9.20542 11.3844 9.13061 11.4966 9.08005 11.6202C9.0288 11.7404 9.00163 11.8695 9.00005 12.0002C8.99928 12.1318 9.02451 12.2623 9.07427 12.3841C9.12404 12.5059 9.19736 12.6167 9.29005 12.7102C9.38349 12.8029 9.4943 12.8762 9.61614 12.926C9.73798 12.9757 9.86844 13.0009 10 13.0002H18.59L17.28 14.2902C17.1901 14.3823 17.1188 14.491 17.07 14.6102C17.0209 14.7342 16.9971 14.8668 17 15.0002C17.0016 15.1309 17.0288 15.26 17.08 15.3802C17.1276 15.5029 17.199 15.6151 17.29 15.7102C17.387 15.8015 17.4985 15.8758 17.62 15.9302C17.741 15.978 17.87 16.0018 18 16.0002C18.1334 16.0031 18.266 15.9793 18.39 15.9302C18.5119 15.8819 18.6213 15.8067 18.71 15.7102L21.71 12.7102C21.809 12.6196 21.8845 12.5063 21.93 12.3802C21.9779 12.2593 22.0016 12.1302 22 12.0002C21.9912 11.8651 21.9573 11.7328 21.9 11.6102ZM18.19 18.1702C18.0105 18.0489 17.7964 17.9893 17.58 18.0002C17.3498 18.002 17.1273 18.0833 16.95 18.2302C16.2114 18.8417 15.3629 19.3066 14.45 19.6002C13.2487 19.997 11.9704 20.1032 10.72 19.9102C9.47107 19.7095 8.28625 19.2199 7.26005 18.4802C5.71443 17.3605 4.62003 15.7252 4.17441 13.8694C3.7288 12.0136 3.96134 10.0596 4.83005 8.36018C5.69149 6.65435 7.13511 5.31324 8.89965 4.57954C10.6642 3.84584 12.6331 3.76803 14.45 4.36018C15.3822 4.66315 16.2478 5.14176 17 5.77018C17.1693 5.91077 17.3802 5.99161 17.6 6.00018C17.807 6.01045 18.0114 5.95055 18.18 5.83018C18.3522 5.71646 18.4849 5.5523 18.56 5.36018C18.6198 5.16124 18.6198 4.94913 18.56 4.75018C18.5083 4.55135 18.3966 4.37327 18.24 4.24018C17.6006 3.71049 16.8946 3.26672 16.14 2.92018C14.523 2.17466 12.7363 1.87441 10.9644 2.05047C9.19248 2.22653 7.49974 2.87251 6.06104 3.92166C4.62234 4.97081 3.48987 6.38509 2.78063 8.01835C2.07139 9.65162 1.81111 11.4446 2.02669 13.2122C2.24226 14.9797 2.92587 16.6576 4.00689 18.0725C5.0879 19.4874 6.5271 20.588 8.1758 21.2606C9.82449 21.9332 11.6229 22.1534 13.3851 21.8984C15.1474 21.6434 16.8096 20.9225 18.2 19.8102C18.3802 19.6897 18.5114 19.5088 18.57 19.3002C18.6379 19.0957 18.6379 18.8747 18.57 18.6702C18.5004 18.467 18.3671 18.2917 18.19 18.1702Z"
|
|
17
|
+
})
|
|
18
|
+
});
|
|
19
|
+
exports.IconSignout = IconSignout;
|
|
@@ -685,6 +685,17 @@ Object.keys(_IconArrowback).forEach(function (key) {
|
|
|
685
685
|
}
|
|
686
686
|
});
|
|
687
687
|
});
|
|
688
|
+
var _IconArrowdown = require("./IconArrowdown");
|
|
689
|
+
Object.keys(_IconArrowdown).forEach(function (key) {
|
|
690
|
+
if (key === "default" || key === "__esModule") return;
|
|
691
|
+
if (key in exports && exports[key] === _IconArrowdown[key]) return;
|
|
692
|
+
Object.defineProperty(exports, key, {
|
|
693
|
+
enumerable: true,
|
|
694
|
+
get: function () {
|
|
695
|
+
return _IconArrowdown[key];
|
|
696
|
+
}
|
|
697
|
+
});
|
|
698
|
+
});
|
|
688
699
|
var _IconArrowline = require("./IconArrowline");
|
|
689
700
|
Object.keys(_IconArrowline).forEach(function (key) {
|
|
690
701
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -729,6 +740,17 @@ Object.keys(_IconArrownext).forEach(function (key) {
|
|
|
729
740
|
}
|
|
730
741
|
});
|
|
731
742
|
});
|
|
743
|
+
var _IconArrowup = require("./IconArrowup");
|
|
744
|
+
Object.keys(_IconArrowup).forEach(function (key) {
|
|
745
|
+
if (key === "default" || key === "__esModule") return;
|
|
746
|
+
if (key in exports && exports[key] === _IconArrowup[key]) return;
|
|
747
|
+
Object.defineProperty(exports, key, {
|
|
748
|
+
enumerable: true,
|
|
749
|
+
get: function () {
|
|
750
|
+
return _IconArrowup[key];
|
|
751
|
+
}
|
|
752
|
+
});
|
|
753
|
+
});
|
|
732
754
|
var _IconArtificialinsemination = require("./IconArtificialinsemination");
|
|
733
755
|
Object.keys(_IconArtificialinsemination).forEach(function (key) {
|
|
734
756
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -2588,6 +2610,17 @@ Object.keys(_IconChevrondown).forEach(function (key) {
|
|
|
2588
2610
|
}
|
|
2589
2611
|
});
|
|
2590
2612
|
});
|
|
2613
|
+
var _IconChevrondowncircle = require("./IconChevrondowncircle");
|
|
2614
|
+
Object.keys(_IconChevrondowncircle).forEach(function (key) {
|
|
2615
|
+
if (key === "default" || key === "__esModule") return;
|
|
2616
|
+
if (key in exports && exports[key] === _IconChevrondowncircle[key]) return;
|
|
2617
|
+
Object.defineProperty(exports, key, {
|
|
2618
|
+
enumerable: true,
|
|
2619
|
+
get: function () {
|
|
2620
|
+
return _IconChevrondowncircle[key];
|
|
2621
|
+
}
|
|
2622
|
+
});
|
|
2623
|
+
});
|
|
2591
2624
|
var _IconChevronleft = require("./IconChevronleft");
|
|
2592
2625
|
Object.keys(_IconChevronleft).forEach(function (key) {
|
|
2593
2626
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -2599,6 +2632,17 @@ Object.keys(_IconChevronleft).forEach(function (key) {
|
|
|
2599
2632
|
}
|
|
2600
2633
|
});
|
|
2601
2634
|
});
|
|
2635
|
+
var _IconChevronleftcircle = require("./IconChevronleftcircle");
|
|
2636
|
+
Object.keys(_IconChevronleftcircle).forEach(function (key) {
|
|
2637
|
+
if (key === "default" || key === "__esModule") return;
|
|
2638
|
+
if (key in exports && exports[key] === _IconChevronleftcircle[key]) return;
|
|
2639
|
+
Object.defineProperty(exports, key, {
|
|
2640
|
+
enumerable: true,
|
|
2641
|
+
get: function () {
|
|
2642
|
+
return _IconChevronleftcircle[key];
|
|
2643
|
+
}
|
|
2644
|
+
});
|
|
2645
|
+
});
|
|
2602
2646
|
var _IconChevronright = require("./IconChevronright");
|
|
2603
2647
|
Object.keys(_IconChevronright).forEach(function (key) {
|
|
2604
2648
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -2610,6 +2654,17 @@ Object.keys(_IconChevronright).forEach(function (key) {
|
|
|
2610
2654
|
}
|
|
2611
2655
|
});
|
|
2612
2656
|
});
|
|
2657
|
+
var _IconChevronrightcircle = require("./IconChevronrightcircle");
|
|
2658
|
+
Object.keys(_IconChevronrightcircle).forEach(function (key) {
|
|
2659
|
+
if (key === "default" || key === "__esModule") return;
|
|
2660
|
+
if (key in exports && exports[key] === _IconChevronrightcircle[key]) return;
|
|
2661
|
+
Object.defineProperty(exports, key, {
|
|
2662
|
+
enumerable: true,
|
|
2663
|
+
get: function () {
|
|
2664
|
+
return _IconChevronrightcircle[key];
|
|
2665
|
+
}
|
|
2666
|
+
});
|
|
2667
|
+
});
|
|
2613
2668
|
var _IconChevronup = require("./IconChevronup");
|
|
2614
2669
|
Object.keys(_IconChevronup).forEach(function (key) {
|
|
2615
2670
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -2621,6 +2676,17 @@ Object.keys(_IconChevronup).forEach(function (key) {
|
|
|
2621
2676
|
}
|
|
2622
2677
|
});
|
|
2623
2678
|
});
|
|
2679
|
+
var _IconChevronupcircle = require("./IconChevronupcircle");
|
|
2680
|
+
Object.keys(_IconChevronupcircle).forEach(function (key) {
|
|
2681
|
+
if (key === "default" || key === "__esModule") return;
|
|
2682
|
+
if (key in exports && exports[key] === _IconChevronupcircle[key]) return;
|
|
2683
|
+
Object.defineProperty(exports, key, {
|
|
2684
|
+
enumerable: true,
|
|
2685
|
+
get: function () {
|
|
2686
|
+
return _IconChevronupcircle[key];
|
|
2687
|
+
}
|
|
2688
|
+
});
|
|
2689
|
+
});
|
|
2624
2690
|
var _IconChildrengame = require("./IconChildrengame");
|
|
2625
2691
|
Object.keys(_IconChildrengame).forEach(function (key) {
|
|
2626
2692
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -8319,6 +8385,50 @@ Object.keys(_IconOrders).forEach(function (key) {
|
|
|
8319
8385
|
}
|
|
8320
8386
|
});
|
|
8321
8387
|
});
|
|
8388
|
+
var _IconOsnavback = require("./IconOsnavback");
|
|
8389
|
+
Object.keys(_IconOsnavback).forEach(function (key) {
|
|
8390
|
+
if (key === "default" || key === "__esModule") return;
|
|
8391
|
+
if (key in exports && exports[key] === _IconOsnavback[key]) return;
|
|
8392
|
+
Object.defineProperty(exports, key, {
|
|
8393
|
+
enumerable: true,
|
|
8394
|
+
get: function () {
|
|
8395
|
+
return _IconOsnavback[key];
|
|
8396
|
+
}
|
|
8397
|
+
});
|
|
8398
|
+
});
|
|
8399
|
+
var _IconOsnavcenter = require("./IconOsnavcenter");
|
|
8400
|
+
Object.keys(_IconOsnavcenter).forEach(function (key) {
|
|
8401
|
+
if (key === "default" || key === "__esModule") return;
|
|
8402
|
+
if (key in exports && exports[key] === _IconOsnavcenter[key]) return;
|
|
8403
|
+
Object.defineProperty(exports, key, {
|
|
8404
|
+
enumerable: true,
|
|
8405
|
+
get: function () {
|
|
8406
|
+
return _IconOsnavcenter[key];
|
|
8407
|
+
}
|
|
8408
|
+
});
|
|
8409
|
+
});
|
|
8410
|
+
var _IconOsnavhome = require("./IconOsnavhome");
|
|
8411
|
+
Object.keys(_IconOsnavhome).forEach(function (key) {
|
|
8412
|
+
if (key === "default" || key === "__esModule") return;
|
|
8413
|
+
if (key in exports && exports[key] === _IconOsnavhome[key]) return;
|
|
8414
|
+
Object.defineProperty(exports, key, {
|
|
8415
|
+
enumerable: true,
|
|
8416
|
+
get: function () {
|
|
8417
|
+
return _IconOsnavhome[key];
|
|
8418
|
+
}
|
|
8419
|
+
});
|
|
8420
|
+
});
|
|
8421
|
+
var _IconOsnavtask = require("./IconOsnavtask");
|
|
8422
|
+
Object.keys(_IconOsnavtask).forEach(function (key) {
|
|
8423
|
+
if (key === "default" || key === "__esModule") return;
|
|
8424
|
+
if (key in exports && exports[key] === _IconOsnavtask[key]) return;
|
|
8425
|
+
Object.defineProperty(exports, key, {
|
|
8426
|
+
enumerable: true,
|
|
8427
|
+
get: function () {
|
|
8428
|
+
return _IconOsnavtask[key];
|
|
8429
|
+
}
|
|
8430
|
+
});
|
|
8431
|
+
});
|
|
8322
8432
|
var _IconOtp = require("./IconOtp");
|
|
8323
8433
|
Object.keys(_IconOtp).forEach(function (key) {
|
|
8324
8434
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -10475,6 +10585,28 @@ Object.keys(_IconSign).forEach(function (key) {
|
|
|
10475
10585
|
}
|
|
10476
10586
|
});
|
|
10477
10587
|
});
|
|
10588
|
+
var _IconSignin = require("./IconSignin");
|
|
10589
|
+
Object.keys(_IconSignin).forEach(function (key) {
|
|
10590
|
+
if (key === "default" || key === "__esModule") return;
|
|
10591
|
+
if (key in exports && exports[key] === _IconSignin[key]) return;
|
|
10592
|
+
Object.defineProperty(exports, key, {
|
|
10593
|
+
enumerable: true,
|
|
10594
|
+
get: function () {
|
|
10595
|
+
return _IconSignin[key];
|
|
10596
|
+
}
|
|
10597
|
+
});
|
|
10598
|
+
});
|
|
10599
|
+
var _IconSignout = require("./IconSignout");
|
|
10600
|
+
Object.keys(_IconSignout).forEach(function (key) {
|
|
10601
|
+
if (key === "default" || key === "__esModule") return;
|
|
10602
|
+
if (key in exports && exports[key] === _IconSignout[key]) return;
|
|
10603
|
+
Object.defineProperty(exports, key, {
|
|
10604
|
+
enumerable: true,
|
|
10605
|
+
get: function () {
|
|
10606
|
+
return _IconSignout[key];
|
|
10607
|
+
}
|
|
10608
|
+
});
|
|
10609
|
+
});
|
|
10478
10610
|
var _IconSim = require("./IconSim");
|
|
10479
10611
|
Object.keys(_IconSim).forEach(function (key) {
|
|
10480
10612
|
if (key === "default" || key === "__esModule") return;
|