Skip to content

Commit

Permalink
fix(select): default hlm-select-option icon size (#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfraso authored Feb 10, 2025
1 parent 7740096 commit e16c3c0
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 @@ -23,7 +23,7 @@ import type { ClassValue } from 'clsx';
[attr.data-state]="this._brnSelectOption.checkedState()"
>
@if (this._brnSelectOption.selected()) {
<ng-icon hlm aria-hidden="true" name="lucideCheck" />
<ng-icon hlm size="sm" aria-hidden="true" name="lucideCheck" />
}
</span>
`,
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/select/helm/src/lib/hlm-select-option.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import type { ClassValue } from 'clsx';
[attr.data-state]="this._brnSelectOption.checkedState()"
>
@if (this._brnSelectOption.selected()) {
<ng-icon hlm aria-hidden="true" name="lucideCheck" />
<ng-icon hlm size="sm" aria-hidden="true" name="lucideCheck" />
}
</span>
`,
Expand Down

0 comments on commit e16c3c0

Please sign in to comment.