Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Input 공통 컴포넌트 구현 #37

Merged
merged 1 commit into from
Oct 30, 2023
Merged

Input 공통 컴포넌트 구현 #37

merged 1 commit into from
Oct 30, 2023

Conversation

1g2g
Copy link
Member

@1g2g 1g2g commented Oct 29, 2023

⚙️ PR 타입

  • Feature
  • Hotfix

✨ 기능 설명 or 🚨 문제 상황

Input 공통 컴포넌트를 구현했습니다

👨‍💻 구현 내용 or 👍 해결 내용

image
예시 코드
<Input />
<Input
  border="1px solid black"
  borderRadius="50px"
  onChange={(e) => {
    console.log(e.target.value);
  }}
  onKeyDown={(e) => {
    if (e.key === 'Enter') {
      console.log('hi');
    }
  }}
/>
<Input
  isAutofocus={true} // 입력 필드에 자동 포커스를 설정할 경우 true로 설정 (기본값: false)
  height="40px" // 입력 필드의 높이를 설정 (기본값: '30px')
  fontSize="18px" // 입력 필드의 글꼴 크기 설정 (기본값: theme.FONT_SIZE.MD)
  backgroundColor="lightblue" // 입력 필드의 배경색 설정 (기본값: 'white')
  border="1px solid gray" // 입력 필드의 테두리 설정 (기본값: 'none')
  borderRadius="4px" // 입력 필드의 테두리 반경 설정 (기본값: '0%')
  padding="5px 10px" // 입력 필드의 안쪽 여백 설정 (기본값: '0px 10px')
/>

🎯 PR 포인트

📝 참고 사항

❓ 궁금한 점

  • 부족한 부분이 있으면 가감없이 알려주세요!

@1g2g 1g2g added the 기능 코드의 기능이 추가되거나 바뀌었습니다. label Oct 29, 2023
@1g2g 1g2g added this to the 1차 스프린트 milestone Oct 29, 2023
@1g2g 1g2g self-assigned this Oct 29, 2023
@1g2g 1g2g linked an issue Oct 29, 2023 that may be closed by this pull request
@1eecan
Copy link
Contributor

1eecan commented Oct 29, 2023

🎉 @dlwl98 님 랜덤 리뷰어로 당첨되셨습니다! 리뷰를 부탁드립니다. 🙏

@1eecan 1eecan requested a review from dlwl98 October 29, 2023 11:52
Copy link
Member

@dlwl98 dlwl98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@1g2g 1g2g merged commit e1f55f4 into dev Oct 30, 2023
@1g2g 1g2g deleted the feat/#34-input-component branch October 30, 2023 07:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
기능 코드의 기능이 추가되거나 바뀌었습니다.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Input 공통 컴포넌트 구현
3 participants