@epilot360/icons 1.17.13 → 1.17.14
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 +9 -1
- package/index.js +1793 -1503
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +596 -374
- package/react/EpilotIcon.js.map +1 -1
- package/react/Purpose/index.d.ts +4 -0
- package/react/Purpose/index.js +209 -0
- package/react/Purpose/index.js.map +1 -0
- package/react/Ticket/index.d.ts +4 -0
- package/react/Ticket/index.js +209 -0
- package/react/Ticket/index.js.map +1 -0
- package/react/index.d.ts +2 -0
- package/react/index.js +979 -751
- package/react/index.js.map +1 -1
- package/svg/Purpose/icon-fill.svg +1 -0
- package/svg/Purpose/icon.svg +1 -0
- package/svg/Purpose/index.d.ts +3 -0
- package/svg/Purpose/index.js +159 -0
- package/svg/Purpose/index.js.map +1 -0
- package/svg/Ticket/icon-fill.svg +1 -0
- package/svg/Ticket/icon.svg +1 -0
- package/svg/Ticket/index.d.ts +3 -0
- package/svg/Ticket/index.js +159 -0
- package/svg/Ticket/index.js.map +1 -0
- package/svg/index.d.ts +2 -0
- package/svg/index.js +913 -751
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +2 -0
- package/svg/svgIcon.js +530 -374
- package/svg/svgIcon.js.map +1 -1
- package/__mocks__/icon-file-mock.d.ts +0 -2
- package/__mocks__/icon-file-mock.js +0 -3
- package/__mocks__/icon-file-mock.js.map +0 -1
package/svg/svgIcon.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare const svgMap: {
|
|
|
7
7
|
delete: (opts?: IconProps) => string;
|
|
8
8
|
add: (opts?: IconProps) => string;
|
|
9
9
|
add_circle: (opts?: IconProps) => string;
|
|
10
|
+
purpose: (opts?: IconProps) => string;
|
|
10
11
|
check: (opts?: IconProps) => string;
|
|
11
12
|
check_circle: (opts?: IconProps) => string;
|
|
12
13
|
warning: (opts?: IconProps) => string;
|
|
@@ -194,6 +195,7 @@ export declare const svgMap: {
|
|
|
194
195
|
chip_extraction: (opts?: IconProps) => string;
|
|
195
196
|
target: (opts?: IconProps) => string;
|
|
196
197
|
campaign: (opts?: IconProps) => string;
|
|
198
|
+
ticket: (opts?: IconProps) => string;
|
|
197
199
|
};
|
|
198
200
|
export type IconSVGName = keyof typeof svgMap;
|
|
199
201
|
type Opts = IconProps & {
|