@epilot360/icons 1.17.8 → 1.17.10
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 +10 -3
- package/index.js +321 -31
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/AccountCircleOff/index.d.ts +4 -0
- package/react/AccountCircleOff/index.js +209 -0
- package/react/AccountCircleOff/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +228 -6
- package/react/EpilotIcon.js.map +1 -1
- package/react/Target/index.d.ts +4 -0
- package/react/Target/index.js +209 -0
- package/react/Target/index.js.map +1 -0
- package/react/index.d.ts +2 -0
- package/react/index.js +243 -15
- package/react/index.js.map +1 -1
- package/svg/AccountCircleOff/icon-fill.svg +1 -0
- package/svg/AccountCircleOff/icon.svg +1 -0
- package/svg/AccountCircleOff/index.d.ts +3 -0
- package/svg/AccountCircleOff/index.js +159 -0
- package/svg/AccountCircleOff/index.js.map +1 -0
- package/svg/Target/icon-fill.svg +1 -0
- package/svg/Target/icon.svg +1 -0
- package/svg/Target/index.d.ts +3 -0
- package/svg/Target/index.js +159 -0
- package/svg/Target/index.js.map +1 -0
- package/svg/index.d.ts +2 -0
- package/svg/index.js +177 -15
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +2 -0
- package/svg/svgIcon.js +162 -6
- package/svg/svgIcon.js.map +1 -1
package/icons.config.yaml
CHANGED
|
@@ -326,8 +326,7 @@ Automation:
|
|
|
326
326
|
svg_import: "@material-symbols/svg-600/rounded/bolt.svg"
|
|
327
327
|
AutomationCircle:
|
|
328
328
|
name: automation_circle
|
|
329
|
-
aliases:
|
|
330
|
-
["automation_circle", "automation_action2", "automation_trigger2", "offline_bolt"]
|
|
329
|
+
aliases: ["automation_circle", "automation_action2", "automation_trigger2", "offline_bolt"]
|
|
331
330
|
svg_import: "@material-symbols/svg-600/rounded/offline_bolt.svg"
|
|
332
331
|
Journey:
|
|
333
332
|
name: journey
|
|
@@ -753,6 +752,10 @@ LinkOff:
|
|
|
753
752
|
name: link_off
|
|
754
753
|
aliases: ["link_off"]
|
|
755
754
|
svg_import: "@material-symbols/svg-600/rounded/link_off.svg"
|
|
755
|
+
AccountCircleOff:
|
|
756
|
+
name: account_circle_off
|
|
757
|
+
aliases: ["account_circle_off"]
|
|
758
|
+
svg_import: "@material-symbols/svg-600/rounded/account_circle_off.svg"
|
|
756
759
|
Send:
|
|
757
760
|
name: send
|
|
758
761
|
aliases: ["send"]
|
|
@@ -764,4 +767,8 @@ Undo:
|
|
|
764
767
|
ChipExtraction:
|
|
765
768
|
name: chip_extraction
|
|
766
769
|
aliases: ["chip_extraction"]
|
|
767
|
-
svg_import: "@material-symbols/svg-600/rounded/chip_extraction.svg"
|
|
770
|
+
svg_import: "@material-symbols/svg-600/rounded/chip_extraction.svg"
|
|
771
|
+
Target:
|
|
772
|
+
name: target
|
|
773
|
+
aliases: ["target"]
|
|
774
|
+
svg_import: "@material-symbols/svg-600/rounded/target.svg"
|