v1.1.0
Features
- add
GUI_ICONS_CONFIG
injection token to customize icons
export const appConfig: ApplicationConfig = {
providers: [
{
provide: GUI_ICONS_CONFIG,
useValue: {
horizontal: `<svg>...</svg>`,
vertical: `<svg>...</svg>`,
add: `<svg>...</svg>`,
delete: `<svg>...</svg>`,
copy: `<svg>...</svg>`,
link: `<svg>...</svg>`,
clear: `<svg>...</svg>`,
file: `<svg>...</svg>`,
upload: `<svg>...</svg>`,
} as GuiIconsConfig
}
]
}