@epilot360/icons 1.15.2 → 1.16.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/__mocks__/icon-file-mock.d.ts +2 -0
- package/__mocks__/icon-file-mock.js +3 -0
- package/__mocks__/icon-file-mock.js.map +1 -0
- package/icons.config.yaml +13 -5
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/AutoDelete/index.d.ts +4 -0
- package/react/AutoDelete/index.js +2 -0
- package/react/AutoDelete/index.js.map +1 -0
- package/react/Blueprint/index.d.ts +4 -0
- package/react/Blueprint/index.js +2 -0
- package/react/Blueprint/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/index.d.ts +2 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/svg/AutoDelete/icon-fill.svg +1 -0
- package/svg/AutoDelete/icon.svg +1 -0
- package/svg/AutoDelete/index.d.ts +3 -0
- package/svg/AutoDelete/index.js +2 -0
- package/svg/AutoDelete/index.js.map +1 -0
- package/svg/Blueprint/icon-fill.svg +1 -0
- package/svg/Blueprint/icon.svg +1 -0
- package/svg/Blueprint/index.d.ts +3 -0
- package/svg/Blueprint/index.js +2 -0
- package/svg/Blueprint/index.js.map +1 -0
- package/svg/index.d.ts +2 -0
- package/svg/index.js +1 -1
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +2 -0
- package/svg/svgIcon.js +1 -1
- package/svg/svgIcon.js.map +1 -1
package/svg/svgIcon.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ export declare const svgMap: {
|
|
|
67
67
|
webhook: (opts?: IconProps) => string;
|
|
68
68
|
design: (opts?: IconProps) => string;
|
|
69
69
|
workflow: (opts?: IconProps) => string;
|
|
70
|
+
blueprint: (opts?: IconProps) => string;
|
|
70
71
|
phase: (opts?: IconProps) => string;
|
|
71
72
|
automation: (opts?: IconProps) => string;
|
|
72
73
|
journey: (opts?: IconProps) => string;
|
|
@@ -154,6 +155,7 @@ export declare const svgMap: {
|
|
|
154
155
|
read_more: (opts?: IconProps) => string;
|
|
155
156
|
keep: (opts?: IconProps) => string;
|
|
156
157
|
keep_off: (opts?: IconProps) => string;
|
|
158
|
+
auto_delete: (opts?: IconProps) => string;
|
|
157
159
|
};
|
|
158
160
|
export type IconSVGName = keyof typeof svgMap;
|
|
159
161
|
type Opts = IconProps & {
|