I am using Dropdown button from react-bootstrap. I want to apply class on button element inside DropdownButton. It is applying to outer div if I pass className to DropdownButton. Instead it should get applied to button element. Below is the code I am using
**<DropdownButton
className="btn-group"
title="Assign"
noCaret
id="Assign"
show={this.state.popupApplyVisible}
onToggle={() =>
this.setState({
popupApplyVisible: !this.state.popupApplyVisible,
})
}
>**