Skip to content

Commit

Permalink
(#0) 인풋 버튼 타입 누락
Browse files Browse the repository at this point in the history
  • Loading branch information
baegofda committed Dec 3, 2023
1 parent 75527fa commit ead1270
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/core/components/Input/InputPassword/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const InputPassword = forwardRef((
}
endComponent = {
<button
type = "button"
className = "w-6 h-6"
onClick = {onToggleShowPassword}
aria-label = {showPassword ? "비밀번호 숨기기" : "비밀번호 보이기"}
Expand Down
1 change: 1 addition & 0 deletions src/core/components/Input/InputTextField/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const InputTextField = forwardRef((
}
endComponent = {
<button
type = "button"
className = {clsx("w-7 h-7", inputValue ? "visible" : "invisible")}
onClick = {onResetInputValue}
aria-label = "초기화"
Expand Down

0 comments on commit ead1270

Please sign in to comment.