I need to apply some styling to the label of a Redux Form Field. The Redux Form API doesn't mention any way to style the label. The classes.formField class gets applied to the field itself but not the label.
This may also be a question about forcing inheritance because the label, in this case, is not inheriting the parent's styles.
import { Field } from 'redux-form' import TextField from 'redux-form-material-ui/lib/TextField' <Field className={classes.formField} component={TextField} label={'style me!!'} fullWidth name="answer" required type="text" validate={[required]} />