Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit

Permalink
fix(password-input): switch hide and show default icon
Browse files Browse the repository at this point in the history
  • Loading branch information
marcjulian committed Feb 17, 2020
1 parent 60ac49e commit cf66fd8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class FivPasswordInput implements ControlValueAccessor {
@Input()
disabled = false;

@Input() hideIcon = 'eye-off';
@Input() hideIcon = 'eye';

@Input() lines?: 'full' | 'inset' | 'none';

Expand All @@ -33,7 +33,7 @@ export class FivPasswordInput implements ControlValueAccessor {

@Input() show: boolean;

@Input() showIcon = 'eye';
@Input() showIcon = 'eye-off';

private _passwordValue = '';
private onTouchedCallback: () => {};
Expand Down

0 comments on commit cf66fd8

Please sign in to comment.