@epilot360/icons 1.17.5 → 1.17.7
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 +953 -663
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +386 -164
- package/react/EpilotIcon.js.map +1 -1
- package/react/ReplyAll/index.d.ts +4 -0
- package/react/ReplyAll/index.js +209 -0
- package/react/ReplyAll/index.js.map +1 -0
- package/react/Undo/index.d.ts +4 -0
- package/react/Undo/index.js +209 -0
- package/react/Undo/index.js.map +1 -0
- package/react/index.d.ts +2 -0
- package/react/index.js +559 -331
- package/react/index.js.map +1 -1
- package/svg/ReplyAll/icon-fill.svg +1 -0
- package/svg/ReplyAll/icon.svg +1 -0
- package/svg/ReplyAll/index.d.ts +3 -0
- package/svg/ReplyAll/index.js +159 -0
- package/svg/ReplyAll/index.js.map +1 -0
- package/svg/Undo/icon-fill.svg +1 -0
- package/svg/Undo/icon.svg +1 -0
- package/svg/Undo/index.d.ts +3 -0
- package/svg/Undo/index.js +159 -0
- package/svg/Undo/index.js.map +1 -0
- package/svg/index.d.ts +2 -0
- package/svg/index.js +493 -331
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +2 -0
- package/svg/svgIcon.js +320 -164
- package/svg/svgIcon.js.map +1 -1
package/package.json
CHANGED
package/react/EpilotIcon.d.ts
CHANGED
|
@@ -104,6 +104,7 @@ import { Exclamation } from './Exclamation';
|
|
|
104
104
|
import { Primary } from './Primary';
|
|
105
105
|
import { PriceMapping } from './PriceMapping';
|
|
106
106
|
import { Reply } from './Reply';
|
|
107
|
+
import { ReplyAll } from './ReplyAll';
|
|
107
108
|
import { Resize } from './Resize';
|
|
108
109
|
import { Portal } from './Portal';
|
|
109
110
|
import { ThumbUp } from './ThumbUp';
|
|
@@ -186,6 +187,7 @@ import { Unarchive } from './Unarchive';
|
|
|
186
187
|
import { LocationAway } from './LocationAway';
|
|
187
188
|
import { LinkOff } from './LinkOff';
|
|
188
189
|
import { Send } from './Send';
|
|
190
|
+
import { Undo } from './Undo';
|
|
189
191
|
import type { IconPropsReact } from './types';
|
|
190
192
|
export declare const IconComponentsMap: {
|
|
191
193
|
epilot: typeof Epilot;
|
|
@@ -293,6 +295,7 @@ export declare const IconComponentsMap: {
|
|
|
293
295
|
primary: typeof Primary;
|
|
294
296
|
price_mapping: typeof PriceMapping;
|
|
295
297
|
reply: typeof Reply;
|
|
298
|
+
reply_all: typeof ReplyAll;
|
|
296
299
|
resize: typeof Resize;
|
|
297
300
|
portal: typeof Portal;
|
|
298
301
|
thumb_up: typeof ThumbUp;
|
|
@@ -375,6 +378,7 @@ export declare const IconComponentsMap: {
|
|
|
375
378
|
location_away: typeof LocationAway;
|
|
376
379
|
link_off: typeof LinkOff;
|
|
377
380
|
send: typeof Send;
|
|
381
|
+
undo: typeof Undo;
|
|
378
382
|
};
|
|
379
383
|
export type IconName = keyof typeof IconComponentsMap;
|
|
380
384
|
type Props = IconPropsReact & {
|