react-magma-dom 4.10.0-next.15 → 4.10.0-next.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1317,7 +1317,7 @@ function buildPropsWithDefaultButtonStyles(props) {
1317
1317
  function buildButtonBorderRadius(props) {
1318
1318
  switch (props.shape) {
1319
1319
  case 'round':
1320
- return '100%';
1320
+ return props.iconOnly ? '100%' : '2rem';
1321
1321
  case 'leftCap':
1322
1322
  return props.theme.borderRadius + " 0 0 " + props.theme.borderRadius;
1323
1323
  case 'rightCap':