Skip to content

Commit

Permalink
Declare svgAriaLabel a string
Browse files Browse the repository at this point in the history
  • Loading branch information
czeckd committed Feb 25, 2021
1 parent 0dea79a commit 474244c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/angular-svg-icon/src/lib/svg-icon.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class SvgIconComponent implements OnInit, OnDestroy, OnChanges, DoCheck {
// tslint:disable-next-line:no-input-rename
@Input('class') klass: any;
@Input() viewBox: string;
@Input() svgAriaLabel;
@Input() svgAriaLabel: string;

// Adapted from ngStyle (see: angular/packages/common/src/directives/ng_style.ts)
@Input()
Expand Down

0 comments on commit 474244c

Please sign in to comment.