Skip to content

Commit

Permalink
UI: #69 링크 컴포넌트 버튼 내부 아이콘 크기 조절
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoonyesol committed Aug 22, 2024
1 parent 87da504 commit f8265b4
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/user/auth-form/LinkContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,10 @@ export default function LinkContainer({ initialLinks }: LinkContainerProps) {
<button
type="button"
onClick={() => handleRemoveLink(linkItem)}
className="flex size-18 items-center justify-center rounded-lg bg-sub px-8"
className="flex size-18 items-center justify-center rounded-lg bg-sub"
aria-label="삭제"
>
{/* TODO: 버튼 내부 아이콘 사이즈 적절히 조절할 것 */}
<FaMinus />
<FaMinus className="size-8" />
</button>
</div>
))}
Expand All @@ -84,11 +83,10 @@ export default function LinkContainer({ initialLinks }: LinkContainerProps) {
<button
type="button"
onClick={() => handleAddLink(link)}
className="flex size-18 items-center justify-center rounded-lg bg-sub px-8"
className="flex size-18 items-center justify-center rounded-lg bg-sub"
aria-label="추가"
>
{/* TODO: 버튼 내부 아이콘 사이즈 적절히 조절할 것 */}
<FaPlus />
<FaPlus className="size-8" />
</button>
</label>
</div>
Expand Down

0 comments on commit f8265b4

Please sign in to comment.