-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: 커피챗 입력 progress 박스 구현 #1595
Conversation
|
🚀 프리뷰 배포 확인하기 🚀 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다~!!
import { IconCheck } from '@sopt-makers/icons'; | ||
|
||
interface ProgressBoxProps { | ||
uploadType: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p2: uploadTyped이 오픈이랑 수정밖에 없으면 리터럴 타입으로 제한하는 게 좋아보여요!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
헉 정말 좋습니다!!!
{isInprogress ? ( | ||
<IconCheckCircle isInprogress> | ||
<IconCheck /> | ||
</IconCheckCircle> | ||
) : ( | ||
<IconCheckCircle isInprogress={isInprogress} /> | ||
)} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p2: 이 부분은 아래처럼 간소화하는 게 어떨까요?
{isInprogress ? ( | |
<IconCheckCircle isInprogress> | |
<IconCheck /> | |
</IconCheckCircle> | |
) : ( | |
<IconCheckCircle isInprogress={isInprogress} /> | |
)} | |
<IconCheckCircle isInProgress={isInProgress}> | |
{isInProgress && <IconCheck />} | |
</IconCheckCircle> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
훨씬 간결하네용ㅎㅎ감사합니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다 😎
🤫 쉿, 나한테만 말해줘요. 이슈넘버
🧐 어떤 것을 변경했어요~?
🤔 그렇다면, 어떻게 구현했어요~?
❤️🔥 당신이 생각하는 PR포인트, 내겐 매력포인트.
📸 스크린샷, 없으면 이것 참,, 섭섭한데요?