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.
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/react-magma-dom.cjs.development.js +1 -1
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -2352,7 +2352,7 @@ function buildPropsWithDefaultButtonStyles(props) {
|
|
|
2352
2352
|
function buildButtonBorderRadius(props) {
|
|
2353
2353
|
switch (props.shape) {
|
|
2354
2354
|
case 'round':
|
|
2355
|
-
return '100%';
|
|
2355
|
+
return props.iconOnly ? '100%' : '2rem';
|
|
2356
2356
|
case 'leftCap':
|
|
2357
2357
|
return props.theme.borderRadius + " 0 0 " + props.theme.borderRadius;
|
|
2358
2358
|
case 'rightCap':
|