diff --git a/ui/component/button/view.jsx b/ui/component/button/view.jsx index a114c755d..3165beaf8 100644 --- a/ui/component/button/view.jsx +++ b/ui/component/button/view.jsx @@ -91,34 +91,43 @@ const Button = forwardRef((props: Props, ref: any) => { const size = iconSize || (!label && !children) ? 18 : undefined; // Fall back to default const content = ( -
- {/* style={{ border: `1px solid white` }} */} -
- {icon && } -
- { -
- - {largestLabel || label} - {label && ( - //
+ + {icon && } + + {label && ( +
+
+ + {largestLabel || label}
{label}
- )} -
+ +
- } + )} + {children && children} {iconRight && }