From 71adfb10b207df1f35d4e5672f21c6ccb9c6f6bb Mon Sep 17 00:00:00 2001 From: Lucien Blunk-Lallet Date: Thu, 7 May 2020 21:34:15 +0200 Subject: [PATCH] feat: ability to specify borderWidth through RadioForm --- lib/SimpleRadioButton.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/SimpleRadioButton.js b/lib/SimpleRadioButton.js index a737044..6ccd602 100644 --- a/lib/SimpleRadioButton.js +++ b/lib/SimpleRadioButton.js @@ -64,6 +64,7 @@ export default class RadioForm extends React.Component { buttonColor={this.state.is_active_index === i ? this.props.selectedButtonColor : this.props.buttonColor} buttonSize={this.props.buttonSize} buttonOuterSize={this.props.buttonOuterSize} + borderWidth={this.props.borderWidth} labelHorizontal={this.props.labelHorizontal} labelColor={this.state.is_active_index === i ? this.props.selectedLabelColor : this.props.labelColor} labelStyle={this.props.labelStyle}