Semantic-UI-React: Wrong background color of a "basic" button in a group consisting of basic buttons

Bug Report

Create a button group of basic buttons. Make the last button have an icon. The icon will be rendered with a wrong background color:

image

Version

{
    "semantic-ui-css": "^2.4.1",
    "semantic-ui-react": "^2.0.3",
}

About this issue

  • Original URL
  • State: closed
  • Created 3 years ago
  • Comments: 21 (6 by maintainers)

Most upvoted comments

@ivangomes thanks for jumping in to try to help out here. Just a heads up, in your example, the button still has the icon prop on it. That adds a class name that removes horizontal padding on SUI icons, which is why there is no margin between the icon and the button text. Removing the prop will give the expected display.

https://codesandbox.io/s/basic-button-w-icon-wkwyp

<Button basic color="red">
    <Icon name="save" />
    Save
  </Button>

Closing again. No bug. This was a usage question for Stack Overflow.

It’s not a menu. It’s a button.

@meglio please use the bug reporting form and include a codepen/sandbox showing the code used to render these components. We include that to make it as easy as possible to show an example of what you are experiencing. Without it we can only guess how you are using the components. I am happy to take a look at this with you as soon as there is code to evaluate.

Closing but will reopen with a codepen example.