@epilot360/icons 1.13.3 → 1.13.4
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 +4 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +2 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/Remove/index.d.ts +4 -0
- package/react/Remove/index.js +2 -0
- package/react/Remove/index.js.map +1 -0
- package/react/index.d.ts +1 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/svg/Remove/icon-fill.svg +1 -0
- package/svg/Remove/icon.svg +1 -0
- package/svg/Remove/index.d.ts +3 -0
- package/svg/Remove/index.js +2 -0
- package/svg/Remove/index.js.map +1 -0
- package/svg/index.d.ts +1 -0
- package/svg/index.js +1 -1
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +1 -0
- package/svg/svgIcon.js +1 -1
- package/svg/svgIcon.js.map +1 -1
- package/__mocks__/icon-file-mock.d.ts +0 -2
- package/__mocks__/icon-file-mock.js +0 -3
- package/__mocks__/icon-file-mock.js.map +0 -1
package/package.json
CHANGED
package/react/EpilotIcon.d.ts
CHANGED
|
@@ -141,6 +141,7 @@ import { DoubleThumbsUp } from './DoubleThumbsUp';
|
|
|
141
141
|
import { AIStar } from './AIStar';
|
|
142
142
|
import { Label } from './Label';
|
|
143
143
|
import { LabelOff } from './LabelOff';
|
|
144
|
+
import { Remove } from './Remove';
|
|
144
145
|
import type { IconPropsReact } from './types';
|
|
145
146
|
export declare const IconComponentsMap: {
|
|
146
147
|
epilot: typeof Epilot;
|
|
@@ -285,6 +286,7 @@ export declare const IconComponentsMap: {
|
|
|
285
286
|
ai_star: typeof AIStar;
|
|
286
287
|
label: typeof Label;
|
|
287
288
|
label_off: typeof LabelOff;
|
|
289
|
+
remove: typeof Remove;
|
|
288
290
|
};
|
|
289
291
|
export type IconName = keyof typeof IconComponentsMap;
|
|
290
292
|
type Props = IconPropsReact & {
|