@epilot360/icons 1.13.5 → 1.13.7
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/Bolt/index.d.ts +4 -0
- package/react/Bolt/index.js +2 -0
- package/react/Bolt/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/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/Bolt/icon-fill.svg +1 -0
- package/svg/Bolt/icon.svg +1 -0
- package/svg/Bolt/index.d.ts +3 -0
- package/svg/Bolt/index.js +2 -0
- package/svg/Bolt/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/svg/svgIcon.d.ts
CHANGED
|
@@ -144,6 +144,8 @@ export declare const svgMap: {
|
|
|
144
144
|
label_off: (opts?: IconProps) => string;
|
|
145
145
|
remove: (opts?: IconProps) => string;
|
|
146
146
|
file_manager: (opts?: IconProps) => string;
|
|
147
|
+
bolt: (opts?: IconProps) => string;
|
|
148
|
+
viewDay: (opts?: IconProps) => string;
|
|
147
149
|
};
|
|
148
150
|
export type IconSVGName = keyof typeof svgMap;
|
|
149
151
|
type Opts = IconProps & {
|