Capítulo 106 de 147
Learn how to adjust the size of icons in your Angular application using the size input or by using CSS.
size inputimport { Component, ViewEncapsulation } from "@angular/core";
import { LucideLandmark } from "@lucide/angular";
@Component({
selector: 'app',
imports: [LucideLandmark],
template: `<svg lucideLandmark [size]="64" />`,
styleUrls: ['./app.component.css'],
encapsulation: ViewEncapsulation.None,
})
export class App {
}
size input