@epilot360/icons 1.13.6 → 1.13.8
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 +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +4 -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/ViewDay/index.d.ts +4 -0
- package/react/ViewDay/index.js +2 -0
- package/react/ViewDay/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/ViewDay/icon-fill.svg +1 -0
- package/svg/ViewDay/icon.svg +1 -0
- package/svg/ViewDay/index.d.ts +3 -0
- package/svg/ViewDay/index.js +2 -0
- package/svg/ViewDay/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/package.json
CHANGED
package/react/EpilotIcon.d.ts
CHANGED
|
@@ -144,6 +144,8 @@ import { LabelOff } from './LabelOff';
|
|
|
144
144
|
import { Remove } from './Remove';
|
|
145
145
|
import { FileManager } from './FileManager';
|
|
146
146
|
import { Bolt } from './Bolt';
|
|
147
|
+
import { ViewDay } from './ViewDay';
|
|
148
|
+
import { Flip } from './Flip';
|
|
147
149
|
import type { IconPropsReact } from './types';
|
|
148
150
|
export declare const IconComponentsMap: {
|
|
149
151
|
epilot: typeof Epilot;
|
|
@@ -291,6 +293,8 @@ export declare const IconComponentsMap: {
|
|
|
291
293
|
remove: typeof Remove;
|
|
292
294
|
file_manager: typeof FileManager;
|
|
293
295
|
bolt: typeof Bolt;
|
|
296
|
+
viewDay: typeof ViewDay;
|
|
297
|
+
flip: typeof Flip;
|
|
294
298
|
};
|
|
295
299
|
export type IconName = keyof typeof IconComponentsMap;
|
|
296
300
|
type Props = IconPropsReact & {
|