Skip to content

Commit

Permalink
refactor: TextInput type=password 일 때 아이콘 반대로 적용된거 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
musma-sujan7 committed Dec 22, 2023
1 parent 0a52cf0 commit 9e5b1be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ export const TextInput = forwardRef<HTMLInputElement, TextInputProps>(
}}
>
{inputType === 'text' ? (
<OutlineEyeCloseIcon {...theme.inputSize.iconSize[size]} color="currentColor" />
) : (
<OutlineEyeIcon {...theme.inputSize.iconSize[size]} color="currentColor" />
) : (
<OutlineEyeCloseIcon {...theme.inputSize.iconSize[size]} color="currentColor" />
)}
</IconAdornment>
)}
Expand Down

0 comments on commit 9e5b1be

Please sign in to comment.