Capítulo 114 de 147
Learn how to register icons globally using provideLucideIcons, including custom and legacy icons.
UserRoundX → user-round-xburger → burgerimport { ApplicationConfig } from '@angular/core';
import { provideLucideIcons, LucideSquareCheck, LucideCircleAlert } from '@lucide/angular';
export const appConfig: ApplicationConfig = {
providers: [
provideLucideIcons(
LucideSquareCheck,
LucideCircleAlert,
),
],
};
UserRoundX → user-round-xburger → burger