Skip to content

Commit 7d085b1

Browse files
authored
Merge pull request #74 from buildo/fix-button-size-in-button-cell
Fix Button size in ButtonCell
2 parents 718ae90 + 179d49b commit 7d085b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: 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)