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
false
large
When pass true or false as a boolean for the large prop this warning is thrown:
true
It's interesting because in the example that warning is missing.
<Checkbox checked={this.state.checked} large={true} onChange={() => { this.setState({ checked: !this.state.checked }) }} /> // or large={false} // or <Checkbox ... large .../>
If you change it to string (like "true") the warning disappears, but the size of the checkbox isn't changing...
"true"
The text was updated successfully, but these errors were encountered:
Is it related to prop types possibly?
Sorry, something went wrong.
No branches or pull requests
What's the problem?
When pass
true
orfalse
as a boolean for thelarge
prop this warning is thrown:It's interesting because in the example that warning is missing.
Example to reproduce the problem
If you change it to string (like
"true"
) the warning disappears, but the size of the checkbox isn't changing...The text was updated successfully, but these errors were encountered: