如何更改反应引导分割按钮的样式
我使用了反应引导分割按钮,如下所示
<ButtonToolbar>
<SplitButton bsStyle="primary" title="Right dropup"
dropup pullRight id="split-button-dropup-pull-right">
<MenuItem eventKey="1">Action</MenuItem>
<MenuItem eventKey="2">Another action</MenuItem>
<MenuItem eventKey="3">Something else
here</MenuItem>
<MenuItem divider />
<MenuItem eventKey="4">Separated link</MenuItem>
</SplitButton>
</ButtonToolbar>
);
我想在按钮上应用其他颜色和样式。 我尝试使用className但它只适用于按钮部分而不是箭头(插入符号)部分
那我怎么能这样做呢?