Skip to content

Commit 179d49b

Browse files
committed
Fix Button size in ButtonCell
1 parent 0963317 commit 179d49b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Table/cells.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function createButtonCell(Button: FunctionComponent<ButtonProps>) {
1111
}: CellProps<{}, Omit<ButtonProps, "size">>) {
1212
return (
1313
<Inline space={0} align={align} alignY="center">
14-
<Button {...buttonProps} size="small" />
14+
<Button {...buttonProps} size="medium" />
1515
</Inline>
1616
);
1717
};
@@ -24,7 +24,7 @@ export function createButtonLinkCell(ButtonLink: FunctionComponent<ButtonLinkPro
2424
}: CellProps<{}, Omit<ButtonLinkProps, "size">>) {
2525
return (
2626
<Inline space={0} align={align}>
27-
<ButtonLink {...buttonProps} size="small" />
27+
<ButtonLink {...buttonProps} size="medium" />
2828
</Inline>
2929
);
3030
};

0 commit comments

Comments
 (0)