Design Component
Input

Input

Input 컴포넌트는 사용자로부터 데이터를 입력받기 위한 요소입니다.
웹 페이지나 애플리케이션에서 텍스트, 비밀번호, 이메일 주소 등의 정보를 입력받기 위해 주로 사용됩니다.



Default

Hello
<Input type="text" /* input type */ placeholder="이메일주소" />


Label

Hello
<Input
  type="text" /* input type */
  placeholder="이메일 주소" /* placeholder에 들어갈 Text */
  label="이메일" /* label에 들어갈 Text */
  labelColor="blue" /* label 색상 */
/>


Text

Hello
<Input
  type="text" /* input type */
  placeholder="이메일 주소" /* placeholder에 들어갈 Text */
  label="이메일" /* Label에 들어갈 Text */
  labelColor="blue" /* label 색상 */
  text="이메일 주소를 입력하세요" /* BottomText에 들어갈 Text */
  textColor="gray" /* BottomText에 들어갈 색상 */
/>