diff --git a/src/components/common/Input/Input.tsx b/src/components/common/Input/Input.tsx index 5b54cb36..f2361548 100644 --- a/src/components/common/Input/Input.tsx +++ b/src/components/common/Input/Input.tsx @@ -1,6 +1,6 @@ import { cls } from '@/utils' -interface Input { +export interface InputProps { label?: string type?: string placeholder?: string @@ -25,7 +25,7 @@ const Input = ({ multiLine, onbuttonClick, ...rest -}: Input) => { +}: InputProps) => { return (
{label && (