@iguanads/icons 1.12.1 → 2.0.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/README.md CHANGED
@@ -19,40 +19,44 @@ The library organizes icons into 4 categories:
19
19
 
20
20
  ## Usage
21
21
 
22
+ Every icon is exported with an `Icon` suffix (e.g. `AddIcon`, `MoneyIcon`) to
23
+ avoid name clashes with your own components.
24
+
22
25
  ```tsx
23
- import { Add } from '@iguanads/icons/one-color'
26
+ import { AddIcon } from '@iguanads/icons/one-color'
24
27
 
25
- <Add />
28
+ <AddIcon />
26
29
  ```
27
30
 
28
31
  Customize size (32px):
29
32
 
30
33
  ```tsx
31
- import { Add } from '@iguanads/icons/one-color'
34
+ import { AddIcon } from '@iguanads/icons/one-color'
32
35
 
33
- <Add className="size-8" />
36
+ <AddIcon className="size-8" />
34
37
  ```
35
38
 
36
39
  Customize color:
37
40
 
38
41
  ```tsx
39
- import { Add } from '@iguanads/icons/one-color'
42
+ import { AddIcon } from '@iguanads/icons/one-color'
40
43
 
41
- <Add className="text-pink-base" />
44
+ <AddIcon className="text-pink-base" />
42
45
  ```
43
46
 
44
47
  Change second color (two-color icons):
45
48
 
46
49
  ```tsx
47
- import { Money } from '@iguanads/icons/two-colors'
50
+ import { MoneyIcon } from '@iguanads/icons/two-colors'
48
51
 
49
- <Money className="*:fill-grayscale-white" />
52
+ <MoneyIcon className="*:fill-grayscale-white" />
50
53
  ```
51
54
 
52
55
  ## Adding new icons
53
56
 
54
57
  1. Add the SVG file to the `src/assets/{ICON_TYPE}/` folder
55
- 2. Run `pnpm build:icons` to generate React components
58
+ 2. Run `pnpm build:icons` generates the React components **and** regenerates
59
+ the category `index.ts` barrels (with the `Icon` suffix) automatically
56
60
  3. Run `pnpm build` to compile
57
61
 
58
62
  ## Commands
@@ -1,28 +1,28 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as react from 'react';
2
2
  import { SVGProps } from 'react';
3
3
 
4
- declare const SvgAccount: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
4
+ declare const SvgAccount: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
5
5
 
6
- declare const SvgAdmSettings: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
6
+ declare const SvgAdmSettings: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
7
7
 
8
- declare const SvgChat: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
8
+ declare const SvgChat: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
9
9
 
10
- declare const SvgConfigurations: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
10
+ declare const SvgConfigurations: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
11
11
 
12
- declare const SvgError: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
12
+ declare const SvgError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
13
13
 
14
- declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
14
+ declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
15
15
 
16
- declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
16
+ declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
17
17
 
18
- declare const SvgNotifications: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
18
+ declare const SvgNotifications: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
19
19
 
20
- declare const SvgOrderHistory: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
20
+ declare const SvgOrderHistory: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
21
21
 
22
- declare const SvgPinOrder: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
22
+ declare const SvgPinOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
23
23
 
24
- declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
24
+ declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
25
25
 
26
- declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
26
+ declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
27
27
 
28
- export { SvgAccount as Account, SvgAdmSettings as AdmSettings, SvgChat as Chat, SvgConfigurations as Configurations, SvgError as Error, SvgInfo as Info, SvgMenu as Menu, SvgNotifications as Notifications, SvgOrderHistory as OrderHistory, SvgPinOrder as PinOrder, SvgSearch as Search, SvgTrash as Trash };
28
+ export { SvgAccount as AccountIcon, SvgAdmSettings as AdmSettingsIcon, SvgChat as ChatIcon, SvgConfigurations as ConfigurationsIcon, SvgError as ErrorIcon, SvgInfo as InfoIcon, SvgMenu as MenuIcon, SvgNotifications as NotificationsIcon, SvgOrderHistory as OrderHistoryIcon, SvgPinOrder as PinOrderIcon, SvgSearch as SearchIcon, SvgTrash as TrashIcon };
@@ -1,28 +1,28 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as react from 'react';
2
2
  import { SVGProps } from 'react';
3
3
 
4
- declare const SvgAccount: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
4
+ declare const SvgAccount: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
5
5
 
6
- declare const SvgAdmSettings: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
6
+ declare const SvgAdmSettings: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
7
7
 
8
- declare const SvgChat: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
8
+ declare const SvgChat: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
9
9
 
10
- declare const SvgConfigurations: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
10
+ declare const SvgConfigurations: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
11
11
 
12
- declare const SvgError: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
12
+ declare const SvgError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
13
13
 
14
- declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
14
+ declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
15
15
 
16
- declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
16
+ declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
17
17
 
18
- declare const SvgNotifications: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
18
+ declare const SvgNotifications: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
19
19
 
20
- declare const SvgOrderHistory: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
20
+ declare const SvgOrderHistory: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
21
21
 
22
- declare const SvgPinOrder: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
22
+ declare const SvgPinOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
23
23
 
24
- declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
24
+ declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
25
25
 
26
- declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
26
+ declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
27
27
 
28
- export { SvgAccount as Account, SvgAdmSettings as AdmSettings, SvgChat as Chat, SvgConfigurations as Configurations, SvgError as Error, SvgInfo as Info, SvgMenu as Menu, SvgNotifications as Notifications, SvgOrderHistory as OrderHistory, SvgPinOrder as PinOrder, SvgSearch as Search, SvgTrash as Trash };
28
+ export { SvgAccount as AccountIcon, SvgAdmSettings as AdmSettingsIcon, SvgChat as ChatIcon, SvgConfigurations as ConfigurationsIcon, SvgError as ErrorIcon, SvgInfo as InfoIcon, SvgMenu as MenuIcon, SvgNotifications as NotificationsIcon, SvgOrderHistory as OrderHistoryIcon, SvgPinOrder as PinOrderIcon, SvgSearch as SearchIcon, SvgTrash as TrashIcon };
@@ -20,18 +20,18 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
20
20
  // src/filled/index.ts
21
21
  var filled_exports = {};
22
22
  __export(filled_exports, {
23
- Account: () => Account_default,
24
- AdmSettings: () => AdmSettings_default,
25
- Chat: () => Chat_default,
26
- Configurations: () => Configurations_default,
27
- Error: () => Error_default,
28
- Info: () => Info_default,
29
- Menu: () => Menu_default,
30
- Notifications: () => Notifications_default,
31
- OrderHistory: () => OrderHistory_default,
32
- PinOrder: () => PinOrder_default,
33
- Search: () => Search_default,
34
- Trash: () => Trash_default
23
+ AccountIcon: () => Account_default,
24
+ AdmSettingsIcon: () => AdmSettings_default,
25
+ ChatIcon: () => Chat_default,
26
+ ConfigurationsIcon: () => Configurations_default,
27
+ ErrorIcon: () => Error_default,
28
+ InfoIcon: () => Info_default,
29
+ MenuIcon: () => Menu_default,
30
+ NotificationsIcon: () => Notifications_default,
31
+ OrderHistoryIcon: () => OrderHistory_default,
32
+ PinOrderIcon: () => PinOrder_default,
33
+ SearchIcon: () => Search_default,
34
+ TrashIcon: () => Trash_default
35
35
  });
36
36
  module.exports = __toCommonJS(filled_exports);
37
37
 
@@ -126,16 +126,16 @@ var SvgTrash = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("svg",
126
126
  var Trash_default = SvgTrash;
127
127
  // Annotate the CommonJS export names for ESM import in node:
128
128
  0 && (module.exports = {
129
- Account,
130
- AdmSettings,
131
- Chat,
132
- Configurations,
133
- Error,
134
- Info,
135
- Menu,
136
- Notifications,
137
- OrderHistory,
138
- PinOrder,
139
- Search,
140
- Trash
129
+ AccountIcon,
130
+ AdmSettingsIcon,
131
+ ChatIcon,
132
+ ConfigurationsIcon,
133
+ ErrorIcon,
134
+ InfoIcon,
135
+ MenuIcon,
136
+ NotificationsIcon,
137
+ OrderHistoryIcon,
138
+ PinOrderIcon,
139
+ SearchIcon,
140
+ TrashIcon
141
141
  });
@@ -88,16 +88,16 @@ var SvgTrash = (props) => /* @__PURE__ */ jsxs8("svg", { xmlns: "http://www.w3.o
88
88
  ] });
89
89
  var Trash_default = SvgTrash;
90
90
  export {
91
- Account_default as Account,
92
- AdmSettings_default as AdmSettings,
93
- Chat_default as Chat,
94
- Configurations_default as Configurations,
95
- Error_default as Error,
96
- Info_default as Info,
97
- Menu_default as Menu,
98
- Notifications_default as Notifications,
99
- OrderHistory_default as OrderHistory,
100
- PinOrder_default as PinOrder,
101
- Search_default as Search,
102
- Trash_default as Trash
91
+ Account_default as AccountIcon,
92
+ AdmSettings_default as AdmSettingsIcon,
93
+ Chat_default as ChatIcon,
94
+ Configurations_default as ConfigurationsIcon,
95
+ Error_default as ErrorIcon,
96
+ Info_default as InfoIcon,
97
+ Menu_default as MenuIcon,
98
+ Notifications_default as NotificationsIcon,
99
+ OrderHistory_default as OrderHistoryIcon,
100
+ PinOrder_default as PinOrderIcon,
101
+ Search_default as SearchIcon,
102
+ Trash_default as TrashIcon
103
103
  };
@@ -1,134 +1,134 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as react from 'react';
2
2
  import { SVGProps } from 'react';
3
3
 
4
- declare const SvgAi: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
4
+ declare const SvgAi: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
5
5
 
6
- declare const SvgAdd: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
6
+ declare const SvgAdd: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
7
7
 
8
- declare const SvgApartment: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
8
+ declare const SvgApartment: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
9
9
 
10
- declare const SvgArrowRight: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
10
+ declare const SvgArrowRight: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
11
11
 
12
- declare const SvgAttach: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
12
+ declare const SvgAttach: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
13
13
 
14
- declare const SvgBack: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
14
+ declare const SvgBack: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
15
15
 
16
- declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
16
+ declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
17
17
 
18
- declare const SvgBarcode: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
18
+ declare const SvgBarcode: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
19
19
 
20
- declare const SvgBrightness: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
20
+ declare const SvgBrightness: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
21
21
 
22
- declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
22
+ declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
23
23
 
24
- declare const SvgCamera: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
24
+ declare const SvgCamera: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
25
25
 
26
- declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
26
+ declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
27
27
 
28
- declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
28
+ declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
29
29
 
30
- declare const SvgClock: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
30
+ declare const SvgClock: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
31
31
 
32
- declare const SvgClose: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
32
+ declare const SvgClose: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
33
33
 
34
- declare const SvgContrast: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
34
+ declare const SvgContrast: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
35
35
 
36
- declare const SvgCopy: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
36
+ declare const SvgCopy: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
37
37
 
38
- declare const SvgCreditCard: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
38
+ declare const SvgCreditCard: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
39
39
 
40
- declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
40
+ declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
41
41
 
42
- declare const SvgDownload: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
42
+ declare const SvgDownload: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
43
43
 
44
- declare const SvgEdit: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
44
+ declare const SvgEdit: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
45
45
 
46
- declare const SvgEmptyScreen: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
46
+ declare const SvgEmptyScreen: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
47
47
 
48
- declare const SvgExpand: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
48
+ declare const SvgExpand: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
49
49
 
50
- declare const SvgFilter: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
50
+ declare const SvgFilter: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
51
51
 
52
- declare const SvgGallery: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
52
+ declare const SvgGallery: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
53
53
 
54
- declare const SvgHelpChat: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
54
+ declare const SvgHelpChat: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
55
55
 
56
- declare const SvgHide: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
56
+ declare const SvgHide: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
57
57
 
58
- declare const SvgHotel: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
58
+ declare const SvgHotel: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
59
59
 
60
- declare const SvgHouse: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
60
+ declare const SvgHouse: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
61
61
 
62
- declare const SvgLock: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
62
+ declare const SvgLock: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
63
63
 
64
- declare const SvgLowBattery: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
64
+ declare const SvgLowBattery: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
65
65
 
66
- declare const SvgMapView: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
66
+ declare const SvgMapView: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
67
67
 
68
- declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
68
+ declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
69
69
 
70
- declare const SvgMoney: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
70
+ declare const SvgMoney: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
71
71
 
72
- declare const SvgNext: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
72
+ declare const SvgNext: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
73
73
 
74
- declare const SvgNotification: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
74
+ declare const SvgNotification: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
75
75
 
76
- declare const SvgOffice: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
76
+ declare const SvgOffice: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
77
77
 
78
- declare const SvgOperations: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
78
+ declare const SvgOperations: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
79
79
 
80
- declare const SvgOrder: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
80
+ declare const SvgOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
81
81
 
82
- declare const SvgPerformance: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
82
+ declare const SvgPerformance: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
83
83
 
84
- declare const SvgPhone: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
84
+ declare const SvgPhone: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
85
85
 
86
- declare const SvgPreparation: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
86
+ declare const SvgPreparation: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
87
87
 
88
- declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
88
+ declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
89
89
 
90
- declare const SvgRate: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
90
+ declare const SvgRate: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
91
91
 
92
- declare const SvgRating: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
92
+ declare const SvgRating: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
93
93
 
94
- declare const SvgRefresh: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
94
+ declare const SvgRefresh: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
95
95
 
96
- declare const SvgRotate: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
96
+ declare const SvgRotate: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
97
97
 
98
- declare const SvgSatelliteView: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
98
+ declare const SvgSatelliteView: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
99
99
 
100
- declare const SvgSaturation: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
100
+ declare const SvgSaturation: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
101
101
 
102
- declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
102
+ declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
103
103
 
104
- declare const SvgSelect: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
104
+ declare const SvgSelect: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
105
105
 
106
- declare const SvgShadows: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
106
+ declare const SvgShadows: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
107
107
 
108
- declare const SvgShare: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
108
+ declare const SvgShare: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
109
109
 
110
- declare const SvgShow: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
110
+ declare const SvgShow: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
111
111
 
112
- declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
112
+ declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
113
113
 
114
- declare const SvgSubstitution: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
114
+ declare const SvgSubstitution: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
115
115
 
116
- declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
116
+ declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
117
117
 
118
- declare const SvgUnion: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
118
+ declare const SvgUnion: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
119
119
 
120
- declare const SvgUpload: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
120
+ declare const SvgUpload: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
121
121
 
122
- declare const SvgUser: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
122
+ declare const SvgUser: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
123
123
 
124
- declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
124
+ declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
125
125
 
126
- declare const SvgWhatsapp: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
126
+ declare const SvgWhatsapp: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
127
127
 
128
- declare const SvgWifiOff: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
128
+ declare const SvgWifiOff: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
129
129
 
130
- declare const SvgZoom: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
130
+ declare const SvgZoom: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
131
131
 
132
- declare const SvgCategoryList: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
132
+ declare const SvgCategoryList: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
133
133
 
134
- export { SvgAdd as Add, SvgAi as Ai, SvgApartment as Apartment, SvgArrowRight as ArrowRight, SvgAttach as Attach, SvgBack as Back, SvgBag as Bag, SvgBarcode as Barcode, SvgBrightness as Brightness, SvgCalendar as Calendar, SvgCamera as Camera, SvgCart as Cart, SvgCategoryList as CategoryList, SvgCheck as Check, SvgClock as Clock, SvgClose as Close, SvgContrast as Contrast, SvgCopy as Copy, SvgCreditCard as CreditCard, SvgDeliver as Deliver, SvgDownload as Download, SvgEdit as Edit, SvgEmptyScreen as EmptyScreen, SvgExpand as Expand, SvgFilter as Filter, SvgGallery as Gallery, SvgHelpChat as HelpChat, SvgHide as Hide, SvgHotel as Hotel, SvgHouse as House, SvgLock as Lock, SvgLowBattery as LowBattery, SvgMapView as MapView, SvgMenu as Menu, SvgMoney as Money, SvgNext as Next, SvgNotification as Notification, SvgOffice as Office, SvgOperations as Operations, SvgOrder as Order, SvgPerformance as Performance, SvgPhone as Phone, SvgPreparation as Preparation, SvgQrCode as QrCode, SvgRate as Rate, SvgRating as Rating, SvgRefresh as Refresh, SvgRotate as Rotate, SvgSatelliteView as SatelliteView, SvgSaturation as Saturation, SvgSearch as Search, SvgSelect as Select, SvgShadows as Shadows, SvgShare as Share, SvgShow as Show, SvgSignOut as SignOut, SvgSubstitution as Substitution, SvgTrash as Trash, SvgUnion as Union, SvgUpload as Upload, SvgUser as User, SvgVoucher as Voucher, SvgWhatsapp as Whatsapp, SvgWifiOff as WifiOff, SvgZoom as Zoom };
134
+ export { SvgAdd as AddIcon, SvgAi as AiIcon, SvgApartment as ApartmentIcon, SvgArrowRight as ArrowRightIcon, SvgAttach as AttachIcon, SvgBack as BackIcon, SvgBag as BagIcon, SvgBarcode as BarcodeIcon, SvgBrightness as BrightnessIcon, SvgCalendar as CalendarIcon, SvgCamera as CameraIcon, SvgCart as CartIcon, SvgCategoryList as CategoryListIcon, SvgCheck as CheckIcon, SvgClock as ClockIcon, SvgClose as CloseIcon, SvgContrast as ContrastIcon, SvgCopy as CopyIcon, SvgCreditCard as CreditCardIcon, SvgDeliver as DeliverIcon, SvgDownload as DownloadIcon, SvgEdit as EditIcon, SvgEmptyScreen as EmptyScreenIcon, SvgExpand as ExpandIcon, SvgFilter as FilterIcon, SvgGallery as GalleryIcon, SvgHelpChat as HelpChatIcon, SvgHide as HideIcon, SvgHotel as HotelIcon, SvgHouse as HouseIcon, SvgLock as LockIcon, SvgLowBattery as LowBatteryIcon, SvgMapView as MapViewIcon, SvgMenu as MenuIcon, SvgMoney as MoneyIcon, SvgNext as NextIcon, SvgNotification as NotificationIcon, SvgOffice as OfficeIcon, SvgOperations as OperationsIcon, SvgOrder as OrderIcon, SvgPerformance as PerformanceIcon, SvgPhone as PhoneIcon, SvgPreparation as PreparationIcon, SvgQrCode as QrCodeIcon, SvgRate as RateIcon, SvgRating as RatingIcon, SvgRefresh as RefreshIcon, SvgRotate as RotateIcon, SvgSatelliteView as SatelliteViewIcon, SvgSaturation as SaturationIcon, SvgSearch as SearchIcon, SvgSelect as SelectIcon, SvgShadows as ShadowsIcon, SvgShare as ShareIcon, SvgShow as ShowIcon, SvgSignOut as SignOutIcon, SvgSubstitution as SubstitutionIcon, SvgTrash as TrashIcon, SvgUnion as UnionIcon, SvgUpload as UploadIcon, SvgUser as UserIcon, SvgVoucher as VoucherIcon, SvgWhatsapp as WhatsappIcon, SvgWifiOff as WifiOffIcon, SvgZoom as ZoomIcon };