Skip to content

Commit

Permalink
UI: #5 로직에 따른 아이콘 등록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoonyesol committed Jul 3, 2024
1 parent fb66247 commit 1616be5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/ValidationInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ export default function ValidationInput({
{type === 'password' && (
<div className="absolute right-0 flex items-center pr-8 text-gray-400">
{showPassword ? (
<RiEyeOffFill className="h-15 w-15 cursor-pointer" onClick={handleTogglePassword} />
) : (
<RiEyeFill className="h-15 w-15 cursor-pointer" onClick={handleTogglePassword} />
) : (
<RiEyeOffFill className="h-15 w-15 cursor-pointer" onClick={handleTogglePassword} />
)}
</div>
)}
Expand Down

0 comments on commit 1616be5

Please sign in to comment.