mersocarlin / react-app-components

React components made easy!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Button should propagate custom class and other props

mersocarlin opened this issue · comments

<Button
  asButton
  className="customCssClass"
  primary
>
  Primary Custom css class
</Button>

Observed behaviour

<button class-"customCssClass">
  Primary Custom css class
</button>

Expected behaviour

<button class-"btn btn-primary customCssClass">
  Primary Custom css class
</button>