@epilot360/icons 1.13.7 → 1.13.9
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 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EpilotIcon.d.ts +6 -0
- package/react/EpilotIcon.js +1 -1
- package/react/EpilotIcon.js.map +1 -1
- package/react/Flip/index.d.ts +4 -0
- package/react/Flip/index.js +2 -0
- package/react/Flip/index.js.map +1 -0
- package/react/Request/index.d.ts +4 -0
- package/react/Request/index.js +2 -0
- package/react/Request/index.js.map +1 -0
- package/react/Update/index.d.ts +4 -0
- package/react/Update/index.js +2 -0
- package/react/Update/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/Flip/icon-fill.svg +1 -0
- package/svg/Flip/icon.svg +1 -0
- package/svg/Flip/index.d.ts +3 -0
- package/svg/Flip/index.js +2 -0
- package/svg/Flip/index.js.map +1 -0
- package/svg/Request/icon-fill.svg +1 -0
- package/svg/Request/icon.svg +1 -0
- package/svg/Request/index.d.ts +3 -0
- package/svg/Request/index.js +2 -0
- package/svg/Request/index.js.map +1 -0
- package/svg/Update/icon-fill.svg +1 -0
- package/svg/Update/icon.svg +1 -0
- package/svg/Update/index.d.ts +3 -0
- package/svg/Update/index.js +2 -0
- package/svg/Update/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
|
@@ -50,6 +50,7 @@ export declare const svgMap: {
|
|
|
50
50
|
contact: (opts?: IconProps) => string;
|
|
51
51
|
account: (opts?: IconProps) => string;
|
|
52
52
|
contract: (opts?: IconProps) => string;
|
|
53
|
+
request: (opts?: IconProps) => string;
|
|
53
54
|
message: (opts?: IconProps) => string;
|
|
54
55
|
file: (opts?: IconProps) => string;
|
|
55
56
|
note: (opts?: IconProps) => string;
|
|
@@ -146,6 +147,8 @@ export declare const svgMap: {
|
|
|
146
147
|
file_manager: (opts?: IconProps) => string;
|
|
147
148
|
bolt: (opts?: IconProps) => string;
|
|
148
149
|
viewDay: (opts?: IconProps) => string;
|
|
150
|
+
flip: (opts?: IconProps) => string;
|
|
151
|
+
update: (opts?: IconProps) => string;
|
|
149
152
|
};
|
|
150
153
|
export type IconSVGName = keyof typeof svgMap;
|
|
151
154
|
type Opts = IconProps & {
|