@epilot360/icons 1.15.1 → 1.15.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 +7 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/Keep/index.d.ts +4 -0
- package/react/Keep/index.js +2 -0
- package/react/Keep/index.js.map +1 -0
- package/react/KeepOff/index.d.ts +4 -0
- package/react/KeepOff/index.js +2 -0
- package/react/KeepOff/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/Keep/icon-fill.svg +1 -0
- package/svg/Keep/icon.svg +1 -0
- package/svg/Keep/index.d.ts +3 -0
- package/svg/Keep/index.js +2 -0
- package/svg/Keep/index.js.map +1 -0
- package/svg/KeepOff/icon-fill.svg +1 -0
- package/svg/KeepOff/icon.svg +1 -0
- package/svg/KeepOff/index.d.ts +3 -0
- package/svg/KeepOff/index.js +2 -0
- package/svg/KeepOff/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
|
@@ -152,6 +152,8 @@ export declare const svgMap: {
|
|
|
152
152
|
schedule: (opts?: IconProps) => string;
|
|
153
153
|
calendar_clock: (opts?: IconProps) => string;
|
|
154
154
|
read_more: (opts?: IconProps) => string;
|
|
155
|
+
keep: (opts?: IconProps) => string;
|
|
156
|
+
keep_off: (opts?: IconProps) => string;
|
|
155
157
|
};
|
|
156
158
|
export type IconSVGName = keyof typeof svgMap;
|
|
157
159
|
type Opts = IconProps & {
|