@epilot360/icons 1.17.44 → 1.17.46
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 +13 -9
- package/index.js +473 -328
- 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 +8 -6
- package/react/EpilotIcon.js +337 -226
- package/react/EpilotIcon.js.map +1 -1
- package/react/Labs/index.d.ts +4 -0
- package/react/Labs/index.js +209 -0
- package/react/Labs/index.js.map +1 -0
- 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 +4 -3
- package/react/index.js +349 -235
- 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/Labs/icon-fill.svg +1 -0
- package/svg/Labs/icon.svg +1 -0
- package/svg/Labs/index.d.ts +3 -0
- package/svg/Labs/index.js +159 -0
- package/svg/Labs/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 +4 -3
- package/svg/index.js +252 -171
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +4 -3
- package/svg/svgIcon.js +240 -162
- package/svg/svgIcon.js.map +1 -1
- package/types.d.ts +0 -0
- package/types.js +0 -0
- package/types.js.map +0 -0
package/icons.config.yaml
CHANGED
|
@@ -953,15 +953,19 @@ Database:
|
|
|
953
953
|
name: database
|
|
954
954
|
aliases: ["database"]
|
|
955
955
|
svg_import: "@material-symbols/svg-600/outlined/database.svg"
|
|
956
|
-
|
|
957
|
-
name:
|
|
958
|
-
aliases: ["
|
|
956
|
+
Coupon:
|
|
957
|
+
name: coupon
|
|
958
|
+
aliases: ["coupon", "coupons", "redeem", "promo", "voucher"]
|
|
959
959
|
svg_import: "@material-symbols/svg-600/rounded/redeem.svg"
|
|
960
|
-
|
|
961
|
-
name:
|
|
962
|
-
aliases: ["
|
|
960
|
+
ProductRecommendation:
|
|
961
|
+
name: product_recommendation
|
|
962
|
+
aliases: ["product_recommendation", "recommend", "suggestion"]
|
|
963
963
|
svg_import: "@material-symbols/svg-600/rounded/recommend.svg"
|
|
964
|
-
|
|
965
|
-
name:
|
|
966
|
-
aliases: ["
|
|
964
|
+
Location:
|
|
965
|
+
name: location
|
|
966
|
+
aliases: ["location", "location_on", "pin", "map_pin", "place"]
|
|
967
967
|
svg_import: "@material-symbols/svg-600/rounded/location_on.svg"
|
|
968
|
+
Labs:
|
|
969
|
+
name: labs
|
|
970
|
+
aliases: ["labs", "test", "experiment", "science", "flask"]
|
|
971
|
+
svg_import: "@material-symbols/svg-600/rounded/labs.svg"
|