@epilot360/icons 1.17.39 → 1.17.40
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 -2
- package/index.js +1636 -1346
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/react/EmailTemplate/index.d.ts +4 -0
- package/react/EmailTemplate/index.js +209 -0
- package/react/EmailTemplate/index.js.map +1 -0
- package/react/EpilotIcon.d.ts +4 -0
- package/react/EpilotIcon.js +556 -334
- package/react/EpilotIcon.js.map +1 -1
- package/react/Swap/index.d.ts +4 -0
- package/react/Swap/index.js +209 -0
- package/react/Swap/index.js.map +1 -0
- package/react/index.d.ts +2 -0
- package/react/index.js +899 -671
- package/react/index.js.map +1 -1
- package/svg/EmailTemplate/icon-fill.svg +1 -0
- package/svg/EmailTemplate/icon.svg +1 -0
- package/svg/EmailTemplate/index.d.ts +3 -0
- package/svg/EmailTemplate/index.js +159 -0
- package/svg/EmailTemplate/index.js.map +1 -0
- package/svg/Swap/icon-fill.svg +1 -0
- package/svg/Swap/icon.svg +1 -0
- package/svg/Swap/index.d.ts +3 -0
- package/svg/Swap/index.js +159 -0
- package/svg/Swap/index.js.map +1 -0
- package/svg/index.d.ts +2 -0
- package/svg/index.js +833 -671
- package/svg/index.js.map +1 -1
- package/svg/svgIcon.d.ts +2 -0
- package/svg/svgIcon.js +490 -334
- 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
|
@@ -261,8 +261,12 @@ MoveToInbox:
|
|
|
261
261
|
svg_import: "@material-symbols/svg-600/rounded/move_to_inbox.svg"
|
|
262
262
|
File:
|
|
263
263
|
name: file
|
|
264
|
-
aliases: ["file", "entity_file", "folder", "directory"]
|
|
264
|
+
aliases: ["file", "entity_file", "folder", "directory", "email_template"]
|
|
265
265
|
svg_import: "@material-symbols/svg-600/rounded/folder.svg"
|
|
266
|
+
EmailTemplate:
|
|
267
|
+
name: email_template
|
|
268
|
+
aliases: ["email_template", "variable"]
|
|
269
|
+
svg_import: "@material-symbols/svg-600/rounded/data_object.svg"
|
|
266
270
|
FileShared:
|
|
267
271
|
name: file_shared
|
|
268
272
|
aliases: ["file_shared", "folder_shared", "file", "entity_file"]
|
|
@@ -273,7 +277,7 @@ Note:
|
|
|
273
277
|
svg_import: "@material-symbols/svg-600/rounded/sticky_note_2.svg"
|
|
274
278
|
Document:
|
|
275
279
|
name: document
|
|
276
|
-
aliases: ["document", "
|
|
280
|
+
aliases: ["document", "notification_template"]
|
|
277
281
|
svg_import: "@material-symbols/svg-600/rounded/draft.svg"
|
|
278
282
|
Templates:
|
|
279
283
|
name: templates
|
|
@@ -927,3 +931,7 @@ DoNotDisturbOn:
|
|
|
927
931
|
name: do_not_disturb_on
|
|
928
932
|
aliases: ["do_not_disturb_on"]
|
|
929
933
|
svg_import: "@material-symbols/svg-600/rounded/do_not_disturb_on.svg"
|
|
934
|
+
Swap:
|
|
935
|
+
name: swap
|
|
936
|
+
aliases: ["swap", "sync_alt", "switch", "exchange"]
|
|
937
|
+
svg_import: "@material-symbols/svg-600/rounded/sync_alt.svg"
|