Skip to content

Commit

Permalink
버튼 props 수정 (#577)
Browse files Browse the repository at this point in the history
fix: 버튼 props 수정
  • Loading branch information
gyeongza authored Sep 20, 2023
1 parent a41699b commit 09b166f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/components/common/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const Button = ({
ariaLabel,
dataType,
disabled,
...buttonProps
width,
height,
}: Props) => {
return (
<S.ButtonWrapper>
Expand All @@ -34,7 +35,8 @@ const Button = ({
$fontWeight={fontWeight}
onClick={onClick}
aria-label={ariaLabel}
{...buttonProps}
$width={width}
$height={height}
>
{children}
</S.Button>
Expand Down

0 comments on commit 09b166f

Please sign in to comment.