@epilot360/icons 1.13.0 → 1.13.2
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 +6 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +4 -3
- package/react/AIStar/index.d.ts +4 -0
- package/react/AIStar/index.js +2 -0
- package/react/AIStar/index.js.map +1 -0
- package/react/DoubleThumbsUp/index.d.ts +4 -0
- package/react/DoubleThumbsUp/index.js +2 -0
- package/react/DoubleThumbsUp/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/index.d.ts +2 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/svg/AIStar/icon-fill.svg +4 -0
- package/svg/AIStar/icon.svg +4 -0
- package/svg/AIStar/index.d.ts +3 -0
- package/svg/AIStar/index.js +2 -0
- package/svg/AIStar/index.js.map +1 -0
- package/svg/DoubleThumbsUp/icon-fill.svg +3 -0
- package/svg/DoubleThumbsUp/icon.svg +3 -0
- package/svg/DoubleThumbsUp/index.d.ts +3 -0
- package/svg/DoubleThumbsUp/index.js +2 -0
- package/svg/DoubleThumbsUp/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/__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/svg/svgIcon.d.ts
CHANGED
|
@@ -138,6 +138,8 @@ export declare const svgMap: {
|
|
|
138
138
|
pause_circle: (opts?: IconProps) => string;
|
|
139
139
|
condition: (opts?: IconProps) => string;
|
|
140
140
|
note_stack: (opts?: IconProps) => string;
|
|
141
|
+
double_thumbs_up: (opts?: IconProps) => string;
|
|
142
|
+
ai_star: (opts?: IconProps) => string;
|
|
141
143
|
};
|
|
142
144
|
export type IconSVGName = keyof typeof svgMap;
|
|
143
145
|
type Opts = IconProps & {
|