@epilot360/icons 1.17.22 → 1.17.23
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/icons.config.yaml +12 -0
- package/index.js +1642 -1207
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/BillingAccount/index.d.ts +4 -0
- package/react/BillingAccount/index.js +209 -0
- package/react/BillingAccount/index.js.map +1 -0
- package/react/ChatBubble/index.d.ts +4 -0
- package/react/ChatBubble/index.js +209 -0
- package/react/ChatBubble/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +6 -0
- package/react/EpilotIcon.js +633 -300
- package/react/EpilotIcon.js.map +1 -1
- package/react/StackedEmail/index.d.ts +4 -0
- package/react/StackedEmail/index.js +209 -0
- package/react/StackedEmail/index.js.map +1 -0
- package/react/index.d.ts +3 -0
- package/react/index.js +945 -603
- package/react/index.js.map +1 -1
- package/svg/BillingAccount/icon-fill.svg +1 -0
- package/svg/BillingAccount/icon.svg +1 -0
- package/svg/BillingAccount/index.d.ts +3 -0
- package/svg/BillingAccount/index.js +159 -0
- package/svg/BillingAccount/index.js.map +1 -0
- package/svg/ChatBubble/icon-fill.svg +1 -0
- package/svg/ChatBubble/icon.svg +1 -0
- package/svg/ChatBubble/index.d.ts +3 -0
- package/svg/ChatBubble/index.js +159 -0
- package/svg/ChatBubble/index.js.map +1 -0
- package/svg/StackedEmail/icon-fill.svg +1 -0
- package/svg/StackedEmail/icon.svg +1 -0
- package/svg/StackedEmail/index.d.ts +3 -0
- package/svg/StackedEmail/index.js +159 -0
- package/svg/StackedEmail/index.js.map +1 -0
- package/svg/index.d.ts +3 -0
- package/svg/index.js +846 -603
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +3 -0
- package/svg/svgIcon.js +534 -300
- package/svg/svgIcon.js.map +1 -1
package/svg/svgIcon.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export declare const svgMap: {
|
|
|
54
54
|
contact: (opts?: IconProps) => string;
|
|
55
55
|
account: (opts?: IconProps) => string;
|
|
56
56
|
contract: (opts?: IconProps) => string;
|
|
57
|
+
billing_account: (opts?: IconProps) => string;
|
|
57
58
|
request: (opts?: IconProps) => string;
|
|
58
59
|
message: (opts?: IconProps) => string;
|
|
59
60
|
thread: (opts?: IconProps) => string;
|
|
@@ -204,6 +205,8 @@ export declare const svgMap: {
|
|
|
204
205
|
widgets: (opts?: IconProps) => string;
|
|
205
206
|
attach: (opts?: IconProps) => string;
|
|
206
207
|
description: (opts?: IconProps) => string;
|
|
208
|
+
stacked_email: (opts?: IconProps) => string;
|
|
209
|
+
chat_bubble: (opts?: IconProps) => string;
|
|
207
210
|
};
|
|
208
211
|
export type IconSVGName = keyof typeof svgMap;
|
|
209
212
|
type Opts = IconProps & {
|