@epilot360/icons 1.16.5 → 1.16.6
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 -0
- 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/Forest/index.d.ts +4 -0
- package/react/Forest/index.js +2 -0
- package/react/Forest/index.js.map +1 -0
- package/react/Fuel/index.d.ts +4 -0
- package/react/Fuel/index.js +2 -0
- package/react/Fuel/index.js.map +1 -0
- package/react/Recycling/index.d.ts +4 -0
- package/react/Recycling/index.js +2 -0
- package/react/Recycling/index.js.map +1 -0
- package/react/index.d.ts +3 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/svg/Forest/icon-fill.svg +1 -0
- package/svg/Forest/icon.svg +1 -0
- package/svg/Forest/index.d.ts +3 -0
- package/svg/Forest/index.js +2 -0
- package/svg/Forest/index.js.map +1 -0
- package/svg/Fuel/icon-fill.svg +1 -0
- package/svg/Fuel/icon.svg +1 -0
- package/svg/Fuel/index.d.ts +3 -0
- package/svg/Fuel/index.js +2 -0
- package/svg/Fuel/index.js.map +1 -0
- package/svg/Recycling/icon-fill.svg +1 -0
- package/svg/Recycling/icon.svg +1 -0
- package/svg/Recycling/index.d.ts +3 -0
- package/svg/Recycling/index.js +2 -0
- package/svg/Recycling/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
|
@@ -159,6 +159,9 @@ import { KeepOff } from './KeepOff';
|
|
|
159
159
|
import { AutoDelete } from './AutoDelete';
|
|
160
160
|
import { DeleteForever } from './DeleteForever';
|
|
161
161
|
import { Restore } from './Restore';
|
|
162
|
+
import { Forest } from './Forest';
|
|
163
|
+
import { Fuel } from './Fuel';
|
|
164
|
+
import { Recycling } from './Recycling';
|
|
162
165
|
import type { IconPropsReact } from './types';
|
|
163
166
|
export declare const IconComponentsMap: {
|
|
164
167
|
epilot: typeof Epilot;
|
|
@@ -321,6 +324,9 @@ export declare const IconComponentsMap: {
|
|
|
321
324
|
auto_delete: typeof AutoDelete;
|
|
322
325
|
delete_forever: typeof DeleteForever;
|
|
323
326
|
history: typeof Restore;
|
|
327
|
+
forest: typeof Forest;
|
|
328
|
+
fuel: typeof Fuel;
|
|
329
|
+
recycling: typeof Recycling;
|
|
324
330
|
};
|
|
325
331
|
export type IconName = keyof typeof IconComponentsMap;
|
|
326
332
|
type Props = IconPropsReact & {
|