@epilot360/icons 1.13.7 → 1.13.9
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 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +6 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/Flip/index.d.ts +4 -0
- package/react/Flip/index.js +2 -0
- package/react/Flip/index.js.map +1 -0
- package/react/Request/index.d.ts +4 -0
- package/react/Request/index.js +2 -0
- package/react/Request/index.js.map +1 -0
- package/react/Update/index.d.ts +4 -0
- package/react/Update/index.js +2 -0
- package/react/Update/index.js.map +1 -0
- package/react/index.d.ts +2 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/svg/Flip/icon-fill.svg +1 -0
- package/svg/Flip/icon.svg +1 -0
- package/svg/Flip/index.d.ts +3 -0
- package/svg/Flip/index.js +2 -0
- package/svg/Flip/index.js.map +1 -0
- package/svg/Request/icon-fill.svg +1 -0
- package/svg/Request/icon.svg +1 -0
- package/svg/Request/index.d.ts +3 -0
- package/svg/Request/index.js +2 -0
- package/svg/Request/index.js.map +1 -0
- package/svg/Update/icon-fill.svg +1 -0
- package/svg/Update/icon.svg +1 -0
- package/svg/Update/index.d.ts +3 -0
- package/svg/Update/index.js +2 -0
- package/svg/Update/index.js.map +1 -0
- package/svg/index.d.ts +3 -0
- package/svg/index.js +1 -1
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +3 -0
- package/svg/svgIcon.js +1 -1
- package/svg/svgIcon.js.map +1 -1
package/package.json
CHANGED
package/react/EpilotIcon.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ import { Order } from './Order';
|
|
|
49
49
|
import { Contact } from './Contact';
|
|
50
50
|
import { Account } from './Account';
|
|
51
51
|
import { Contract } from './Contract';
|
|
52
|
+
import { Request } from './Request';
|
|
52
53
|
import { Message } from './Message';
|
|
53
54
|
import { File } from './File';
|
|
54
55
|
import { Note } from './Note';
|
|
@@ -145,6 +146,8 @@ import { Remove } from './Remove';
|
|
|
145
146
|
import { FileManager } from './FileManager';
|
|
146
147
|
import { Bolt } from './Bolt';
|
|
147
148
|
import { ViewDay } from './ViewDay';
|
|
149
|
+
import { Flip } from './Flip';
|
|
150
|
+
import { Update } from './Update';
|
|
148
151
|
import type { IconPropsReact } from './types';
|
|
149
152
|
export declare const IconComponentsMap: {
|
|
150
153
|
epilot: typeof Epilot;
|
|
@@ -197,6 +200,7 @@ export declare const IconComponentsMap: {
|
|
|
197
200
|
contact: typeof Contact;
|
|
198
201
|
account: typeof Account;
|
|
199
202
|
contract: typeof Contract;
|
|
203
|
+
request: typeof Request;
|
|
200
204
|
message: typeof Message;
|
|
201
205
|
file: typeof File;
|
|
202
206
|
note: typeof Note;
|
|
@@ -293,6 +297,8 @@ export declare const IconComponentsMap: {
|
|
|
293
297
|
file_manager: typeof FileManager;
|
|
294
298
|
bolt: typeof Bolt;
|
|
295
299
|
viewDay: typeof ViewDay;
|
|
300
|
+
flip: typeof Flip;
|
|
301
|
+
update: typeof Update;
|
|
296
302
|
};
|
|
297
303
|
export type IconName = keyof typeof IconComponentsMap;
|
|
298
304
|
type Props = IconPropsReact & {
|