I need to load my icons from a package without saving them to assets/icons. We get our icons from a shared component library which has a package containing all our system icons. These icons should be able to change without our teams intervention. I see that you have the path hardcoded in getIcon(), but would it be possible to add a configuration option for where to look for svg files?
// some config file
{
path: '@my-components/icons/svg'
}
I need to load my icons from a package without saving them to
assets/icons. We get our icons from a shared component library which has a package containing all our system icons. These icons should be able to change without our teams intervention. I see that you have the path hardcoded ingetIcon(), but would it be possible to add a configuration option for where to look for svg files?