UIKIT - Button & LoadingButton

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.

When I use that code, my buttons are the same height. Maybe depends on the context. You can make buttons smaller by setting spacing to compact.

in UIKIT2 ? (@forge/react 10)

It’s called UI Kit now. The old version is UI Kit 1 and the new one is UI Kit. It is rather confusing. But yes, I was using @forge/react 10.

Can you give it a shot on a confluence page? I guess you tried on a jira module?

I tried it in a Confluence macro or custom macro config.

Not sure why it’s still wrong on my end.
Debugging it with an Atlassian through a support request.
Will keep posted.