@synerise/ds-icon 1.13.1 → 1.14.1
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/DynamicIcon/iconManifest.d.ts +11 -0
- package/dist/DynamicIcon/iconManifest.js +5 -0
- package/dist/icons/L/index.d.ts +43 -43
- package/dist/icons/L/index.js +43 -43
- package/dist/icons/M/ConsumptionColorHubM.d.ts +3 -0
- package/dist/icons/M/ConsumptionColorHubM.js +21 -0
- package/dist/icons/M/ConsumptionGreyHubM.d.ts +3 -0
- package/dist/icons/M/ConsumptionGreyHubM.js +21 -0
- package/dist/icons/M/MembershipColorHubM.d.ts +3 -0
- package/dist/icons/M/MembershipColorHubM.js +21 -0
- package/dist/icons/M/MembershipGreyHubM.d.ts +3 -0
- package/dist/icons/M/MembershipGreyHubM.js +21 -0
- package/dist/icons/M/UsersColorHubM.d.ts +3 -0
- package/dist/icons/M/UsersColorHubM.js +35 -0
- package/dist/icons/M/UsersGreyHubM.d.ts +3 -0
- package/dist/icons/M/UsersGreyHubM.js +35 -0
- package/dist/icons/M/WorkspacesColorHubM.d.ts +3 -0
- package/dist/icons/M/WorkspacesColorHubM.js +24 -0
- package/dist/icons/M/WorkspacesGreyHubM.d.ts +3 -0
- package/dist/icons/M/WorkspacesGreyHubM.js +24 -0
- package/dist/icons/M/index.d.ts +430 -422
- package/dist/icons/M/index.js +430 -422
- package/dist/icons/XL/index.d.ts +53 -53
- package/dist/icons/XL/index.js +54 -54
- package/dist/icons/additional/index.d.ts +58 -58
- package/dist/icons/additional/index.js +58 -58
- package/dist/icons/colorIcons/index.d.ts +6 -6
- package/dist/icons/colorIcons/index.js +6 -6
- package/dist/useIconComponent.d.ts +2 -2
- 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
|
+
## [1.14.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.14.0...@synerise/ds-icon@1.14.1) (2026-02-19)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **icon:** iconName type changed to literal string union ([0d73571](https://github.com/Synerise/synerise-design/commit/0d735719bf44bed1c0ed6844a2d3eb069a40aab5))
|
|
11
|
+
|
|
12
|
+
# [1.14.0](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.13.1...@synerise/ds-icon@1.14.0) (2026-02-12)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- **icon:** new app menu icons ([1198e96](https://github.com/Synerise/synerise-design/commit/1198e969e9de0a6d0c0861114efcabcbc8de6343))
|
|
17
|
+
|
|
6
18
|
## [1.13.1](https://github.com/Synerise/synerise-design/compare/@synerise/ds-icon@1.13.0...@synerise/ds-icon@1.13.1) (2026-02-11)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import { type ComponentType, type SVGProps } from 'react';
|
|
2
|
+
import * as large from '../icons/L';
|
|
3
|
+
import * as medium from '../icons/M';
|
|
4
|
+
import * as xlarge from '../icons/XL';
|
|
5
|
+
import * as additional from '../icons/additional';
|
|
6
|
+
import * as color from '../icons/colorIcons';
|
|
2
7
|
type IconComponent = ComponentType<SVGProps<SVGSVGElement>>;
|
|
3
8
|
type IconModule = Record<string, IconComponent>;
|
|
9
|
+
type MediumIconNames = keyof typeof medium;
|
|
10
|
+
type LargeIconNames = keyof typeof large;
|
|
11
|
+
type XLargeIconNames = keyof typeof xlarge;
|
|
12
|
+
type AdditionalIconNames = keyof typeof additional;
|
|
13
|
+
type ColorIconNames = keyof typeof color;
|
|
14
|
+
export type AllIconNames = MediumIconNames | LargeIconNames | XLargeIconNames | AdditionalIconNames | ColorIconNames;
|
|
4
15
|
export declare const iconManifest: Record<string, IconModule>;
|
|
5
16
|
export {};
|
|
@@ -3,6 +3,11 @@ import * as medium from '../icons/M';
|
|
|
3
3
|
import * as xlarge from '../icons/XL';
|
|
4
4
|
import * as additional from '../icons/additional';
|
|
5
5
|
import * as color from '../icons/colorIcons';
|
|
6
|
+
|
|
7
|
+
// Extract icon names from all modules as literal types
|
|
8
|
+
|
|
9
|
+
// Combine all icon names into a single union type
|
|
10
|
+
|
|
6
11
|
var iconSources = [{
|
|
7
12
|
module: medium
|
|
8
13
|
}, {
|
package/dist/icons/L/index.d.ts
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
export { default as WarningL } from './WarningL';
|
|
2
|
-
export { default as VideoL } from './VideoL';
|
|
3
1
|
export { default as TooltipL } from './TooltipL';
|
|
4
|
-
export { default as TextL } from './TextL';
|
|
5
|
-
export { default as TableL } from './TableL';
|
|
6
2
|
export { default as TextareaL } from './TextareaL';
|
|
7
|
-
export { default as
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
3
|
+
export { default as VideoL } from './VideoL';
|
|
4
|
+
export { default as TextL } from './TextL';
|
|
5
|
+
export { default as WarningL } from './WarningL';
|
|
10
6
|
export { default as SliderL } from './SliderL';
|
|
7
|
+
export { default as ShowL } from './ShowL';
|
|
8
|
+
export { default as TimeL } from './TimeL';
|
|
11
9
|
export { default as SectionL } from './SectionL';
|
|
12
10
|
export { default as SelectL } from './SelectL';
|
|
13
|
-
export { default as
|
|
14
|
-
export { default as
|
|
11
|
+
export { default as TableL } from './TableL';
|
|
12
|
+
export { default as StackedL } from './StackedL';
|
|
15
13
|
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
14
|
+
export { default as Section37L } from './Section37L';
|
|
16
15
|
export { default as Section12L } from './Section12L';
|
|
17
|
-
export { default as
|
|
16
|
+
export { default as SpinnerL } from './SpinnerL';
|
|
17
|
+
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
18
|
+
export { default as QuoteL } from './QuoteL';
|
|
18
19
|
export { default as Section13L } from './Section13L';
|
|
20
|
+
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
19
21
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
20
|
-
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
21
|
-
export { default as QuoteL } from './QuoteL';
|
|
22
|
-
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
23
22
|
export { default as RadioL } from './RadioL';
|
|
24
23
|
export { default as NoData } from './NoData';
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as NoPermissionL } from './NoPermissionL';
|
|
27
|
-
export { default as MultilineL } from './MultilineL';
|
|
24
|
+
export { default as MobileUrlL } from './MobileUrlL';
|
|
28
25
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
29
|
-
export { default as
|
|
26
|
+
export { default as MultilineL } from './MultilineL';
|
|
27
|
+
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
30
28
|
export { default as PieL } from './PieL';
|
|
31
|
-
export { default as
|
|
32
|
-
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
33
|
-
export { default as LinkL } from './LinkL';
|
|
29
|
+
export { default as NavbarL } from './NavbarL';
|
|
34
30
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
35
|
-
export { default as
|
|
36
|
-
export { default as MobileUrlL } from './MobileUrlL';
|
|
31
|
+
export { default as NoPermissionL } from './NoPermissionL';
|
|
37
32
|
export { default as LocationL } from './LocationL';
|
|
38
|
-
export { default as
|
|
39
|
-
export { default as
|
|
33
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
34
|
+
export { default as MobileBlockL } from './MobileBlockL';
|
|
35
|
+
export { default as LinkL } from './LinkL';
|
|
36
|
+
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
37
|
+
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
38
|
+
export { default as LabelL } from './LabelL';
|
|
39
|
+
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
40
40
|
export { default as LineL } from './LineL';
|
|
41
41
|
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
42
|
-
export { default as InputL } from './InputL';
|
|
43
|
-
export { default as LabelL } from './LabelL';
|
|
44
42
|
export { default as InfoL } from './InfoL';
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as
|
|
47
|
-
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
43
|
+
export { default as LandingPageL } from './LandingPageL';
|
|
44
|
+
export { default as InputL } from './InputL';
|
|
48
45
|
export { default as ImageL } from './ImageL';
|
|
49
|
-
export { default as
|
|
50
|
-
export { default as
|
|
51
|
-
export { default as FormL } from './FormL';
|
|
46
|
+
export { default as MobileClickL } from './MobileClickL';
|
|
47
|
+
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
52
48
|
export { default as HideL } from './HideL';
|
|
53
|
-
export { default as FormEditL } from './FormEditL';
|
|
54
49
|
export { default as HashL } from './HashL';
|
|
50
|
+
export { default as ImageUrlL } from './ImageUrlL';
|
|
51
|
+
export { default as FormL } from './FormL';
|
|
52
|
+
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
53
|
+
export { default as FormEditL } from './FormEditL';
|
|
55
54
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
56
|
-
export { default as FolderL } from './FolderL';
|
|
57
55
|
export { default as FolderPlainL } from './FolderPlainL';
|
|
58
56
|
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
59
|
-
export { default as
|
|
60
|
-
export { default as CountdownL } from './CountdownL';
|
|
61
|
-
export { default as DividerL } from './DividerL';
|
|
62
|
-
export { default as CheckboxL } from './CheckboxL';
|
|
57
|
+
export { default as FolderL } from './FolderL';
|
|
63
58
|
export { default as ComboL } from './ComboL';
|
|
64
|
-
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
65
|
-
export { default as CheckL } from './CheckL';
|
|
66
|
-
export { default as ColumnL } from './ColumnL';
|
|
67
59
|
export { default as CloseL } from './CloseL';
|
|
68
|
-
export { default as
|
|
69
|
-
export { default as
|
|
60
|
+
export { default as FormGroupL } from './FormGroupL';
|
|
61
|
+
export { default as CheckboxL } from './CheckboxL';
|
|
62
|
+
export { default as ColumnL } from './ColumnL';
|
|
63
|
+
export { default as CheckL } from './CheckL';
|
|
64
|
+
export { default as CountdownL } from './CountdownL';
|
|
70
65
|
export { default as BrowserL } from './BrowserL';
|
|
66
|
+
export { default as AddL } from './AddL';
|
|
67
|
+
export { default as DividerL } from './DividerL';
|
|
68
|
+
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
69
|
+
export { default as ButtonL } from './ButtonL';
|
|
70
|
+
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
package/dist/icons/L/index.js
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
export { default as WarningL } from './WarningL';
|
|
2
|
-
export { default as VideoL } from './VideoL';
|
|
3
1
|
export { default as TooltipL } from './TooltipL';
|
|
4
|
-
export { default as TextL } from './TextL';
|
|
5
|
-
export { default as TableL } from './TableL';
|
|
6
2
|
export { default as TextareaL } from './TextareaL';
|
|
7
|
-
export { default as
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
3
|
+
export { default as VideoL } from './VideoL';
|
|
4
|
+
export { default as TextL } from './TextL';
|
|
5
|
+
export { default as WarningL } from './WarningL';
|
|
10
6
|
export { default as SliderL } from './SliderL';
|
|
7
|
+
export { default as ShowL } from './ShowL';
|
|
8
|
+
export { default as TimeL } from './TimeL';
|
|
11
9
|
export { default as SectionL } from './SectionL';
|
|
12
10
|
export { default as SelectL } from './SelectL';
|
|
13
|
-
export { default as
|
|
14
|
-
export { default as
|
|
11
|
+
export { default as TableL } from './TableL';
|
|
12
|
+
export { default as StackedL } from './StackedL';
|
|
15
13
|
export { default as SearchNoResultsL } from './SearchNoResultsL';
|
|
14
|
+
export { default as Section37L } from './Section37L';
|
|
16
15
|
export { default as Section12L } from './Section12L';
|
|
17
|
-
export { default as
|
|
16
|
+
export { default as SpinnerL } from './SpinnerL';
|
|
17
|
+
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
18
|
+
export { default as QuoteL } from './QuoteL';
|
|
18
19
|
export { default as Section13L } from './Section13L';
|
|
20
|
+
export { default as RelationOneOneL } from './RelationOneOneL';
|
|
19
21
|
export { default as RelationOneManyL } from './RelationOneManyL';
|
|
20
|
-
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
21
|
-
export { default as QuoteL } from './QuoteL';
|
|
22
|
-
export { default as RelationManyOneL } from './RelationManyOneL';
|
|
23
22
|
export { default as RadioL } from './RadioL';
|
|
24
23
|
export { default as NoData } from './NoData';
|
|
25
|
-
export { default as
|
|
26
|
-
export { default as NoPermissionL } from './NoPermissionL';
|
|
27
|
-
export { default as MultilineL } from './MultilineL';
|
|
24
|
+
export { default as MobileUrlL } from './MobileUrlL';
|
|
28
25
|
export { default as MobileLinkL } from './MobileLinkL';
|
|
29
|
-
export { default as
|
|
26
|
+
export { default as MultilineL } from './MultilineL';
|
|
27
|
+
export { default as RelationManyManyL } from './RelationManyManyL';
|
|
30
28
|
export { default as PieL } from './PieL';
|
|
31
|
-
export { default as
|
|
32
|
-
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
33
|
-
export { default as LinkL } from './LinkL';
|
|
29
|
+
export { default as NavbarL } from './NavbarL';
|
|
34
30
|
export { default as MobileLayout4L } from './MobileLayout4L';
|
|
35
|
-
export { default as
|
|
36
|
-
export { default as MobileUrlL } from './MobileUrlL';
|
|
31
|
+
export { default as NoPermissionL } from './NoPermissionL';
|
|
37
32
|
export { default as LocationL } from './LocationL';
|
|
38
|
-
export { default as
|
|
39
|
-
export { default as
|
|
33
|
+
export { default as MobileLayout1L } from './MobileLayout1L';
|
|
34
|
+
export { default as MobileBlockL } from './MobileBlockL';
|
|
35
|
+
export { default as LinkL } from './LinkL';
|
|
36
|
+
export { default as MobileLayout2L } from './MobileLayout2L';
|
|
37
|
+
export { default as MobileLayout3L } from './MobileLayout3L';
|
|
38
|
+
export { default as LabelL } from './LabelL';
|
|
39
|
+
export { default as InboxNoResultsL } from './InboxNoResultsL';
|
|
40
40
|
export { default as LineL } from './LineL';
|
|
41
41
|
export { default as InformationNoSearchResultL } from './InformationNoSearchResultL';
|
|
42
|
-
export { default as InputL } from './InputL';
|
|
43
|
-
export { default as LabelL } from './LabelL';
|
|
44
42
|
export { default as InfoL } from './InfoL';
|
|
45
|
-
export { default as
|
|
46
|
-
export { default as
|
|
47
|
-
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
43
|
+
export { default as LandingPageL } from './LandingPageL';
|
|
44
|
+
export { default as InputL } from './InputL';
|
|
48
45
|
export { default as ImageL } from './ImageL';
|
|
49
|
-
export { default as
|
|
50
|
-
export { default as
|
|
51
|
-
export { default as FormL } from './FormL';
|
|
46
|
+
export { default as MobileClickL } from './MobileClickL';
|
|
47
|
+
export { default as ImagePotraitL } from './ImagePotraitL';
|
|
52
48
|
export { default as HideL } from './HideL';
|
|
53
|
-
export { default as FormEditL } from './FormEditL';
|
|
54
49
|
export { default as HashL } from './HashL';
|
|
50
|
+
export { default as ImageUrlL } from './ImageUrlL';
|
|
51
|
+
export { default as FormL } from './FormL';
|
|
52
|
+
export { default as ImageLandscapeL } from './ImageLandscapeL';
|
|
53
|
+
export { default as FormEditL } from './FormEditL';
|
|
55
54
|
export { default as FolderPredefinedL } from './FolderPredefinedL';
|
|
56
|
-
export { default as FolderL } from './FolderL';
|
|
57
55
|
export { default as FolderPlainL } from './FolderPlainL';
|
|
58
56
|
export { default as FolderFavouriteFlatL } from './FolderFavouriteFlatL';
|
|
59
|
-
export { default as
|
|
60
|
-
export { default as CountdownL } from './CountdownL';
|
|
61
|
-
export { default as DividerL } from './DividerL';
|
|
62
|
-
export { default as CheckboxL } from './CheckboxL';
|
|
57
|
+
export { default as FolderL } from './FolderL';
|
|
63
58
|
export { default as ComboL } from './ComboL';
|
|
64
|
-
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
65
|
-
export { default as CheckL } from './CheckL';
|
|
66
|
-
export { default as ColumnL } from './ColumnL';
|
|
67
59
|
export { default as CloseL } from './CloseL';
|
|
68
|
-
export { default as
|
|
60
|
+
export { default as FormGroupL } from './FormGroupL';
|
|
61
|
+
export { default as CheckboxL } from './CheckboxL';
|
|
62
|
+
export { default as ColumnL } from './ColumnL';
|
|
63
|
+
export { default as CheckL } from './CheckL';
|
|
64
|
+
export { default as CountdownL } from './CountdownL';
|
|
65
|
+
export { default as BrowserL } from './BrowserL';
|
|
69
66
|
export { default as AddL } from './AddL';
|
|
70
|
-
export { default as
|
|
67
|
+
export { default as DividerL } from './DividerL';
|
|
68
|
+
export { default as FileTypePictureL } from './FileTypePictureL';
|
|
69
|
+
export { default as ButtonL } from './ButtonL';
|
|
70
|
+
export { default as ButtonSubmitL } from './ButtonSubmitL';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
var ConsumptionColorHubM = function ConsumptionColorHubM(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
fill: "none",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
"data-testid": "ds-icon-consumption-color-hub-m",
|
|
9
|
+
className: "consumption-color-hub-m ds-icon-set-medium"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M1.99969 11.9995C1.99969 6.47666 6.47685 1.99951 11.9997 1.99951C17.5225 1.99951 21.9997 6.47666 21.9997 11.9995C21.9997 17.5224 17.5225 21.9995 11.9997 21.9995C6.47685 21.9995 1.99969 17.5224 1.99969 11.9995Z",
|
|
12
|
+
fill: "#76DC25"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M21.9997 12H11.9997V2C13.3129 1.99999 14.6132 2.25868 15.8265 2.76122C17.0397 3.26376 18.1422 4.00033 19.0708 4.92891C19.9994 5.85749 20.7359 6.95983 21.2385 8.17308C21.741 9.38634 21.9997 10.6868 21.9997 12Z",
|
|
15
|
+
fill: "#399903"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M11.9998 2L11.9998 12L1.99976 12C1.99975 10.6868 2.25843 9.38649 2.76097 8.17323C3.26351 6.95997 4.00008 5.8575 4.92867 4.92891C5.85725 4.00032 6.95959 3.26376 8.17284 2.76122C9.38609 2.25867 10.6865 2 11.9998 2Z",
|
|
18
|
+
fill: "#C5FF7E"
|
|
19
|
+
}));
|
|
20
|
+
};
|
|
21
|
+
export default ConsumptionColorHubM;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
var ConsumptionGreyHubM = function ConsumptionGreyHubM(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
fill: "none",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
"data-testid": "ds-icon-consumption-grey-hub-m",
|
|
9
|
+
className: "consumption-grey-hub-m ds-icon-set-medium"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M1.99976 11.9995C1.99976 6.47666 6.47691 1.99951 11.9998 1.99951C17.5226 1.99951 21.9998 6.47666 21.9998 11.9995C21.9998 17.5224 17.5226 21.9995 11.9998 21.9995C6.47691 21.9995 1.99976 17.5224 1.99976 11.9995Z",
|
|
12
|
+
fill: "#B5BDC3"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M21.9998 12H11.9998V2C13.313 1.99999 14.6133 2.25868 15.8265 2.76122C17.0398 3.26376 18.1423 4.00033 19.0708 4.92891C19.9994 5.85749 20.736 6.95983 21.2385 8.17308C21.7411 9.38634 21.9998 10.6868 21.9998 12Z",
|
|
15
|
+
fill: "#6A7580"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M11.9998 2L11.9998 12L1.99976 12C1.99975 10.6868 2.25843 9.38649 2.76097 8.17323C3.26351 6.95997 4.00008 5.8575 4.92867 4.92891C5.85725 4.00032 6.95959 3.26376 8.17284 2.76122C9.38609 2.25867 10.6865 2 11.9998 2Z",
|
|
18
|
+
fill: "#DBE0E3"
|
|
19
|
+
}));
|
|
20
|
+
};
|
|
21
|
+
export default ConsumptionGreyHubM;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
var MembershipColorHubM = function MembershipColorHubM(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
fill: "none",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
"data-testid": "ds-icon-membership-color-hub-m",
|
|
9
|
+
className: "membership-color-hub-m ds-icon-set-medium"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M3.30106 20.6986C0.232655 17.6302 0.232655 12.6554 3.30106 9.58695C6.36946 6.51854 11.3443 6.51854 14.4127 9.58695C17.4811 12.6554 17.4811 17.6302 14.4127 20.6986C11.3443 23.767 6.36946 23.767 3.30106 20.6986Z",
|
|
12
|
+
fill: "#FF6C4D"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M9.58677 14.413C6.51836 11.3446 6.51836 6.36971 9.58677 3.3013C12.6552 0.232899 17.63 0.232898 20.6984 3.3013C23.7668 6.36971 23.7668 11.3446 20.6984 14.413C17.63 17.4814 12.6552 17.4814 9.58677 14.413Z",
|
|
15
|
+
fill: "#FFA999"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M7.41848 7.4188C9.87703 6.96322 12.5109 7.68517 14.4126 9.58677C16.3141 11.4882 17.0348 14.1216 16.5796 16.5799C14.1213 17.0351 11.4879 16.3144 9.58645 14.4129C7.68487 12.5112 6.96294 9.87733 7.41848 7.4188Z",
|
|
18
|
+
fill: "#C41B03"
|
|
19
|
+
}));
|
|
20
|
+
};
|
|
21
|
+
export default MembershipColorHubM;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
var MembershipGreyHubM = function MembershipGreyHubM(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
fill: "none",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
"data-testid": "ds-icon-membership-grey-hub-m",
|
|
9
|
+
className: "membership-grey-hub-m ds-icon-set-medium"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M3.30106 20.6986C0.232655 17.6302 0.232655 12.6554 3.30106 9.58695C6.36946 6.51854 11.3443 6.51854 14.4127 9.58695C17.4811 12.6554 17.4811 17.6302 14.4127 20.6986C11.3443 23.767 6.36946 23.767 3.30106 20.6986Z",
|
|
12
|
+
fill: "#DBE0E3"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M9.58683 14.413C6.51842 11.3446 6.51842 6.36971 9.58683 3.3013C12.6552 0.232899 17.6301 0.232898 20.6985 3.3013C23.7669 6.36971 23.7669 11.3446 20.6985 14.413C17.6301 17.4814 12.6552 17.4814 9.58683 14.413Z",
|
|
15
|
+
fill: "#B5BDC3"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M7.41801 7.41878C9.87674 6.96307 12.5113 7.6859 14.4131 9.58772C16.3144 11.4893 17.0355 14.1226 16.5801 16.5809C14.1217 17.0362 11.4885 16.3145 9.58696 14.4129C7.68522 12.5111 6.96236 9.87743 7.41801 7.41878Z",
|
|
18
|
+
fill: "#6A7580"
|
|
19
|
+
}));
|
|
20
|
+
};
|
|
21
|
+
export default MembershipGreyHubM;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
var UsersColorHubM = function UsersColorHubM(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
fill: "none",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
"data-testid": "ds-icon-users-color-hub-m",
|
|
9
|
+
className: "users-color-hub-m ds-icon-set-medium"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M15.9998 10C13.8781 10 11.8432 10.8428 10.3429 12.3431C8.84255 13.8434 7.99976 15.8782 7.99976 18H23.9998C23.9998 15.8782 23.157 13.8434 21.6567 12.3431C20.1564 10.8428 18.1216 10 15.9998 10Z",
|
|
12
|
+
fill: "#87E8DB"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M9.99982 10C7.87808 10 5.84315 10.8428 4.34285 12.3431C2.84255 13.8434 1.99976 15.8782 1.99976 18H17.9998C17.9998 15.8782 17.157 13.8434 15.6567 12.3431C14.1564 10.8428 12.1216 10 9.99982 10Z",
|
|
15
|
+
fill: "#13C2BC"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
17
|
+
x: 1.99976,
|
|
18
|
+
y: 18,
|
|
19
|
+
width: 16,
|
|
20
|
+
height: 2,
|
|
21
|
+
fill: "#13C2BC"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
23
|
+
width: 6,
|
|
24
|
+
height: 2,
|
|
25
|
+
transform: "matrix(-1 0 0 1 23.9997 18)",
|
|
26
|
+
fill: "#87E8DB"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M16.4998 8C17.8805 8 18.9998 6.88071 18.9998 5.5C18.9998 4.11929 17.8805 3 16.4998 3C15.119 3 13.9998 4.11929 13.9998 5.5C13.9998 6.88071 15.119 8 16.4998 8Z",
|
|
29
|
+
fill: "#87E8DB"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M9.99976 8C11.6566 8 12.9998 6.65685 12.9998 5C12.9998 3.34315 11.6566 2 9.99976 2C8.3429 2 6.99976 3.34315 6.99976 5C6.99976 6.65685 8.3429 8 9.99976 8Z",
|
|
32
|
+
fill: "#009BA2"
|
|
33
|
+
}));
|
|
34
|
+
};
|
|
35
|
+
export default UsersColorHubM;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
var UsersGreyHubM = function UsersGreyHubM(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
fill: "none",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
"data-testid": "ds-icon-users-grey-hub-m",
|
|
9
|
+
className: "users-grey-hub-m ds-icon-set-medium"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M15.9998 10C13.8781 10 11.8432 10.8428 10.3429 12.3431C8.84255 13.8434 7.99976 15.8782 7.99976 18H23.9998C23.9998 15.8782 23.157 13.8434 21.6567 12.3431C20.1564 10.8428 18.1216 10 15.9998 10Z",
|
|
12
|
+
fill: "#B5BDC3"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M9.99982 10C7.87808 10 5.84315 10.8428 4.34285 12.3431C2.84255 13.8434 1.99976 15.8782 1.99976 18H17.9998C17.9998 15.8782 17.157 13.8434 15.6567 12.3431C14.1564 10.8428 12.1216 10 9.99982 10Z",
|
|
15
|
+
fill: "#DBE0E3"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
17
|
+
x: 1.99976,
|
|
18
|
+
y: 18,
|
|
19
|
+
width: 16,
|
|
20
|
+
height: 2,
|
|
21
|
+
fill: "#DBE0E3"
|
|
22
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
23
|
+
width: 6,
|
|
24
|
+
height: 2,
|
|
25
|
+
transform: "matrix(-1 0 0 1 23.9998 18)",
|
|
26
|
+
fill: "#B5BDC3"
|
|
27
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M16.4998 8C17.8805 8 18.9998 6.88071 18.9998 5.5C18.9998 4.11929 17.8805 3 16.4998 3C15.119 3 13.9998 4.11929 13.9998 5.5C13.9998 6.88071 15.119 8 16.4998 8Z",
|
|
29
|
+
fill: "#B5BDC3"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
d: "M9.99976 8C11.6566 8 12.9998 6.65685 12.9998 5C12.9998 3.34315 11.6566 2 9.99976 2C8.3429 2 6.99976 3.34315 6.99976 5C6.99976 6.65685 8.3429 8 9.99976 8Z",
|
|
32
|
+
fill: "#6A7580"
|
|
33
|
+
}));
|
|
34
|
+
};
|
|
35
|
+
export default UsersGreyHubM;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
var WorkspacesColorHubM = function WorkspacesColorHubM(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
fill: "none",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
"data-testid": "ds-icon-workspaces-color-hub-m",
|
|
9
|
+
className: "workspaces-color-hub-m ds-icon-set-medium"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M21.9997 2V12H11.9997V2H21.9997Z",
|
|
12
|
+
fill: "#6D2ED3"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M11.9998 22V12H21.9998V22H11.9998Z",
|
|
15
|
+
fill: "#D1ADF7"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M1.99976 12V22H11.9998V12H1.99976Z",
|
|
18
|
+
fill: "#EEDBFF"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M1.99976 2V12H11.9998V2H1.99976Z",
|
|
21
|
+
fill: "#D1ADF7"
|
|
22
|
+
}));
|
|
23
|
+
};
|
|
24
|
+
export default WorkspacesColorHubM;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
var WorkspacesGreyHubM = function WorkspacesGreyHubM(props) {
|
|
4
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
fill: "none",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
"data-testid": "ds-icon-workspaces-grey-hub-m",
|
|
9
|
+
className: "workspaces-grey-hub-m ds-icon-set-medium"
|
|
10
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M21.9998 2V12H11.9998V2H21.9998Z",
|
|
12
|
+
fill: "#6A7580"
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
d: "M11.9998 22V12H21.9998V22H11.9998Z",
|
|
15
|
+
fill: "#B5BDC3"
|
|
16
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17
|
+
d: "M1.99976 12V22H11.9998V12H1.99976Z",
|
|
18
|
+
fill: "#DBE0E3"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M1.99976 2V12H11.9998V2H1.99976Z",
|
|
21
|
+
fill: "#B5BDC3"
|
|
22
|
+
}));
|
|
23
|
+
};
|
|
24
|
+
export default WorkspacesGreyHubM;
|