@epilot360/icons 1.13.2 → 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 +12 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/react/EpilotIcon.d.ts +6 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/Label/index.d.ts +4 -0
- package/react/Label/index.js +2 -0
- package/react/Label/index.js.map +1 -0
- package/react/LabelOff/index.d.ts +4 -0
- package/react/LabelOff/index.js +2 -0
- package/react/LabelOff/index.js.map +1 -0
- 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 +3 -0
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/svg/Label/icon-fill.svg +1 -0
- package/svg/Label/icon.svg +1 -0
- package/svg/Label/index.d.ts +3 -0
- package/svg/Label/index.js +2 -0
- package/svg/Label/index.js.map +1 -0
- package/svg/LabelOff/icon-fill.svg +1 -0
- package/svg/LabelOff/icon.svg +1 -0
- package/svg/LabelOff/index.d.ts +3 -0
- package/svg/LabelOff/index.js +2 -0
- package/svg/LabelOff/index.js.map +1 -0
- 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 +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/svg/svgIcon.d.ts
CHANGED
|
@@ -140,6 +140,9 @@ export declare const svgMap: {
|
|
|
140
140
|
note_stack: (opts?: IconProps) => string;
|
|
141
141
|
double_thumbs_up: (opts?: IconProps) => string;
|
|
142
142
|
ai_star: (opts?: IconProps) => string;
|
|
143
|
+
label: (opts?: IconProps) => string;
|
|
144
|
+
label_off: (opts?: IconProps) => string;
|
|
145
|
+
remove: (opts?: IconProps) => string;
|
|
143
146
|
};
|
|
144
147
|
export type IconSVGName = keyof typeof svgMap;
|
|
145
148
|
type Opts = IconProps & {
|