@epilot360/icons 1.17.27 → 1.17.29
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 +16 -6
- package/index.js +1878 -1733
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +188 -186
- package/react/EpilotIcon.js +544 -433
- package/react/EpilotIcon.js.map +1 -1
- package/react/Exclamation/index.js +2 -2
- package/react/FeatureSearch/index.d.ts +4 -0
- package/react/FeatureSearch/index.js +209 -0
- package/react/FeatureSearch/index.js.map +1 -0
- package/react/index.d.ts +184 -183
- package/react/index.js +981 -867
- package/react/index.js.map +1 -1
- package/svg/Exclamation/index.js +2 -2
- package/svg/FeatureSearch/icon-fill.svg +1 -0
- package/svg/FeatureSearch/icon.svg +1 -0
- package/svg/FeatureSearch/index.d.ts +3 -0
- package/svg/FeatureSearch/index.js +159 -0
- package/svg/FeatureSearch/index.js.map +1 -0
- package/svg/index.d.ts +184 -183
- package/svg/index.js +947 -866
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +4 -3
- package/svg/svgIcon.js +510 -432
- package/svg/svgIcon.js.map +1 -1
package/svg/svgIcon.d.ts
CHANGED
|
@@ -66,8 +66,6 @@ export declare const svgMap: {
|
|
|
66
66
|
file: (opts?: IconProps) => string;
|
|
67
67
|
file_shared: (opts?: IconProps) => string;
|
|
68
68
|
note: (opts?: IconProps) => string;
|
|
69
|
-
move: (opts?: IconProps) => string;
|
|
70
|
-
move_in: (opts?: IconProps) => string;
|
|
71
69
|
document: (opts?: IconProps) => string;
|
|
72
70
|
templates: (opts?: IconProps) => string;
|
|
73
71
|
product: (opts?: IconProps) => string;
|
|
@@ -158,7 +156,6 @@ export declare const svgMap: {
|
|
|
158
156
|
pause_circle: (opts?: IconProps) => string;
|
|
159
157
|
condition: (opts?: IconProps) => string;
|
|
160
158
|
condition_circle: (opts?: IconProps) => string;
|
|
161
|
-
condition_graph: (opts?: IconProps) => string;
|
|
162
159
|
note_stack: (opts?: IconProps) => string;
|
|
163
160
|
double_thumbs_up: (opts?: IconProps) => string;
|
|
164
161
|
ai_star: (opts?: IconProps) => string;
|
|
@@ -216,6 +213,10 @@ export declare const svgMap: {
|
|
|
216
213
|
toggle: (opts?: IconProps) => string;
|
|
217
214
|
numbers: (opts?: IconProps) => string;
|
|
218
215
|
building: (opts?: IconProps) => string;
|
|
216
|
+
move: (opts?: IconProps) => string;
|
|
217
|
+
move_in: (opts?: IconProps) => string;
|
|
218
|
+
condition_graph: (opts?: IconProps) => string;
|
|
219
|
+
feature_search: (opts?: IconProps) => string;
|
|
219
220
|
};
|
|
220
221
|
export type IconSVGName = keyof typeof svgMap;
|
|
221
222
|
type Opts = IconProps & {
|