We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TextField has 3 different margin property enum available: normal, dense and none; while Input only dense and none.
TextField
margin
normal
dense
none
Input
Input component should have normal, dense and none margins (adding normal)
Input component only has dense and none margins.
I think that, being TextField and other components an implementation of Input component, both should have the same margin property available values.
The text was updated successfully, but these errors were encountered:
@urkopineda The margin property you are looking for is in the FormControl component. Not the Input.
FormControl
-<FormControl className={classes.formControl}> +<FormControl className={classes.formControl} margin="normal">
Sorry, something went wrong.
No branches or pull requests
TextField
has 3 differentmargin
property enum available:normal
,dense
andnone
; whileInput
onlydense
andnone
.Expected Behavior
Input
component should havenormal
,dense
andnone
margins (addingnormal
)Current Behavior
Input
component only hasdense
andnone
margins.Steps to Reproduce (for bugs)
Context
I think that, being
TextField
and other components an implementation ofInput
component, both should have the samemargin
property available values.Your Environment
The text was updated successfully, but these errors were encountered: