@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
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgFacebook: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgInstagram: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgInstagram: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgLinkedin: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgLinkedin: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
export { SvgFacebook as
|
|
10
|
+
export { SvgFacebook as FacebookIcon, SvgInstagram as InstagramIcon, SvgLinkedin as LinkedinIcon };
|
|
@@ -20,9 +20,9 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/social-media/index.ts
|
|
21
21
|
var social_media_exports = {};
|
|
22
22
|
__export(social_media_exports, {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
FacebookIcon: () => Facebook_default,
|
|
24
|
+
InstagramIcon: () => Instagram_default,
|
|
25
|
+
LinkedinIcon: () => Linkedin_default
|
|
26
26
|
});
|
|
27
27
|
module.exports = __toCommonJS(social_media_exports);
|
|
28
28
|
|
|
@@ -46,7 +46,7 @@ var SvgLinkedin = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)("svg",
|
|
|
46
46
|
var Linkedin_default = SvgLinkedin;
|
|
47
47
|
// Annotate the CommonJS export names for ESM import in node:
|
|
48
48
|
0 && (module.exports = {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
FacebookIcon,
|
|
50
|
+
InstagramIcon,
|
|
51
|
+
LinkedinIcon
|
|
52
52
|
});
|
|
@@ -17,7 +17,7 @@ import { jsx as jsx3 } from "react/jsx-runtime";
|
|
|
17
17
|
var SvgLinkedin = (props) => /* @__PURE__ */ jsx3("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: props.width || 24, height: props.height || 24, className: props.className, ...props, children: /* @__PURE__ */ jsx3("path", { fill: props.color || "currentColor", fillRule: "evenodd", d: "M0 12C0 5.374 5.374 0 12 0s12 5.374 12 12-5.374 12-12 12S0 18.626 0 12m5.59 6.14h2.923V9.349H5.59zm1.462-9.993h-.02c-.98 0-1.614-.675-1.614-1.518 0-.863.653-1.52 1.653-1.52s1.615.657 1.634 1.52c0 .843-.634 1.518-1.653 1.518m9.077 9.994h2.922v-5.042c0-2.7-1.442-3.957-3.364-3.957-1.551 0-2.246.852-2.634 1.451V9.348H10.13c.039.825 0 8.793 0 8.793h2.923v-4.91c0-.263.018-.526.096-.714.211-.525.692-1.069 1.5-1.069 1.057 0 1.48.807 1.48 1.989z", clipRule: "evenodd" }) });
|
|
18
18
|
var Linkedin_default = SvgLinkedin;
|
|
19
19
|
export {
|
|
20
|
-
Facebook_default as
|
|
21
|
-
Instagram_default as
|
|
22
|
-
Linkedin_default as
|
|
20
|
+
Facebook_default as FacebookIcon,
|
|
21
|
+
Instagram_default as InstagramIcon,
|
|
22
|
+
Linkedin_default as LinkedinIcon
|
|
23
23
|
};
|
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAdditionsDeductions: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgAdditionsDeductions: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgBag: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgBarcodeError: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgBarcodeError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) =>
|
|
10
|
+
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const SvgCart: (props: SVGProps<SVGSVGElement>) =>
|
|
12
|
+
declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) =>
|
|
14
|
+
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const SvgDocumentSuccess: (props: SVGProps<SVGSVGElement>) =>
|
|
16
|
+
declare const SvgDocumentSuccess: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const SvgError: (props: SVGProps<SVGSVGElement>) =>
|
|
18
|
+
declare const SvgError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const SvgFavorite: (props: SVGProps<SVGSVGElement>) =>
|
|
20
|
+
declare const SvgFavorite: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const SvgHelp: (props: SVGProps<SVGSVGElement>) =>
|
|
22
|
+
declare const SvgHelp: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const SvgLoyalty: (props: SVGProps<SVGSVGElement>) =>
|
|
24
|
+
declare const SvgLoyalty: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const SvgMagic: (props: SVGProps<SVGSVGElement>) =>
|
|
26
|
+
declare const SvgMagic: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
27
27
|
|
|
28
|
-
declare const SvgMatches: (props: SVGProps<SVGSVGElement>) =>
|
|
28
|
+
declare const SvgMatches: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
29
29
|
|
|
30
|
-
declare const SvgMessages: (props: SVGProps<SVGSVGElement>) =>
|
|
30
|
+
declare const SvgMessages: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
31
31
|
|
|
32
|
-
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) =>
|
|
32
|
+
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
33
33
|
|
|
34
|
-
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) =>
|
|
34
|
+
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
35
35
|
|
|
36
|
-
declare const SvgOrderEdit: (props: SVGProps<SVGSVGElement>) =>
|
|
36
|
+
declare const SvgOrderEdit: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
37
37
|
|
|
38
|
-
declare const SvgOrder: (props: SVGProps<SVGSVGElement>) =>
|
|
38
|
+
declare const SvgOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
39
39
|
|
|
40
|
-
declare const SvgPay: (props: SVGProps<SVGSVGElement>) =>
|
|
40
|
+
declare const SvgPay: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
41
41
|
|
|
42
|
-
declare const SvgPin: (props: SVGProps<SVGSVGElement>) =>
|
|
42
|
+
declare const SvgPin: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
43
43
|
|
|
44
|
-
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) =>
|
|
44
|
+
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
45
45
|
|
|
46
|
-
declare const SvgRate: (props: SVGProps<SVGSVGElement>) =>
|
|
46
|
+
declare const SvgRate: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
47
47
|
|
|
48
|
-
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) =>
|
|
48
|
+
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
49
49
|
|
|
50
|
-
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) =>
|
|
50
|
+
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
51
51
|
|
|
52
|
-
declare const SvgSupport: (props: SVGProps<SVGSVGElement>) =>
|
|
52
|
+
declare const SvgSupport: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
53
53
|
|
|
54
|
-
declare const SvgTimesheet: (props: SVGProps<SVGSVGElement>) =>
|
|
54
|
+
declare const SvgTimesheet: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
55
55
|
|
|
56
|
-
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) =>
|
|
56
|
+
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
57
57
|
|
|
58
|
-
declare const SvgUser: (props: SVGProps<SVGSVGElement>) =>
|
|
58
|
+
declare const SvgUser: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
59
59
|
|
|
60
|
-
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) =>
|
|
60
|
+
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
61
61
|
|
|
62
|
-
export { SvgAdditionsDeductions as
|
|
62
|
+
export { SvgAdditionsDeductions as AdditionsDeductionsIcon, SvgBag as BagIcon, SvgBarcodeError as BarcodeErrorIcon, SvgCalendar as CalendarIcon, SvgCart as CartIcon, SvgDeliver as DeliverIcon, SvgDocumentSuccess as DocumentSuccessIcon, SvgError as ErrorIcon, SvgFavorite as FavoriteIcon, SvgHelp as HelpIcon, SvgLoyalty as LoyaltyIcon, SvgMagic as MagicIcon, SvgMatches as MatchesIcon, SvgMessages as MessagesIcon, SvgMoney as MoneyIcon, SvgNotification as NotificationIcon, SvgOrderEdit as OrderEditIcon, SvgOrder as OrderIcon, SvgPay as PayIcon, SvgPin as PinIcon, SvgQrCode as QrCodeIcon, SvgRate as RateIcon, SvgSearch as SearchIcon, SvgSignOut as SignOutIcon, SvgSupport as SupportIcon, SvgTimesheet as TimesheetIcon, SvgTrash as TrashIcon, SvgUser as UserIcon, SvgVoucher as VoucherIcon };
|
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { SVGProps } from 'react';
|
|
3
3
|
|
|
4
|
-
declare const SvgAdditionsDeductions: (props: SVGProps<SVGSVGElement>) =>
|
|
4
|
+
declare const SvgAdditionsDeductions: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
5
5
|
|
|
6
|
-
declare const SvgBag: (props: SVGProps<SVGSVGElement>) =>
|
|
6
|
+
declare const SvgBag: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
7
7
|
|
|
8
|
-
declare const SvgBarcodeError: (props: SVGProps<SVGSVGElement>) =>
|
|
8
|
+
declare const SvgBarcodeError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
9
9
|
|
|
10
|
-
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) =>
|
|
10
|
+
declare const SvgCalendar: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
11
11
|
|
|
12
|
-
declare const SvgCart: (props: SVGProps<SVGSVGElement>) =>
|
|
12
|
+
declare const SvgCart: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
13
13
|
|
|
14
|
-
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) =>
|
|
14
|
+
declare const SvgDeliver: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
15
15
|
|
|
16
|
-
declare const SvgDocumentSuccess: (props: SVGProps<SVGSVGElement>) =>
|
|
16
|
+
declare const SvgDocumentSuccess: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
17
17
|
|
|
18
|
-
declare const SvgError: (props: SVGProps<SVGSVGElement>) =>
|
|
18
|
+
declare const SvgError: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
19
19
|
|
|
20
|
-
declare const SvgFavorite: (props: SVGProps<SVGSVGElement>) =>
|
|
20
|
+
declare const SvgFavorite: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
21
21
|
|
|
22
|
-
declare const SvgHelp: (props: SVGProps<SVGSVGElement>) =>
|
|
22
|
+
declare const SvgHelp: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
23
23
|
|
|
24
|
-
declare const SvgLoyalty: (props: SVGProps<SVGSVGElement>) =>
|
|
24
|
+
declare const SvgLoyalty: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
25
25
|
|
|
26
|
-
declare const SvgMagic: (props: SVGProps<SVGSVGElement>) =>
|
|
26
|
+
declare const SvgMagic: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
27
27
|
|
|
28
|
-
declare const SvgMatches: (props: SVGProps<SVGSVGElement>) =>
|
|
28
|
+
declare const SvgMatches: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
29
29
|
|
|
30
|
-
declare const SvgMessages: (props: SVGProps<SVGSVGElement>) =>
|
|
30
|
+
declare const SvgMessages: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
31
31
|
|
|
32
|
-
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) =>
|
|
32
|
+
declare const SvgMoney: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
33
33
|
|
|
34
|
-
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) =>
|
|
34
|
+
declare const SvgNotification: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
35
35
|
|
|
36
|
-
declare const SvgOrderEdit: (props: SVGProps<SVGSVGElement>) =>
|
|
36
|
+
declare const SvgOrderEdit: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
37
37
|
|
|
38
|
-
declare const SvgOrder: (props: SVGProps<SVGSVGElement>) =>
|
|
38
|
+
declare const SvgOrder: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
39
39
|
|
|
40
|
-
declare const SvgPay: (props: SVGProps<SVGSVGElement>) =>
|
|
40
|
+
declare const SvgPay: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
41
41
|
|
|
42
|
-
declare const SvgPin: (props: SVGProps<SVGSVGElement>) =>
|
|
42
|
+
declare const SvgPin: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
43
43
|
|
|
44
|
-
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) =>
|
|
44
|
+
declare const SvgQrCode: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
45
45
|
|
|
46
|
-
declare const SvgRate: (props: SVGProps<SVGSVGElement>) =>
|
|
46
|
+
declare const SvgRate: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
47
47
|
|
|
48
|
-
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) =>
|
|
48
|
+
declare const SvgSearch: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
49
49
|
|
|
50
|
-
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) =>
|
|
50
|
+
declare const SvgSignOut: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
51
51
|
|
|
52
|
-
declare const SvgSupport: (props: SVGProps<SVGSVGElement>) =>
|
|
52
|
+
declare const SvgSupport: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
53
53
|
|
|
54
|
-
declare const SvgTimesheet: (props: SVGProps<SVGSVGElement>) =>
|
|
54
|
+
declare const SvgTimesheet: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
55
55
|
|
|
56
|
-
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) =>
|
|
56
|
+
declare const SvgTrash: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
57
57
|
|
|
58
|
-
declare const SvgUser: (props: SVGProps<SVGSVGElement>) =>
|
|
58
|
+
declare const SvgUser: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
59
59
|
|
|
60
|
-
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) =>
|
|
60
|
+
declare const SvgVoucher: (props: SVGProps<SVGSVGElement>) => react.JSX.Element;
|
|
61
61
|
|
|
62
|
-
export { SvgAdditionsDeductions as
|
|
62
|
+
export { SvgAdditionsDeductions as AdditionsDeductionsIcon, SvgBag as BagIcon, SvgBarcodeError as BarcodeErrorIcon, SvgCalendar as CalendarIcon, SvgCart as CartIcon, SvgDeliver as DeliverIcon, SvgDocumentSuccess as DocumentSuccessIcon, SvgError as ErrorIcon, SvgFavorite as FavoriteIcon, SvgHelp as HelpIcon, SvgLoyalty as LoyaltyIcon, SvgMagic as MagicIcon, SvgMatches as MatchesIcon, SvgMessages as MessagesIcon, SvgMoney as MoneyIcon, SvgNotification as NotificationIcon, SvgOrderEdit as OrderEditIcon, SvgOrder as OrderIcon, SvgPay as PayIcon, SvgPin as PinIcon, SvgQrCode as QrCodeIcon, SvgRate as RateIcon, SvgSearch as SearchIcon, SvgSignOut as SignOutIcon, SvgSupport as SupportIcon, SvgTimesheet as TimesheetIcon, SvgTrash as TrashIcon, SvgUser as UserIcon, SvgVoucher as VoucherIcon };
|
package/dist/two-colors/index.js
CHANGED
|
@@ -20,35 +20,35 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/two-colors/index.ts
|
|
21
21
|
var two_colors_exports = {};
|
|
22
22
|
__export(two_colors_exports, {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
23
|
+
AdditionsDeductionsIcon: () => AdditionsDeductions_default,
|
|
24
|
+
BagIcon: () => Bag_default,
|
|
25
|
+
BarcodeErrorIcon: () => BarcodeError_default,
|
|
26
|
+
CalendarIcon: () => Calendar_default,
|
|
27
|
+
CartIcon: () => Cart_default,
|
|
28
|
+
DeliverIcon: () => Deliver_default,
|
|
29
|
+
DocumentSuccessIcon: () => DocumentSuccess_default,
|
|
30
|
+
ErrorIcon: () => Error_default,
|
|
31
|
+
FavoriteIcon: () => Favorite_default,
|
|
32
|
+
HelpIcon: () => Help_default,
|
|
33
|
+
LoyaltyIcon: () => Loyalty_default,
|
|
34
|
+
MagicIcon: () => Magic_default,
|
|
35
|
+
MatchesIcon: () => Matches_default,
|
|
36
|
+
MessagesIcon: () => Messages_default,
|
|
37
|
+
MoneyIcon: () => Money_default,
|
|
38
|
+
NotificationIcon: () => Notification_default,
|
|
39
|
+
OrderEditIcon: () => OrderEdit_default,
|
|
40
|
+
OrderIcon: () => Order_default,
|
|
41
|
+
PayIcon: () => Pay_default,
|
|
42
|
+
PinIcon: () => Pin_default,
|
|
43
|
+
QrCodeIcon: () => QrCode_default,
|
|
44
|
+
RateIcon: () => Rate_default,
|
|
45
|
+
SearchIcon: () => Search_default,
|
|
46
|
+
SignOutIcon: () => SignOut_default,
|
|
47
|
+
SupportIcon: () => Support_default,
|
|
48
|
+
TimesheetIcon: () => Timesheet_default,
|
|
49
|
+
TrashIcon: () => Trash_default,
|
|
50
|
+
UserIcon: () => User_default,
|
|
51
|
+
VoucherIcon: () => Voucher_default
|
|
52
52
|
});
|
|
53
53
|
module.exports = __toCommonJS(two_colors_exports);
|
|
54
54
|
|
|
@@ -304,33 +304,33 @@ var SvgVoucher = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)("svg"
|
|
|
304
304
|
var Voucher_default = SvgVoucher;
|
|
305
305
|
// Annotate the CommonJS export names for ESM import in node:
|
|
306
306
|
0 && (module.exports = {
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
307
|
+
AdditionsDeductionsIcon,
|
|
308
|
+
BagIcon,
|
|
309
|
+
BarcodeErrorIcon,
|
|
310
|
+
CalendarIcon,
|
|
311
|
+
CartIcon,
|
|
312
|
+
DeliverIcon,
|
|
313
|
+
DocumentSuccessIcon,
|
|
314
|
+
ErrorIcon,
|
|
315
|
+
FavoriteIcon,
|
|
316
|
+
HelpIcon,
|
|
317
|
+
LoyaltyIcon,
|
|
318
|
+
MagicIcon,
|
|
319
|
+
MatchesIcon,
|
|
320
|
+
MessagesIcon,
|
|
321
|
+
MoneyIcon,
|
|
322
|
+
NotificationIcon,
|
|
323
|
+
OrderEditIcon,
|
|
324
|
+
OrderIcon,
|
|
325
|
+
PayIcon,
|
|
326
|
+
PinIcon,
|
|
327
|
+
QrCodeIcon,
|
|
328
|
+
RateIcon,
|
|
329
|
+
SearchIcon,
|
|
330
|
+
SignOutIcon,
|
|
331
|
+
SupportIcon,
|
|
332
|
+
TimesheetIcon,
|
|
333
|
+
TrashIcon,
|
|
334
|
+
UserIcon,
|
|
335
|
+
VoucherIcon
|
|
336
336
|
});
|
|
@@ -249,33 +249,33 @@ var SvgVoucher = (props) => /* @__PURE__ */ jsxs29("svg", { xmlns: "http://www.w
|
|
|
249
249
|
] });
|
|
250
250
|
var Voucher_default = SvgVoucher;
|
|
251
251
|
export {
|
|
252
|
-
AdditionsDeductions_default as
|
|
253
|
-
Bag_default as
|
|
254
|
-
BarcodeError_default as
|
|
255
|
-
Calendar_default as
|
|
256
|
-
Cart_default as
|
|
257
|
-
Deliver_default as
|
|
258
|
-
DocumentSuccess_default as
|
|
259
|
-
Error_default as
|
|
260
|
-
Favorite_default as
|
|
261
|
-
Help_default as
|
|
262
|
-
Loyalty_default as
|
|
263
|
-
Magic_default as
|
|
264
|
-
Matches_default as
|
|
265
|
-
Messages_default as
|
|
266
|
-
Money_default as
|
|
267
|
-
Notification_default as
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
Pay_default as
|
|
271
|
-
Pin_default as
|
|
272
|
-
QrCode_default as
|
|
273
|
-
Rate_default as
|
|
274
|
-
Search_default as
|
|
275
|
-
SignOut_default as
|
|
276
|
-
Support_default as
|
|
277
|
-
Timesheet_default as
|
|
278
|
-
Trash_default as
|
|
279
|
-
User_default as
|
|
280
|
-
Voucher_default as
|
|
252
|
+
AdditionsDeductions_default as AdditionsDeductionsIcon,
|
|
253
|
+
Bag_default as BagIcon,
|
|
254
|
+
BarcodeError_default as BarcodeErrorIcon,
|
|
255
|
+
Calendar_default as CalendarIcon,
|
|
256
|
+
Cart_default as CartIcon,
|
|
257
|
+
Deliver_default as DeliverIcon,
|
|
258
|
+
DocumentSuccess_default as DocumentSuccessIcon,
|
|
259
|
+
Error_default as ErrorIcon,
|
|
260
|
+
Favorite_default as FavoriteIcon,
|
|
261
|
+
Help_default as HelpIcon,
|
|
262
|
+
Loyalty_default as LoyaltyIcon,
|
|
263
|
+
Magic_default as MagicIcon,
|
|
264
|
+
Matches_default as MatchesIcon,
|
|
265
|
+
Messages_default as MessagesIcon,
|
|
266
|
+
Money_default as MoneyIcon,
|
|
267
|
+
Notification_default as NotificationIcon,
|
|
268
|
+
OrderEdit_default as OrderEditIcon,
|
|
269
|
+
Order_default as OrderIcon,
|
|
270
|
+
Pay_default as PayIcon,
|
|
271
|
+
Pin_default as PinIcon,
|
|
272
|
+
QrCode_default as QrCodeIcon,
|
|
273
|
+
Rate_default as RateIcon,
|
|
274
|
+
Search_default as SearchIcon,
|
|
275
|
+
SignOut_default as SignOutIcon,
|
|
276
|
+
Support_default as SupportIcon,
|
|
277
|
+
Timesheet_default as TimesheetIcon,
|
|
278
|
+
Trash_default as TrashIcon,
|
|
279
|
+
User_default as UserIcon,
|
|
280
|
+
Voucher_default as VoucherIcon
|
|
281
281
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iguanads/icons",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Iguana Design System - Icons - by Bento",
|
|
5
|
+
"sideEffects": false,
|
|
5
6
|
"files": [
|
|
6
7
|
"dist"
|
|
7
8
|
],
|
|
@@ -30,26 +31,30 @@
|
|
|
30
31
|
"keywords": [],
|
|
31
32
|
"author": "",
|
|
32
33
|
"license": "MIT",
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"react": ">=18"
|
|
36
|
+
},
|
|
33
37
|
"devDependencies": {
|
|
34
|
-
"@biomejs/biome": "^2.4.
|
|
38
|
+
"@biomejs/biome": "^2.4.16",
|
|
35
39
|
"@svgr/cli": "^8.1.0",
|
|
36
40
|
"@svgr/core": "^8.1.0",
|
|
37
41
|
"@svgr/plugin-jsx": "^8.1.0",
|
|
38
42
|
"@svgr/plugin-svgo": "^8.1.0",
|
|
39
|
-
"@types/react": "^19.2.
|
|
43
|
+
"@types/react": "^19.2.17",
|
|
40
44
|
"@types/react-dom": "^19.2.3",
|
|
41
|
-
"react": "^19.2.
|
|
42
|
-
"react-dom": "^19.2.
|
|
43
|
-
"svgo": "^
|
|
45
|
+
"react": "^19.2.7",
|
|
46
|
+
"react-dom": "^19.2.7",
|
|
47
|
+
"svgo": "^4.0.1",
|
|
44
48
|
"tsup": "^8.5.1",
|
|
45
49
|
"typescript": "^6.0.3",
|
|
46
|
-
"@iguanads/biome-config": "1.
|
|
50
|
+
"@iguanads/biome-config": "1.2.0",
|
|
47
51
|
"@iguanads/typescript-config": "2.0.0"
|
|
48
52
|
},
|
|
49
53
|
"scripts": {
|
|
50
54
|
"dev": "tsup src/**/index.ts --format esm,cjs --dts --external react --watch",
|
|
51
55
|
"build": "tsup src/**/index.ts --format esm,cjs --dts --external react",
|
|
52
|
-
"build:icons": "npx @svgr/cli --config-file .svgrrc.js --out-dir src -- src/assets",
|
|
56
|
+
"build:icons": "npx @svgr/cli --config-file .svgrrc.js --index-template ./svgr-index-template.js --out-dir src -- src/assets",
|
|
57
|
+
"check-types": "tsc --noEmit",
|
|
53
58
|
"lint": "biome check --write ."
|
|
54
59
|
}
|
|
55
60
|
}
|