We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 718ae90 + 179d49b commit 7d085b1Copy full SHA for 7d085b1
src/Table/cells.tsx
@@ -11,7 +11,7 @@ export function createButtonCell(Button: FunctionComponent<ButtonProps>) {
11
}: CellProps<{}, Omit<ButtonProps, "size">>) {
12
return (
13
<Inline space={0} align={align} alignY="center">
14
- <Button {...buttonProps} size="small" />
+ <Button {...buttonProps} size="medium" />
15
</Inline>
16
);
17
};
@@ -24,7 +24,7 @@ export function createButtonLinkCell(ButtonLink: FunctionComponent<ButtonLinkPro
24
}: CellProps<{}, Omit<ButtonLinkProps, "size">>) {
25
26
<Inline space={0} align={align}>
27
- <ButtonLink {...buttonProps} size="small" />
+ <ButtonLink {...buttonProps} size="medium" />
28
29
30
0 commit comments