Capítulo 107 de 147
Learn how to adjust the stroke width of icons in your Angular application using the strokeWidth input or adjust the strokeWidth appearance using the absoluteStrokeWidth input.
strokeWidth inputimport { Component, ViewEncapsulation } from "@angular/core";
import { LucideFolderLock } from "@lucide/angular";
@Component({
selector: 'app',
imports: [LucideFolderLock],
template: `<svg lucideFolderLock [strokeWidth]="1" />`,
styleUrls: ['./app.component.css'],
encapsulation: ViewEncapsulation.None,
})
export class App {
}
strokeWidth input