The buttons height are different between a Button
and a LoadingButton
Is this expected ? From the documentation it doesn’t look like it.
const App = () => {
return (
<Inline space='space.300'>
<Button
appearance='primary' onClick={() => {
}}
>Button</Button>
<LoadingButton
appearance='primary' onClick={() => {
}}
>Loading Button</LoadingButton>
</Inline>
)
}
Also side question : Is it possible to define a different button height ?
I gave it a try with wrapping the content in a Box with a xcss height but that didn’t work. It looks like it’s fixed.