@synerise/ds-icon 0.52.0 → 0.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/cjs/icons/L/index.d.ts +18 -18
- package/dist/cjs/icons/L/index.js +36 -36
- package/dist/cjs/icons/StatsColorM.d.ts +3 -0
- package/dist/cjs/icons/StatsColorM.js +8 -0
- package/dist/cjs/icons/StatsGrayM.d.ts +3 -0
- package/dist/cjs/icons/StatsGrayM.js +14 -0
- package/dist/cjs/icons/UsersColorM.d.ts +3 -0
- package/dist/cjs/icons/UsersColorM.js +19 -0
- package/dist/cjs/icons/UsersGrayM.d.ts +3 -0
- package/dist/cjs/icons/UsersGrayM.js +25 -0
- package/dist/cjs/icons/WorkspacesColor.d.ts +3 -0
- package/dist/cjs/icons/WorkspacesColor.js +19 -0
- package/dist/cjs/icons/WorkspacesGrayM.d.ts +3 -0
- package/dist/cjs/icons/WorkspacesGrayM.js +15 -0
- package/dist/cjs/icons/XL/index.d.ts +26 -26
- package/dist/cjs/icons/XL/index.js +52 -52
- package/dist/cjs/icons/additional/index.d.ts +25 -25
- package/dist/cjs/icons/additional/index.js +50 -50
- package/dist/cjs/icons/index.d.ts +248 -242
- package/dist/cjs/icons/index.js +496 -484
- package/dist/esm/icons/L/index.d.ts +18 -18
- package/dist/esm/icons/L/index.js +18 -18
- package/dist/esm/icons/StatsColorM.d.ts +3 -0
- package/dist/esm/icons/StatsColorM.js +6 -0
- package/dist/esm/icons/StatsGrayM.d.ts +3 -0
- package/dist/esm/icons/StatsGrayM.js +12 -0
- package/dist/esm/icons/UsersColorM.d.ts +3 -0
- package/dist/esm/icons/UsersColorM.js +17 -0
- package/dist/esm/icons/UsersGrayM.d.ts +3 -0
- package/dist/esm/icons/UsersGrayM.js +23 -0
- package/dist/esm/icons/WorkspacesColor.d.ts +3 -0
- package/dist/esm/icons/WorkspacesColor.js +17 -0
- package/dist/esm/icons/WorkspacesGrayM.d.ts +3 -0
- package/dist/esm/icons/WorkspacesGrayM.js +13 -0
- package/dist/esm/icons/XL/index.d.ts +26 -26
- package/dist/esm/icons/XL/index.js +26 -26
- package/dist/esm/icons/additional/index.d.ts +25 -25
- package/dist/esm/icons/additional/index.js +25 -25
- package/dist/esm/icons/index.d.ts +248 -242
- package/dist/esm/icons/index.js +248 -242
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.53.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@0.52.0...@synerise/ds-icon@0.53.0) (2023-01-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **icon:** workspaces icon color name ([06dcd94](https://github.com/Synerise/synerise-design/commit/06dcd945e0eefa29d2d24c1c028efbb06a26a066))
|
|
12
|
+
* **icon:** workspaces icons ([baed041](https://github.com/Synerise/synerise-design/commit/baed0414a32f1395f52aff8181c5e73d10960408))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [0.52.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@0.51.0...@synerise/ds-icon@0.52.0) (2022-12-07)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
export { default as ButtonL } from './ButtonL';
|
|
2
1
|
export { default as AddL } from './AddL';
|
|
2
|
+
export { default as ButtonL } from './ButtonL';
|
|
3
3
|
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
4
|
+
export { default as CloseL } from './CloseL';
|
|
4
5
|
export { default as CheckL } from './CheckL';
|
|
5
6
|
export { default as CheckboxL } from './CheckboxL';
|
|
6
|
-
export { default as CloseL } from './CloseL';
|
|
7
7
|
export { default as ColumnL } from './ColumnL';
|
|
8
8
|
export { default as ComboL } from './ComboL';
|
|
9
|
-
export { default as CountdownL } from './CountdownL';
|
|
10
9
|
export { default as DividerL } from './DividerL';
|
|
10
|
+
export { default as CountdownL } from './CountdownL';
|
|
11
11
|
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
12
12
|
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
13
13
|
export { default as FolderL } from './FolderL';
|
|
14
14
|
export { default as FormEditL } from './FormEditL';
|
|
15
15
|
export { default as FormGroupL } from './FormGroupL';
|
|
16
16
|
export { default as HashL } from './HashL';
|
|
17
|
-
export { default as
|
|
17
|
+
export { default as FormL } from './FormL';
|
|
18
18
|
export { default as ImageL } from './ImageL';
|
|
19
19
|
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
20
|
-
export { default as
|
|
20
|
+
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
21
21
|
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
22
22
|
export { default as InfoL } from './InfoL';
|
|
23
|
-
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
24
|
-
export { default as InputL } from './InputL';
|
|
25
23
|
export { default as LabelL } from './LabelL';
|
|
24
|
+
export { default as InputL } from './InputL';
|
|
26
25
|
export { default as LineL } from './LineL';
|
|
27
26
|
export { default as LinkL } from './LinkL';
|
|
28
|
-
export { default as
|
|
27
|
+
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
29
28
|
export { default as MobileBlockL } from './MobileBlockL';
|
|
30
|
-
export { default as
|
|
31
|
-
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
29
|
+
export { default as LocationL } from './LocationL';
|
|
32
30
|
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
33
|
-
export { default as
|
|
31
|
+
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
34
32
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
35
|
-
export { default as
|
|
33
|
+
export { default as MobileClickL } from './MobileClickL';
|
|
34
|
+
export { default as ImageUrlL } from './ImageUrlL';
|
|
35
|
+
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
36
36
|
export { default as MobileUrlL } from './MobileUrlL';
|
|
37
|
+
export { default as MobileLinkL } from './MobileLinkL';
|
|
37
38
|
export { default as MultilineL } from './MultilineL';
|
|
38
39
|
export { default as NavbarL } from './NavbarL';
|
|
39
|
-
export { default as NoData } from './NoData';
|
|
40
40
|
export { default as NoPermissionL } from './NoPermissionL';
|
|
41
|
+
export { default as NoData } from './NoData';
|
|
41
42
|
export { default as PieL } from './PieL';
|
|
42
43
|
export { default as QuoteL } from './QuoteL';
|
|
43
44
|
export { default as RadioL } from './RadioL';
|
|
44
45
|
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
45
|
-
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
46
46
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
47
47
|
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
48
48
|
export { default as Section12L } from './Section12L';
|
|
49
|
+
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
49
50
|
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
50
|
-
export { default as Section13L } from './Section13L';
|
|
51
51
|
export { default as Section37L } from './Section37L';
|
|
52
|
+
export { default as Section13L } from './Section13L';
|
|
52
53
|
export { default as SectionL } from './SectionL';
|
|
53
54
|
export { default as SelectL } from './SelectL';
|
|
54
55
|
export { default as ShowL } from './ShowL';
|
|
55
56
|
export { default as SliderL } from './SliderL';
|
|
56
57
|
export { default as SpinnerL } from './SpinnerL';
|
|
57
|
-
export { default as StackedL } from './StackedL';
|
|
58
58
|
export { default as TableL } from './TableL';
|
|
59
|
+
export { default as StackedL } from './StackedL';
|
|
59
60
|
export { default as TextareaL } from './TextareaL';
|
|
60
61
|
export { default as TextL } from './TextL';
|
|
61
|
-
export { default as TooltipL } from './TooltipL';
|
|
62
62
|
export { default as VideoL } from './VideoL';
|
|
63
|
+
export { default as TooltipL } from './TooltipL';
|
|
63
64
|
export { default as WarningL } from './WarningL';
|
|
64
|
-
export { default as FormL } from './FormL';
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var ButtonL_1 = require("./ButtonL");
|
|
4
|
-
Object.defineProperty(exports, "ButtonL", { enumerable: true, get: function () { return ButtonL_1.default; } });
|
|
5
3
|
var AddL_1 = require("./AddL");
|
|
6
4
|
Object.defineProperty(exports, "AddL", { enumerable: true, get: function () { return AddL_1.default; } });
|
|
5
|
+
var ButtonL_1 = require("./ButtonL");
|
|
6
|
+
Object.defineProperty(exports, "ButtonL", { enumerable: true, get: function () { return ButtonL_1.default; } });
|
|
7
7
|
var ButtonSubmitL_1 = require("./ButtonSubmitL");
|
|
8
8
|
Object.defineProperty(exports, "ButtonSubmitL", { enumerable: true, get: function () { return ButtonSubmitL_1.default; } });
|
|
9
|
+
var CloseL_1 = require("./CloseL");
|
|
10
|
+
Object.defineProperty(exports, "CloseL", { enumerable: true, get: function () { return CloseL_1.default; } });
|
|
9
11
|
var CheckL_1 = require("./CheckL");
|
|
10
12
|
Object.defineProperty(exports, "CheckL", { enumerable: true, get: function () { return CheckL_1.default; } });
|
|
11
13
|
var CheckboxL_1 = require("./CheckboxL");
|
|
12
14
|
Object.defineProperty(exports, "CheckboxL", { enumerable: true, get: function () { return CheckboxL_1.default; } });
|
|
13
|
-
var CloseL_1 = require("./CloseL");
|
|
14
|
-
Object.defineProperty(exports, "CloseL", { enumerable: true, get: function () { return CloseL_1.default; } });
|
|
15
15
|
var ColumnL_1 = require("./ColumnL");
|
|
16
16
|
Object.defineProperty(exports, "ColumnL", { enumerable: true, get: function () { return ColumnL_1.default; } });
|
|
17
17
|
var ComboL_1 = require("./ComboL");
|
|
18
18
|
Object.defineProperty(exports, "ComboL", { enumerable: true, get: function () { return ComboL_1.default; } });
|
|
19
|
-
var CountdownL_1 = require("./CountdownL");
|
|
20
|
-
Object.defineProperty(exports, "CountdownL", { enumerable: true, get: function () { return CountdownL_1.default; } });
|
|
21
19
|
var DividerL_1 = require("./DividerL");
|
|
22
20
|
Object.defineProperty(exports, "DividerL", { enumerable: true, get: function () { return DividerL_1.default; } });
|
|
21
|
+
var CountdownL_1 = require("./CountdownL");
|
|
22
|
+
Object.defineProperty(exports, "CountdownL", { enumerable: true, get: function () { return CountdownL_1.default; } });
|
|
23
23
|
var FileTypePictureL_1 = require("./FileTypePictureL");
|
|
24
24
|
Object.defineProperty(exports, "FileTypePictureL", { enumerable: true, get: function () { return FileTypePictureL_1.default; } });
|
|
25
25
|
var FolderFavouriteFlatL_1 = require("./FolderFavouriteFlatL");
|
|
@@ -32,54 +32,56 @@ var FormGroupL_1 = require("./FormGroupL");
|
|
|
32
32
|
Object.defineProperty(exports, "FormGroupL", { enumerable: true, get: function () { return FormGroupL_1.default; } });
|
|
33
33
|
var HashL_1 = require("./HashL");
|
|
34
34
|
Object.defineProperty(exports, "HashL", { enumerable: true, get: function () { return HashL_1.default; } });
|
|
35
|
-
var
|
|
36
|
-
Object.defineProperty(exports, "
|
|
35
|
+
var FormL_1 = require("./FormL");
|
|
36
|
+
Object.defineProperty(exports, "FormL", { enumerable: true, get: function () { return FormL_1.default; } });
|
|
37
37
|
var ImageL_1 = require("./ImageL");
|
|
38
38
|
Object.defineProperty(exports, "ImageL", { enumerable: true, get: function () { return ImageL_1.default; } });
|
|
39
39
|
var ImagePotraitL_1 = require("./ImagePotraitL");
|
|
40
40
|
Object.defineProperty(exports, "ImagePotraitL", { enumerable: true, get: function () { return ImagePotraitL_1.default; } });
|
|
41
|
-
var
|
|
42
|
-
Object.defineProperty(exports, "
|
|
41
|
+
var ImageLandscapeL_1 = require("./ImageLandscapeL");
|
|
42
|
+
Object.defineProperty(exports, "ImageLandscapeL", { enumerable: true, get: function () { return ImageLandscapeL_1.default; } });
|
|
43
43
|
var InboxNoResultsL_1 = require("./InboxNoResultsL");
|
|
44
44
|
Object.defineProperty(exports, "InboxNoResultsL", { enumerable: true, get: function () { return InboxNoResultsL_1.default; } });
|
|
45
45
|
var InfoL_1 = require("./InfoL");
|
|
46
46
|
Object.defineProperty(exports, "InfoL", { enumerable: true, get: function () { return InfoL_1.default; } });
|
|
47
|
-
var InformationNoSearchResultL_1 = require("./InformationNoSearchResultL");
|
|
48
|
-
Object.defineProperty(exports, "InformationNoSearchResultL", { enumerable: true, get: function () { return InformationNoSearchResultL_1.default; } });
|
|
49
|
-
var InputL_1 = require("./InputL");
|
|
50
|
-
Object.defineProperty(exports, "InputL", { enumerable: true, get: function () { return InputL_1.default; } });
|
|
51
47
|
var LabelL_1 = require("./LabelL");
|
|
52
48
|
Object.defineProperty(exports, "LabelL", { enumerable: true, get: function () { return LabelL_1.default; } });
|
|
49
|
+
var InputL_1 = require("./InputL");
|
|
50
|
+
Object.defineProperty(exports, "InputL", { enumerable: true, get: function () { return InputL_1.default; } });
|
|
53
51
|
var LineL_1 = require("./LineL");
|
|
54
52
|
Object.defineProperty(exports, "LineL", { enumerable: true, get: function () { return LineL_1.default; } });
|
|
55
53
|
var LinkL_1 = require("./LinkL");
|
|
56
54
|
Object.defineProperty(exports, "LinkL", { enumerable: true, get: function () { return LinkL_1.default; } });
|
|
57
|
-
var
|
|
58
|
-
Object.defineProperty(exports, "
|
|
55
|
+
var InformationNoSearchResultL_1 = require("./InformationNoSearchResultL");
|
|
56
|
+
Object.defineProperty(exports, "InformationNoSearchResultL", { enumerable: true, get: function () { return InformationNoSearchResultL_1.default; } });
|
|
59
57
|
var MobileBlockL_1 = require("./MobileBlockL");
|
|
60
58
|
Object.defineProperty(exports, "MobileBlockL", { enumerable: true, get: function () { return MobileBlockL_1.default; } });
|
|
61
|
-
var
|
|
62
|
-
Object.defineProperty(exports, "
|
|
63
|
-
var MobileLayout2L_1 = require("./MobileLayout2L");
|
|
64
|
-
Object.defineProperty(exports, "MobileLayout2L", { enumerable: true, get: function () { return MobileLayout2L_1.default; } });
|
|
59
|
+
var LocationL_1 = require("./LocationL");
|
|
60
|
+
Object.defineProperty(exports, "LocationL", { enumerable: true, get: function () { return LocationL_1.default; } });
|
|
65
61
|
var MobileLayout1L_1 = require("./MobileLayout1L");
|
|
66
62
|
Object.defineProperty(exports, "MobileLayout1L", { enumerable: true, get: function () { return MobileLayout1L_1.default; } });
|
|
67
|
-
var
|
|
68
|
-
Object.defineProperty(exports, "
|
|
63
|
+
var MobileLayout2L_1 = require("./MobileLayout2L");
|
|
64
|
+
Object.defineProperty(exports, "MobileLayout2L", { enumerable: true, get: function () { return MobileLayout2L_1.default; } });
|
|
69
65
|
var MobileLayout4L_1 = require("./MobileLayout4L");
|
|
70
66
|
Object.defineProperty(exports, "MobileLayout4L", { enumerable: true, get: function () { return MobileLayout4L_1.default; } });
|
|
71
|
-
var
|
|
72
|
-
Object.defineProperty(exports, "
|
|
67
|
+
var MobileClickL_1 = require("./MobileClickL");
|
|
68
|
+
Object.defineProperty(exports, "MobileClickL", { enumerable: true, get: function () { return MobileClickL_1.default; } });
|
|
69
|
+
var ImageUrlL_1 = require("./ImageUrlL");
|
|
70
|
+
Object.defineProperty(exports, "ImageUrlL", { enumerable: true, get: function () { return ImageUrlL_1.default; } });
|
|
71
|
+
var MobileLayout3L_1 = require("./MobileLayout3L");
|
|
72
|
+
Object.defineProperty(exports, "MobileLayout3L", { enumerable: true, get: function () { return MobileLayout3L_1.default; } });
|
|
73
73
|
var MobileUrlL_1 = require("./MobileUrlL");
|
|
74
74
|
Object.defineProperty(exports, "MobileUrlL", { enumerable: true, get: function () { return MobileUrlL_1.default; } });
|
|
75
|
+
var MobileLinkL_1 = require("./MobileLinkL");
|
|
76
|
+
Object.defineProperty(exports, "MobileLinkL", { enumerable: true, get: function () { return MobileLinkL_1.default; } });
|
|
75
77
|
var MultilineL_1 = require("./MultilineL");
|
|
76
78
|
Object.defineProperty(exports, "MultilineL", { enumerable: true, get: function () { return MultilineL_1.default; } });
|
|
77
79
|
var NavbarL_1 = require("./NavbarL");
|
|
78
80
|
Object.defineProperty(exports, "NavbarL", { enumerable: true, get: function () { return NavbarL_1.default; } });
|
|
79
|
-
var NoData_1 = require("./NoData");
|
|
80
|
-
Object.defineProperty(exports, "NoData", { enumerable: true, get: function () { return NoData_1.default; } });
|
|
81
81
|
var NoPermissionL_1 = require("./NoPermissionL");
|
|
82
82
|
Object.defineProperty(exports, "NoPermissionL", { enumerable: true, get: function () { return NoPermissionL_1.default; } });
|
|
83
|
+
var NoData_1 = require("./NoData");
|
|
84
|
+
Object.defineProperty(exports, "NoData", { enumerable: true, get: function () { return NoData_1.default; } });
|
|
83
85
|
var PieL_1 = require("./PieL");
|
|
84
86
|
Object.defineProperty(exports, "PieL", { enumerable: true, get: function () { return PieL_1.default; } });
|
|
85
87
|
var QuoteL_1 = require("./QuoteL");
|
|
@@ -88,20 +90,20 @@ var RadioL_1 = require("./RadioL");
|
|
|
88
90
|
Object.defineProperty(exports, "RadioL", { enumerable: true, get: function () { return RadioL_1.default; } });
|
|
89
91
|
var RelationManyManyL_1 = require("./RelationManyManyL");
|
|
90
92
|
Object.defineProperty(exports, "RelationManyManyL", { enumerable: true, get: function () { return RelationManyManyL_1.default; } });
|
|
91
|
-
var RelationManyOneL_1 = require("./RelationManyOneL");
|
|
92
|
-
Object.defineProperty(exports, "RelationManyOneL", { enumerable: true, get: function () { return RelationManyOneL_1.default; } });
|
|
93
93
|
var RelationOneManyL_1 = require("./RelationOneManyL");
|
|
94
94
|
Object.defineProperty(exports, "RelationOneManyL", { enumerable: true, get: function () { return RelationOneManyL_1.default; } });
|
|
95
95
|
var RelationOneOneL_1 = require("./RelationOneOneL");
|
|
96
96
|
Object.defineProperty(exports, "RelationOneOneL", { enumerable: true, get: function () { return RelationOneOneL_1.default; } });
|
|
97
97
|
var Section12L_1 = require("./Section12L");
|
|
98
98
|
Object.defineProperty(exports, "Section12L", { enumerable: true, get: function () { return Section12L_1.default; } });
|
|
99
|
+
var RelationManyOneL_1 = require("./RelationManyOneL");
|
|
100
|
+
Object.defineProperty(exports, "RelationManyOneL", { enumerable: true, get: function () { return RelationManyOneL_1.default; } });
|
|
99
101
|
var SearchNoResultsL_1 = require("./SearchNoResultsL");
|
|
100
102
|
Object.defineProperty(exports, "SearchNoResultsL", { enumerable: true, get: function () { return SearchNoResultsL_1.default; } });
|
|
101
|
-
var Section13L_1 = require("./Section13L");
|
|
102
|
-
Object.defineProperty(exports, "Section13L", { enumerable: true, get: function () { return Section13L_1.default; } });
|
|
103
103
|
var Section37L_1 = require("./Section37L");
|
|
104
104
|
Object.defineProperty(exports, "Section37L", { enumerable: true, get: function () { return Section37L_1.default; } });
|
|
105
|
+
var Section13L_1 = require("./Section13L");
|
|
106
|
+
Object.defineProperty(exports, "Section13L", { enumerable: true, get: function () { return Section13L_1.default; } });
|
|
105
107
|
var SectionL_1 = require("./SectionL");
|
|
106
108
|
Object.defineProperty(exports, "SectionL", { enumerable: true, get: function () { return SectionL_1.default; } });
|
|
107
109
|
var SelectL_1 = require("./SelectL");
|
|
@@ -112,19 +114,17 @@ var SliderL_1 = require("./SliderL");
|
|
|
112
114
|
Object.defineProperty(exports, "SliderL", { enumerable: true, get: function () { return SliderL_1.default; } });
|
|
113
115
|
var SpinnerL_1 = require("./SpinnerL");
|
|
114
116
|
Object.defineProperty(exports, "SpinnerL", { enumerable: true, get: function () { return SpinnerL_1.default; } });
|
|
115
|
-
var StackedL_1 = require("./StackedL");
|
|
116
|
-
Object.defineProperty(exports, "StackedL", { enumerable: true, get: function () { return StackedL_1.default; } });
|
|
117
117
|
var TableL_1 = require("./TableL");
|
|
118
118
|
Object.defineProperty(exports, "TableL", { enumerable: true, get: function () { return TableL_1.default; } });
|
|
119
|
+
var StackedL_1 = require("./StackedL");
|
|
120
|
+
Object.defineProperty(exports, "StackedL", { enumerable: true, get: function () { return StackedL_1.default; } });
|
|
119
121
|
var TextareaL_1 = require("./TextareaL");
|
|
120
122
|
Object.defineProperty(exports, "TextareaL", { enumerable: true, get: function () { return TextareaL_1.default; } });
|
|
121
123
|
var TextL_1 = require("./TextL");
|
|
122
124
|
Object.defineProperty(exports, "TextL", { enumerable: true, get: function () { return TextL_1.default; } });
|
|
123
|
-
var TooltipL_1 = require("./TooltipL");
|
|
124
|
-
Object.defineProperty(exports, "TooltipL", { enumerable: true, get: function () { return TooltipL_1.default; } });
|
|
125
125
|
var VideoL_1 = require("./VideoL");
|
|
126
126
|
Object.defineProperty(exports, "VideoL", { enumerable: true, get: function () { return VideoL_1.default; } });
|
|
127
|
+
var TooltipL_1 = require("./TooltipL");
|
|
128
|
+
Object.defineProperty(exports, "TooltipL", { enumerable: true, get: function () { return TooltipL_1.default; } });
|
|
127
129
|
var WarningL_1 = require("./WarningL");
|
|
128
130
|
Object.defineProperty(exports, "WarningL", { enumerable: true, get: function () { return WarningL_1.default; } });
|
|
129
|
-
var FormL_1 = require("./FormL");
|
|
130
|
-
Object.defineProperty(exports, "FormL", { enumerable: true, get: function () { return FormL_1.default; } });
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const StatsColorM = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "stats-color-m" }, props),
|
|
5
|
+
React.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
6
|
+
React.createElement("path", { d: "M12 3a9 9 0 019 9 9 9 0 01-9 9 9 9 0 01-9-9 9 9 0 019-9", fill: "#8BCAFF" }),
|
|
7
|
+
React.createElement("path", { d: "M12 3v9h9a9 9 0 00-9-9", fill: "#0B68FF" }))));
|
|
8
|
+
exports.default = StatsColorM;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const StatsGrayM = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "stats-gray-m" }, props),
|
|
5
|
+
React.createElement("defs", null,
|
|
6
|
+
React.createElement("path", { d: "M0 9a9 9 0 009 9 9 9 0 009-9 9 9 0 00-9-9 9 9 0 00-9 9zm1.5 0a7.5 7.5 0 0115 0 7.5 7.5 0 01-15 0z", id: "prefix__svg-3221177000a" })),
|
|
7
|
+
React.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
8
|
+
React.createElement("path", { d: "M0 0h24v24H0z" }),
|
|
9
|
+
React.createElement("g", { transform: "translate(3 3)" },
|
|
10
|
+
React.createElement("mask", { id: "prefix__svg-3221177000b", fill: "#fff" },
|
|
11
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-3221177000a" })),
|
|
12
|
+
React.createElement("path", { fill: "#6A7580", mask: "url(#prefix__svg-3221177000b)", d: "M-1-1h20v20H-1z" })),
|
|
13
|
+
React.createElement("path", { d: "M12 3.857V12h8.088", stroke: "#6A7580", strokeLinejoin: "round", strokeWidth: 1.5 }))));
|
|
14
|
+
exports.default = StatsGrayM;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const UsersColorM = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "users-color-m" }, props),
|
|
5
|
+
React.createElement("defs", null,
|
|
6
|
+
React.createElement("path", { id: "prefix__svg-912969211a", d: "M0 0h10.235v7.052H0z" }),
|
|
7
|
+
React.createElement("path", { id: "prefix__svg-912969211c", d: "M0 0h7.105v7.104H0z" })),
|
|
8
|
+
React.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
9
|
+
React.createElement("g", { transform: "translate(10.685 13.04)" },
|
|
10
|
+
React.createElement("mask", { id: "prefix__svg-912969211b", fill: "#fff" },
|
|
11
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-912969211a" })),
|
|
12
|
+
React.createElement("path", { d: "M4.161 0h1.913a4.161 4.161 0 014.161 4.161v1.391a1.5 1.5 0 01-1.5 1.5H1.5a1.5 1.5 0 01-1.5-1.5V4.161A4.161 4.161 0 014.161 0", fill: "#13C2BC", mask: "url(#prefix__svg-912969211b)" })),
|
|
13
|
+
React.createElement("path", { d: "M15.89 11.104a2.987 2.987 0 00-.01-5.975 2.987 2.987 0 00-2.986 2.987 2.996 2.996 0 002.995 2.988", fill: "#13C2BC" }),
|
|
14
|
+
React.createElement("g", { transform: "translate(4.565 4)" },
|
|
15
|
+
React.createElement("mask", { id: "prefix__svg-912969211d", fill: "#fff" },
|
|
16
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-912969211c" })),
|
|
17
|
+
React.createElement("path", { d: "M3.562 7.104A3.552 3.552 0 003.55 0 3.553 3.553 0 000 3.552a3.563 3.563 0 003.562 3.552", fill: "#6CDFD4", mask: "url(#prefix__svg-912969211d)" })),
|
|
18
|
+
React.createElement("path", { d: "M7.161 12.435h1.913a4.161 4.161 0 014.161 4.161v1.969a1.5 1.5 0 01-1.5 1.5H4.5a1.5 1.5 0 01-1.5-1.5v-1.969a4.161 4.161 0 014.161-4.161", fill: "#6CDFD4" }))));
|
|
19
|
+
exports.default = UsersColorM;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const UsersGrayM = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "users-gray-m" }, props),
|
|
5
|
+
React.createElement("defs", null,
|
|
6
|
+
React.createElement("path", { id: "prefix__svg-1494903243a", d: "M0 0h9.463v7.052H0z" }),
|
|
7
|
+
React.createElement("path", { id: "prefix__svg-1494903243c", d: "M0 0h7.104v7.105H0z" }),
|
|
8
|
+
React.createElement("path", { id: "prefix__svg-1494903243e", d: "M0 0h10.235v7.63H0z" })),
|
|
9
|
+
React.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
10
|
+
React.createElement("path", { d: "M0 0h24v24H0z" }),
|
|
11
|
+
React.createElement("g", { transform: "translate(11.457 13.013)" },
|
|
12
|
+
React.createElement("mask", { id: "prefix__svg-1494903243b", fill: "#fff" },
|
|
13
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-1494903243a" })),
|
|
14
|
+
React.createElement("path", { d: "M5.302 0h-1.85v1.5h1.85a2.664 2.664 0 012.661 2.661v1.391H.6v.292S-.04 7.052.002 7.052H7.963a1.5 1.5 0 001.5-1.5V4.161A4.161 4.161 0 005.303 0", fill: "#6A7580", mask: "url(#prefix__svg-1494903243b)" })),
|
|
15
|
+
React.createElement("path", { d: "M15.882 5.13h-.002a2.988 2.988 0 00-2.986 2.986 2.987 2.987 0 102.988-2.987m0 1.5a1.488 1.488 0 01.007 2.975 1.497 1.497 0 01-1.495-1.488A1.49 1.49 0 0115.88 6.63h.002", fill: "#6A7580" }),
|
|
16
|
+
React.createElement("g", { transform: "translate(4.565 4)" },
|
|
17
|
+
React.createElement("mask", { id: "prefix__svg-1494903243d", fill: "#fff" },
|
|
18
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-1494903243c" })),
|
|
19
|
+
React.createElement("path", { d: "M3.552 0h-.003A3.552 3.552 0 000 3.552a3.561 3.561 0 003.561 3.553A3.552 3.552 0 003.552 0m0 1.5c1.13 0 2.05.919 2.052 2.049a2.054 2.054 0 01-2.043 2.056A2.064 2.064 0 011.5 3.552c0-1.13.92-2.051 2.049-2.052h.003", fill: "#6A7580", mask: "url(#prefix__svg-1494903243d)" })),
|
|
20
|
+
React.createElement("g", { transform: "translate(3 12.435)" },
|
|
21
|
+
React.createElement("mask", { id: "prefix__svg-1494903243f", fill: "#fff" },
|
|
22
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-1494903243e" })),
|
|
23
|
+
React.createElement("path", { d: "M6.074 0H4.161A4.161 4.161 0 000 4.161V6.13a1.5 1.5 0 001.5 1.5h7.235a1.5 1.5 0 001.5-1.5V4.161A4.161 4.161 0 006.074 0m0 1.5a2.664 2.664 0 012.661 2.661V6.13H1.5V4.161A2.664 2.664 0 014.161 1.5h1.913", fill: "#6A7580", mask: "url(#prefix__svg-1494903243f)" })),
|
|
24
|
+
React.createElement("path", { d: "M15.66 13.763a.75.75 0 11-1.501 0 .75.75 0 011.5 0", fill: "#6A7580" }))));
|
|
25
|
+
exports.default = UsersGrayM;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const WorkspacesColor = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "workspaces-color" }, props),
|
|
5
|
+
React.createElement("defs", null,
|
|
6
|
+
React.createElement("path", { id: "prefix__svg-304266351a", d: "M0 0h8.3v8.228H0z" }),
|
|
7
|
+
React.createElement("path", { id: "prefix__svg-304266351c", d: "M0 0h8.3v8.228H0z" })),
|
|
8
|
+
React.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
9
|
+
React.createElement("path", { d: "M21 18.754v-3.728a2.253 2.253 0 00-2.25-2.25h-3.8a2.253 2.253 0 00-2.25 2.25v3.728a2.253 2.253 0 002.25 2.25h3.8a2.253 2.253 0 002.25-2.25", fill: "#B88CEE" }),
|
|
10
|
+
React.createElement("path", { d: "M21.076 8.978V5.25A2.253 2.253 0 0018.826 3h-3.8a2.253 2.253 0 00-2.25 2.25v3.728a2.253 2.253 0 002.25 2.25h3.8a2.253 2.253 0 002.25-2.25", fill: "#6D2ED3" }),
|
|
11
|
+
React.createElement("g", { transform: "translate(3 3.003)" },
|
|
12
|
+
React.createElement("mask", { id: "prefix__svg-304266351b", fill: "#fff" },
|
|
13
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-304266351a" })),
|
|
14
|
+
React.createElement("path", { d: "M8.3 5.978V2.25A2.253 2.253 0 006.05 0h-3.8A2.253 2.253 0 000 2.25v3.728a2.253 2.253 0 002.25 2.25h3.8a2.253 2.253 0 002.25-2.25", fill: "#B88CEE", mask: "url(#prefix__svg-304266351b)" })),
|
|
15
|
+
React.createElement("g", { transform: "translate(3 12.776)" },
|
|
16
|
+
React.createElement("mask", { id: "prefix__svg-304266351d", fill: "#fff" },
|
|
17
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-304266351c" })),
|
|
18
|
+
React.createElement("path", { d: "M8.3 5.978V2.25A2.253 2.253 0 006.05 0h-3.8A2.253 2.253 0 000 2.25v3.728a2.253 2.253 0 002.25 2.25h3.8a2.253 2.253 0 002.25-2.25", fill: "#D1ADF7", mask: "url(#prefix__svg-304266351d)" })))));
|
|
19
|
+
exports.default = WorkspacesColor;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const React = require("react");
|
|
4
|
+
const WorkspacesGrayM = (props) => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", className: "workspaces-gray-m" }, props),
|
|
5
|
+
React.createElement("defs", null,
|
|
6
|
+
React.createElement("path", { id: "prefix__svg-2357196031a", d: "M0 0h8.228v8.3H0z" })),
|
|
7
|
+
React.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
8
|
+
React.createElement("path", { d: "M0 0h24v24H0z" }),
|
|
9
|
+
React.createElement("path", { d: "M19.504 9.126a.752.752 0 01-.75.75h-3.728a.752.752 0 01-.75-.75v-3.8a.752.752 0 01.75-.75h3.728a.752.752 0 01.75.75v3.8zm-.75-6.05h-3.728a2.253 2.253 0 00-2.25 2.25v3.8a2.253 2.253 0 002.25 2.25h3.728a2.253 2.253 0 002.25-2.25v-3.8a2.253 2.253 0 00-2.25-2.25z", fill: "#6A7580" }),
|
|
10
|
+
React.createElement("g", { transform: "translate(3 3)" },
|
|
11
|
+
React.createElement("mask", { id: "prefix__svg-2357196031b", fill: "#fff" },
|
|
12
|
+
React.createElement("use", { xlinkHref: "#prefix__svg-2357196031a" })),
|
|
13
|
+
React.createElement("path", { d: "M6.728 6.05a.752.752 0 01-.75.75H2.25a.752.752 0 01-.75-.75v-3.8a.752.752 0 01.75-.75h3.728a.752.752 0 01.75.75v3.8zM5.978 0H2.25A2.253 2.253 0 000 2.25v3.8A2.253 2.253 0 002.25 8.3h3.728a2.253 2.253 0 002.25-2.25v-3.8A2.253 2.253 0 005.978 0z", fill: "#6A7580", mask: "url(#prefix__svg-2357196031b)" })),
|
|
14
|
+
React.createElement("path", { d: "M9.731 18.826a.752.752 0 01-.75.75H5.253a.752.752 0 01-.75-.75v-3.8a.752.752 0 01.75-.75h3.728a.752.752 0 01.75.75v3.8zm-.75-6.05H5.253a2.253 2.253 0 00-2.25 2.25v3.8a2.253 2.253 0 002.25 2.25h3.728a2.253 2.253 0 002.25-2.25v-3.8a2.253 2.253 0 00-2.25-2.25zM19.731 18.826a.752.752 0 01-.75.75h-3.728a.752.752 0 01-.75-.75v-3.8a.752.752 0 01.75-.75h3.728a.752.752 0 01.75.75v3.8zm-.75-6.05h-3.728a2.253 2.253 0 00-2.25 2.25v3.8a2.253 2.253 0 002.25 2.25h3.728a2.253 2.253 0 002.25-2.25v-3.8a2.253 2.253 0 00-2.25-2.25z", fill: "#6A7580" }))));
|
|
15
|
+
exports.default = WorkspacesGrayM;
|
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
export { default as AbTestXl } from './AbTestXl';
|
|
2
|
-
export { default as AddXl } from './AddXl';
|
|
3
2
|
export { default as AfterEventXl } from './AfterEventXl';
|
|
4
|
-
export { default as
|
|
3
|
+
export { default as AddXl } from './AddXl';
|
|
5
4
|
export { default as AttributeXl } from './AttributeXl';
|
|
6
|
-
export { default as BasketCheckXl } from './BasketCheckXl';
|
|
7
5
|
export { default as BeforeEventXl } from './BeforeEventXl';
|
|
8
|
-
export { default as
|
|
6
|
+
export { default as BasketCheckXl } from './BasketCheckXl';
|
|
9
7
|
export { default as BrowserCloseXl } from './BrowserCloseXl';
|
|
10
8
|
export { default as BrowserCodeXl } from './BrowserCodeXl';
|
|
11
9
|
export { default as BrowserLandingXl } from './BrowserLandingXl';
|
|
10
|
+
export { default as BillingXl } from './BillingXl';
|
|
12
11
|
export { default as BrowserScrollXl } from './BrowserScrollXl';
|
|
13
12
|
export { default as BulbEditXl } from './BulbEditXl';
|
|
14
|
-
export { default as CalculatorXl } from './CalculatorXl';
|
|
15
13
|
export { default as CalendarIntervalXl } from './CalendarIntervalXl';
|
|
16
14
|
export { default as CalendarScheduleXl } from './CalendarScheduleXl';
|
|
17
|
-
export { default as
|
|
18
|
-
export { default as
|
|
19
|
-
export { default as CardVisaXl } from './CardVisaXl';
|
|
15
|
+
export { default as CalculatorXl } from './CalculatorXl';
|
|
16
|
+
export { default as AnalyticsInsightsXl } from './AnalyticsInsightsXl';
|
|
20
17
|
export { default as CartAddXl } from './CartAddXl';
|
|
18
|
+
export { default as CardVisaXl } from './CardVisaXl';
|
|
19
|
+
export { default as CardAeXl } from './CardAeXl';
|
|
21
20
|
export { default as CheckInXl } from './CheckInXl';
|
|
21
|
+
export { default as CalendarXl } from './CalendarXl';
|
|
22
22
|
export { default as CheckOutXl } from './CheckOutXl';
|
|
23
|
-
export { default as CheckXl } from './CheckXl';
|
|
24
23
|
export { default as ClassificationXl } from './ClassificationXl';
|
|
25
|
-
export { default as CompareXl } from './CompareXl';
|
|
26
24
|
export { default as CouponXl } from './CouponXl';
|
|
27
|
-
export { default as CupXl } from './CupXl';
|
|
28
25
|
export { default as DiscountXl } from './DiscountXl';
|
|
26
|
+
export { default as CupXl } from './CupXl';
|
|
29
27
|
export { default as EventXl } from './EventXl';
|
|
30
|
-
export { default as FileUpXl } from './FileUpXl';
|
|
31
28
|
export { default as FileUrlXl } from './FileUrlXl';
|
|
29
|
+
export { default as FileUpXl } from './FileUpXl';
|
|
32
30
|
export { default as FileXl } from './FileXl';
|
|
33
31
|
export { default as FileZipXl } from './FileZipXl';
|
|
32
|
+
export { default as CompareXl } from './CompareXl';
|
|
33
|
+
export { default as CheckXl } from './CheckXl';
|
|
34
34
|
export { default as FirstRunXl } from './FirstRunXl';
|
|
35
|
-
export { default as FolderCheckXl } from './FolderCheckXl';
|
|
36
35
|
export { default as FolderStarXl } from './FolderStarXl';
|
|
36
|
+
export { default as FolderCheckXl } from './FolderCheckXl';
|
|
37
37
|
export { default as FolderUserXl } from './FolderUserXl';
|
|
38
38
|
export { default as FormXl } from './FormXl';
|
|
39
39
|
export { default as FolderXl } from './FolderXl';
|
|
40
40
|
export { default as FunctionXl } from './FunctionXl';
|
|
41
41
|
export { default as FormulaXl } from './FormulaXl';
|
|
42
|
+
export { default as InsertObjectXl } from './InsertObjectXl';
|
|
42
43
|
export { default as InboxNoResultsXl } from './InboxNoResultsXl';
|
|
43
44
|
export { default as InfoXl } from './InfoXl';
|
|
44
|
-
export { default as InsertObjectXl } from './InsertObjectXl';
|
|
45
|
-
export { default as IntegrationXl } from './IntegrationXl';
|
|
46
45
|
export { default as IntegrationsXl } from './IntegrationsXl';
|
|
47
|
-
export { default as
|
|
48
|
-
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
46
|
+
export { default as IntegrationXl } from './IntegrationXl';
|
|
49
47
|
export { default as LaunchXl } from './LaunchXl';
|
|
50
|
-
export { default as LoyalityBoostXl } from './LoyalityBoostXl';
|
|
51
|
-
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
52
48
|
export { default as MessageXl } from './MessageXl';
|
|
49
|
+
export { default as LaptopTargetXl } from './LaptopTargetXl';
|
|
50
|
+
export { default as MarketingAutomationXl } from './MarketingAutomationXl';
|
|
53
51
|
export { default as MobileBannerXl } from './MobileBannerXl';
|
|
54
52
|
export { default as MobilePromotionXl } from './MobilePromotionXl';
|
|
55
53
|
export { default as MobileStepsXl } from './MobileStepsXl';
|
|
56
54
|
export { default as MobileUpdateXl } from './MobileUpdateXl';
|
|
57
|
-
export { default as MultivalueXl } from './MultivalueXl';
|
|
58
55
|
export { default as NetworkFileXl } from './NetworkFileXl';
|
|
59
56
|
export { default as NoPermissionXl } from './NoPermissionXl';
|
|
57
|
+
export { default as LoyalityBoostXl } from './LoyalityBoostXl';
|
|
58
|
+
export { default as MultivalueXl } from './MultivalueXl';
|
|
60
59
|
export { default as NotificationsEditXl } from './NotificationsEditXl';
|
|
61
60
|
export { default as ProductsBundleXl } from './ProductsBundleXl';
|
|
61
|
+
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
62
62
|
export { default as ProductsFeedXl } from './ProductsFeedXl';
|
|
63
63
|
export { default as ProductsLastSeenXl } from './ProductsLastSeenXl';
|
|
64
|
-
export { default as ProductsSimilarXl } from './ProductsSimilarXl';
|
|
65
64
|
export { default as PushXl } from './PushXl';
|
|
66
65
|
export { default as RecentInteractionsXl } from './RecentInteractionsXl';
|
|
67
|
-
export { default as ReggressionXl } from './ReggressionXl';
|
|
68
66
|
export { default as SearchNoResultsXl } from './SearchNoResultsXl';
|
|
67
|
+
export { default as ReggressionXl } from './ReggressionXl';
|
|
69
68
|
export { default as SectionXl } from './SectionXl';
|
|
70
69
|
export { default as ShowXl } from './ShowXl';
|
|
71
70
|
export { default as SilentPushXl } from './SilentPushXl';
|
|
72
|
-
export { default as ToolsXl } from './ToolsXl';
|
|
73
71
|
export { default as UserCircleUpXl } from './UserCircleUpXl';
|
|
74
|
-
export { default as UserCircleXl } from './UserCircleXl';
|
|
75
|
-
export { default as UserIdXl } from './UserIdXl';
|
|
76
72
|
export { default as VisualEditorStarXl } from './VisualEditorStarXl';
|
|
77
73
|
export { default as VisualEditorXl } from './VisualEditorXl';
|
|
74
|
+
export { default as LaptopAiXl } from './LaptopAiXl';
|
|
75
|
+
export { default as UserCircleXl } from './UserCircleXl';
|
|
76
|
+
export { default as UserIdXl } from './UserIdXl';
|
|
78
77
|
export { default as VoucherXl } from './VoucherXl';
|
|
78
|
+
export { default as ToolsXl } from './ToolsXl';
|
|
79
|
+
export { default as WebhookXl } from './WebhookXl';
|
|
79
80
|
export { default as WeblayerXl } from './WeblayerXl';
|
|
80
81
|
export { default as WarningXl } from './WarningXl';
|
|
81
|
-
export { default as WebhookXl } from './WebhookXl';
|