Skip to content

Commit

Permalink
fix default size
Browse files Browse the repository at this point in the history
  • Loading branch information
aberonni authored and PeterSmallenbroek committed Nov 5, 2024
1 parent 7c0fad8 commit dd81f3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ng-template pTemplate>
<span class="inline-flex items-center gap-2">
@if (icon()) {
<span [class]="icon()"></span>
<span [class]="'p-button-icon ' + icon()"></span>
}
<span class="p-button-label">{{ label() }}</span>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class ButtonMenuComponent {
outlined = input<boolean>(false);
plain = input<boolean>(false);
text = input<boolean>(false);
size = input<'large' | 'small'>('large');
size = input<'large' | 'small'>();

menuOpen = model(false);
}

0 comments on commit dd81f3d

Please sign in to comment.