reactstrap-formik
reactstrap-formik copied to clipboard
Allow classNames for <FormGroup> and <label>
Please allow to set classes for <FormGroup> and <label>. E. g:
<Field classNameFormGroup="class-form-group" classNameLabel="class-for-label" component={ReactstrapFormikInput} />
Currently if we can set classes className="input-class", it applies only to <input>.
Hey @CatVas , if you check inspector, you'll notice that both FormGroup and Label has classNames, so you can simply overwrite them, sth like below in sass2.0 :
.form-group {
.label-color {
}
}