디자인에 따라 기본 Input 셋트를 미리 만들어 놓으면 이후 각 화면 별로 적용하기가 용이하다.부모 컴포넌트에서 사용) 원 Input Components Full Sourceimport React, { forwardRef } from "react";import styles from "./Input.module.scss";import classNames from "classnames";interface InputProps { type?: "text" | "password" | "email" | "number" | "url" | "tel" | "search"; name?: string; value?: string; placeholder?: string; disabled?: boolean; ..