Icon workflow
Implement and consume icons without sacrificing performance or scalability
Last updated
Implement and consume icons without sacrificing performance or scalability
Last updated
Icons can be added and managed easily within their own files.
Icons: libs\constants\src\lib\icons
Create
a new file for the new icon.
Example: icon-bitcoin.constant.ts
Update
the file according with the icon information.
Note: the property that controls the icon's color must use the value currentColor
to enable styling through the icon component.
Update
the index.ts
file to export the new icon.
Icons are registered in the feature module that displays the icon. This enables the best tree-shaking and ensures the highest application performance.
In the feature module component, register the icon:
Import
the IconsModule
in the feature module.
Register
the icon for use in the component.
Once an icon is registered it can be used and configured in the template.
Icon customizations and configuration requirements can be viewed from its source code.
Reference: libs\features\icons\src\lib\icons.component.ts