@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 +13 -9
- package/dist/filled/index.d.mts +14 -14
- package/dist/filled/index.d.ts +14 -14
- package/dist/filled/index.js +24 -24
- package/dist/filled/index.mjs +12 -12
- package/dist/one-color/index.d.mts +67 -67
- package/dist/one-color/index.d.ts +67 -67
- package/dist/one-color/index.js +130 -130
- package/dist/one-color/index.mjs +65 -65
- package/dist/social-media/index.d.mts +5 -5
- package/dist/social-media/index.d.ts +5 -5
- package/dist/social-media/index.js +6 -6
- package/dist/social-media/index.mjs +3 -3
- package/dist/two-colors/index.d.mts +31 -31
- package/dist/two-colors/index.d.ts +31 -31
- package/dist/two-colors/index.js +58 -58
- package/dist/two-colors/index.mjs +29 -29
- package/package.json +13 -8
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 {
|
|
26
|
+
import { AddIcon } from '@iguanads/icons/one-color'
|
|
24
27
|
|
|
25
|
-
<
|
|
28
|
+
<AddIcon />
|
|
26
29
|
```
|
|
27
30
|
|
|
28
31
|
Customize size (32px):
|
|
29
32
|
|
|
30
33
|
```tsx
|
|
31
|
-
import {
|
|
34
|
+
import { AddIcon } from '@iguanads/icons/one-color'
|
|
32
35
|
|
|
33
|
-
<
|
|
36
|
+
<AddIcon className="size-8" />
|
|
34
37
|
```
|
|
35
38
|
|
|
36
39
|
Customize color:
|
|
37
40
|
|
|
38
41
|
```tsx
|
|
39
|
-
import {
|
|
42
|
+
import { AddIcon } from '@iguanads/icons/one-color'
|
|
40
43
|
|
|
41
|
-
<
|
|
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 {
|
|
50
|
+
import { MoneyIcon } from '@iguanads/icons/two-colors'
|
|
48
51
|
|
|
49
|
-
<
|
|
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`
|
|
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
|
package/dist/filled/index.d.mts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAccount: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgAccount: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgAdmSettings: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgAdmSettings: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgChat: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgChat: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const SvgConfigurations: (props: SVGProps<SVGSVGElement>) =>
|
|
10
|
+
declare const SvgConfigurations: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const SvgError: (props: SVGProps<SVGSVGElement>) =>
|
|
12
|
+
declare const SvgError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const SvgInfo: (props: SVGProps<SVGSVGElement>) =>
|
|
14
|
+
declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const SvgMenu: (props: SVGProps<SVGSVGElement>) =>
|
|
16
|
+
declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const SvgNotifications: (props: SVGProps<SVGSVGElement>) =>
|
|
18
|
+
declare const SvgNotifications: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const SvgOrderHistory: (props: SVGProps<SVGSVGElement>) =>
|
|
20
|
+
declare const SvgOrderHistory: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const SvgPinOrder: (props: SVGProps<SVGSVGElement>) =>
|
|
22
|
+
declare const SvgPinOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) =>
|
|
24
|
+
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) =>
|
|
26
|
+
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
27
27
|
|
|
28
|
-
export { SvgAccount as
|
|
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 };
|
package/dist/filled/index.d.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAccount: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgAccount: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgAdmSettings: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgAdmSettings: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgChat: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgChat: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const SvgConfigurations: (props: SVGProps<SVGSVGElement>) =>
|
|
10
|
+
declare const SvgConfigurations: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const SvgError: (props: SVGProps<SVGSVGElement>) =>
|
|
12
|
+
declare const SvgError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const SvgInfo: (props: SVGProps<SVGSVGElement>) =>
|
|
14
|
+
declare const SvgInfo: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const SvgMenu: (props: SVGProps<SVGSVGElement>) =>
|
|
16
|
+
declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const SvgNotifications: (props: SVGProps<SVGSVGElement>) =>
|
|
18
|
+
declare const SvgNotifications: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const SvgOrderHistory: (props: SVGProps<SVGSVGElement>) =>
|
|
20
|
+
declare const SvgOrderHistory: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const SvgPinOrder: (props: SVGProps<SVGSVGElement>) =>
|
|
22
|
+
declare const SvgPinOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) =>
|
|
24
|
+
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) =>
|
|
26
|
+
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
27
27
|
|
|
28
|
-
export { SvgAccount as
|
|
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 };
|
package/dist/filled/index.js
CHANGED
|
@@ -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
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
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
|
});
|
package/dist/filled/index.mjs
CHANGED
|
@@ -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
|
|
92
|
-
AdmSettings_default as
|
|
93
|
-
Chat_default as
|
|
94
|
-
Configurations_default as
|
|
95
|
-
Error_default as
|
|
96
|
-
Info_default as
|
|
97
|
-
Menu_default as
|
|
98
|
-
Notifications_default as
|
|
99
|
-
OrderHistory_default as
|
|
100
|
-
PinOrder_default as
|
|
101
|
-
Search_default as
|
|
102
|
-
Trash_default as
|
|
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
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAi: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgAi: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgAdd: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgAdd: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgApartment: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgApartment: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const SvgArrowRight: (props: SVGProps<SVGSVGElement>) =>
|
|
10
|
+
declare const SvgArrowRight: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const SvgAttach: (props: SVGProps<SVGSVGElement>) =>
|
|
12
|
+
declare const SvgAttach: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const SvgBack: (props: SVGProps<SVGSVGElement>) =>
|
|
14
|
+
declare const SvgBack: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const SvgBag: (props: SVGProps<SVGSVGElement>) =>
|
|
16
|
+
declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const SvgBarcode: (props: SVGProps<SVGSVGElement>) =>
|
|
18
|
+
declare const SvgBarcode: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const SvgBrightness: (props: SVGProps<SVGSVGElement>) =>
|
|
20
|
+
declare const SvgBrightness: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) =>
|
|
22
|
+
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const SvgCamera: (props: SVGProps<SVGSVGElement>) =>
|
|
24
|
+
declare const SvgCamera: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const SvgCart: (props: SVGProps<SVGSVGElement>) =>
|
|
26
|
+
declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
27
27
|
|
|
28
|
-
declare const SvgCheck: (props: SVGProps<SVGSVGElement>) =>
|
|
28
|
+
declare const SvgCheck: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
29
29
|
|
|
30
|
-
declare const SvgClock: (props: SVGProps<SVGSVGElement>) =>
|
|
30
|
+
declare const SvgClock: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
31
31
|
|
|
32
|
-
declare const SvgClose: (props: SVGProps<SVGSVGElement>) =>
|
|
32
|
+
declare const SvgClose: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
33
33
|
|
|
34
|
-
declare const SvgContrast: (props: SVGProps<SVGSVGElement>) =>
|
|
34
|
+
declare const SvgContrast: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
35
35
|
|
|
36
|
-
declare const SvgCopy: (props: SVGProps<SVGSVGElement>) =>
|
|
36
|
+
declare const SvgCopy: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
37
37
|
|
|
38
|
-
declare const SvgCreditCard: (props: SVGProps<SVGSVGElement>) =>
|
|
38
|
+
declare const SvgCreditCard: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
39
39
|
|
|
40
|
-
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) =>
|
|
40
|
+
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
41
41
|
|
|
42
|
-
declare const SvgDownload: (props: SVGProps<SVGSVGElement>) =>
|
|
42
|
+
declare const SvgDownload: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
43
43
|
|
|
44
|
-
declare const SvgEdit: (props: SVGProps<SVGSVGElement>) =>
|
|
44
|
+
declare const SvgEdit: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
45
45
|
|
|
46
|
-
declare const SvgEmptyScreen: (props: SVGProps<SVGSVGElement>) =>
|
|
46
|
+
declare const SvgEmptyScreen: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
47
47
|
|
|
48
|
-
declare const SvgExpand: (props: SVGProps<SVGSVGElement>) =>
|
|
48
|
+
declare const SvgExpand: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
49
49
|
|
|
50
|
-
declare const SvgFilter: (props: SVGProps<SVGSVGElement>) =>
|
|
50
|
+
declare const SvgFilter: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
51
51
|
|
|
52
|
-
declare const SvgGallery: (props: SVGProps<SVGSVGElement>) =>
|
|
52
|
+
declare const SvgGallery: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
53
53
|
|
|
54
|
-
declare const SvgHelpChat: (props: SVGProps<SVGSVGElement>) =>
|
|
54
|
+
declare const SvgHelpChat: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
55
55
|
|
|
56
|
-
declare const SvgHide: (props: SVGProps<SVGSVGElement>) =>
|
|
56
|
+
declare const SvgHide: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
57
57
|
|
|
58
|
-
declare const SvgHotel: (props: SVGProps<SVGSVGElement>) =>
|
|
58
|
+
declare const SvgHotel: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
59
59
|
|
|
60
|
-
declare const SvgHouse: (props: SVGProps<SVGSVGElement>) =>
|
|
60
|
+
declare const SvgHouse: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
61
61
|
|
|
62
|
-
declare const SvgLock: (props: SVGProps<SVGSVGElement>) =>
|
|
62
|
+
declare const SvgLock: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
63
63
|
|
|
64
|
-
declare const SvgLowBattery: (props: SVGProps<SVGSVGElement>) =>
|
|
64
|
+
declare const SvgLowBattery: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
65
65
|
|
|
66
|
-
declare const SvgMapView: (props: SVGProps<SVGSVGElement>) =>
|
|
66
|
+
declare const SvgMapView: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
67
67
|
|
|
68
|
-
declare const SvgMenu: (props: SVGProps<SVGSVGElement>) =>
|
|
68
|
+
declare const SvgMenu: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
69
69
|
|
|
70
|
-
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) =>
|
|
70
|
+
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
71
71
|
|
|
72
|
-
declare const SvgNext: (props: SVGProps<SVGSVGElement>) =>
|
|
72
|
+
declare const SvgNext: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
73
73
|
|
|
74
|
-
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) =>
|
|
74
|
+
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
75
75
|
|
|
76
|
-
declare const SvgOffice: (props: SVGProps<SVGSVGElement>) =>
|
|
76
|
+
declare const SvgOffice: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
77
77
|
|
|
78
|
-
declare const SvgOperations: (props: SVGProps<SVGSVGElement>) =>
|
|
78
|
+
declare const SvgOperations: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
79
79
|
|
|
80
|
-
declare const SvgOrder: (props: SVGProps<SVGSVGElement>) =>
|
|
80
|
+
declare const SvgOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
81
81
|
|
|
82
|
-
declare const SvgPerformance: (props: SVGProps<SVGSVGElement>) =>
|
|
82
|
+
declare const SvgPerformance: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
83
83
|
|
|
84
|
-
declare const SvgPhone: (props: SVGProps<SVGSVGElement>) =>
|
|
84
|
+
declare const SvgPhone: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
85
85
|
|
|
86
|
-
declare const SvgPreparation: (props: SVGProps<SVGSVGElement>) =>
|
|
86
|
+
declare const SvgPreparation: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
87
87
|
|
|
88
|
-
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) =>
|
|
88
|
+
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
89
89
|
|
|
90
|
-
declare const SvgRate: (props: SVGProps<SVGSVGElement>) =>
|
|
90
|
+
declare const SvgRate: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
91
91
|
|
|
92
|
-
declare const SvgRating: (props: SVGProps<SVGSVGElement>) =>
|
|
92
|
+
declare const SvgRating: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
93
93
|
|
|
94
|
-
declare const SvgRefresh: (props: SVGProps<SVGSVGElement>) =>
|
|
94
|
+
declare const SvgRefresh: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
95
95
|
|
|
96
|
-
declare const SvgRotate: (props: SVGProps<SVGSVGElement>) =>
|
|
96
|
+
declare const SvgRotate: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
97
97
|
|
|
98
|
-
declare const SvgSatelliteView: (props: SVGProps<SVGSVGElement>) =>
|
|
98
|
+
declare const SvgSatelliteView: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
99
99
|
|
|
100
|
-
declare const SvgSaturation: (props: SVGProps<SVGSVGElement>) =>
|
|
100
|
+
declare const SvgSaturation: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
101
101
|
|
|
102
|
-
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) =>
|
|
102
|
+
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
103
103
|
|
|
104
|
-
declare const SvgSelect: (props: SVGProps<SVGSVGElement>) =>
|
|
104
|
+
declare const SvgSelect: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
105
105
|
|
|
106
|
-
declare const SvgShadows: (props: SVGProps<SVGSVGElement>) =>
|
|
106
|
+
declare const SvgShadows: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
107
107
|
|
|
108
|
-
declare const SvgShare: (props: SVGProps<SVGSVGElement>) =>
|
|
108
|
+
declare const SvgShare: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
109
109
|
|
|
110
|
-
declare const SvgShow: (props: SVGProps<SVGSVGElement>) =>
|
|
110
|
+
declare const SvgShow: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
111
111
|
|
|
112
|
-
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) =>
|
|
112
|
+
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
113
113
|
|
|
114
|
-
declare const SvgSubstitution: (props: SVGProps<SVGSVGElement>) =>
|
|
114
|
+
declare const SvgSubstitution: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
115
115
|
|
|
116
|
-
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) =>
|
|
116
|
+
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
117
117
|
|
|
118
|
-
declare const SvgUnion: (props: SVGProps<SVGSVGElement>) =>
|
|
118
|
+
declare const SvgUnion: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
119
119
|
|
|
120
|
-
declare const SvgUpload: (props: SVGProps<SVGSVGElement>) =>
|
|
120
|
+
declare const SvgUpload: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
121
121
|
|
|
122
|
-
declare const SvgUser: (props: SVGProps<SVGSVGElement>) =>
|
|
122
|
+
declare const SvgUser: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
123
123
|
|
|
124
|
-
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) =>
|
|
124
|
+
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
125
125
|
|
|
126
|
-
declare const SvgWhatsapp: (props: SVGProps<SVGSVGElement>) =>
|
|
126
|
+
declare const SvgWhatsapp: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
127
127
|
|
|
128
|
-
declare const SvgWifiOff: (props: SVGProps<SVGSVGElement>) =>
|
|
128
|
+
declare const SvgWifiOff: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
129
129
|
|
|
130
|
-
declare const SvgZoom: (props: SVGProps<SVGSVGElement>) =>
|
|
130
|
+
declare const SvgZoom: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
131
131
|
|
|
132
|
-
declare const SvgCategoryList: (props: SVGProps<SVGSVGElement>) =>
|
|
132
|
+
declare const SvgCategoryList: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
133
133
|
|
|
134
|
-
export { SvgAdd as
|
|
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 };
|