@epilot360/icons 1.17.44 → 1.17.45
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 -9
- package/index.js +307 -307
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/Coupon/index.d.ts +4 -0
- package/react/Coupon/index.js +209 -0
- package/react/Coupon/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +6 -6
- package/react/EpilotIcon.js +226 -226
- package/react/EpilotIcon.js.map +1 -1
- package/react/Location/index.d.ts +4 -0
- package/react/Location/index.js +209 -0
- package/react/Location/index.js.map +1 -0
- package/react/LocationOn/index.js +51 -73
- package/react/LocationOn/index.js.map +1 -1
- package/react/ProductRecommendation/index.d.ts +4 -0
- package/react/ProductRecommendation/index.js +209 -0
- package/react/ProductRecommendation/index.js.map +1 -0
- package/react/Recommend/index.js +51 -73
- package/react/Recommend/index.js.map +1 -1
- package/react/Redeem/index.js +51 -73
- package/react/Redeem/index.js.map +1 -1
- package/react/index.d.ts +3 -3
- package/react/index.js +232 -232
- package/react/index.js.map +1 -1
- package/svg/Coupon/icon-fill.svg +1 -0
- package/svg/Coupon/icon.svg +1 -0
- package/svg/Coupon/index.d.ts +3 -0
- package/svg/Coupon/index.js +159 -0
- package/svg/Coupon/index.js.map +1 -0
- package/svg/Location/icon-fill.svg +1 -0
- package/svg/Location/icon.svg +1 -0
- package/svg/Location/index.d.ts +3 -0
- package/svg/Location/index.js +159 -0
- package/svg/Location/index.js.map +1 -0
- package/svg/LocationOn/index.js +47 -112
- package/svg/LocationOn/index.js.map +1 -1
- package/svg/ProductRecommendation/icon-fill.svg +1 -0
- package/svg/ProductRecommendation/icon.svg +1 -0
- package/svg/ProductRecommendation/index.d.ts +3 -0
- package/svg/ProductRecommendation/index.js +159 -0
- package/svg/ProductRecommendation/index.js.map +1 -0
- package/svg/Recommend/index.js +47 -112
- package/svg/Recommend/index.js.map +1 -1
- package/svg/Redeem/index.js +47 -112
- package/svg/Redeem/index.js.map +1 -1
- package/svg/index.d.ts +3 -3
- package/svg/index.js +168 -168
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +3 -3
- package/svg/svgIcon.js +162 -162
- package/svg/svgIcon.js.map +1 -1
package/svg/svgIcon.d.ts
CHANGED
|
@@ -238,9 +238,9 @@ export declare const svgMap: {
|
|
|
238
238
|
action_key: (opts?: IconProps) => string;
|
|
239
239
|
bar_chart: (opts?: IconProps) => string;
|
|
240
240
|
database: (opts?: IconProps) => string;
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
241
|
+
coupon: (opts?: IconProps) => string;
|
|
242
|
+
product_recommendation: (opts?: IconProps) => string;
|
|
243
|
+
location: (opts?: IconProps) => string;
|
|
244
244
|
};
|
|
245
245
|
export type IconSVGName = keyof typeof svgMap;
|
|
246
246
|
type Opts = IconProps & {
|