From 676af788195a340d215d9091a9a4fb6417bc6637 Mon Sep 17 00:00:00 2001 From: leejin_rho Date: Wed, 3 Jul 2024 16:50:45 +0900 Subject: [PATCH] =?UTF-8?q?#16=20feat:=20authInput=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/auth/AuthInput.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/auth/AuthInput.tsx b/components/auth/AuthInput.tsx index caafa8d..95cbe99 100644 --- a/components/auth/AuthInput.tsx +++ b/components/auth/AuthInput.tsx @@ -3,8 +3,7 @@ import { ChangeEvent, HTMLInputTypeAttribute, forwardRef } from "react"; export interface TextInputProps { className?: string; value: string; - setValue: React.Dispatch>; - isError: boolean; + isError?: boolean; errorText?: string; placeholder?: string; type?: HTMLInputTypeAttribute;