Skip to content

Commit

Permalink
fix(angular): icon size property missing in wrapper generation (#1124)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielleroux committed Feb 27, 2024
1 parent a15c619 commit 9819736
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/angular/src/ix-icon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ export declare interface IxIcon extends Components.IxIcon {}

@ProxyCmp({
defineCustomElementFn: undefined,
inputs: ['color', 'name'],
inputs: ['color', 'name', 'size'],
})
@Component({
selector: 'ix-icon',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
inputs: ['color', 'name'],
inputs: ['color', 'name', 'size'],
})
export class IxIcon {
protected el: HTMLElement;
Expand Down

0 comments on commit 9819736

Please sign in to comment.