We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9b7803 commit 25c1e38Copy full SHA for 25c1e38
1 file changed
src/Label.js
@@ -23,7 +23,6 @@ const propTypes = {
23
children: PropTypes.node,
24
hidden: PropTypes.bool,
25
check: PropTypes.bool,
26
- disabled: PropTypes.bool,
27
size: PropTypes.string,
28
for: PropTypes.string,
29
tag: PropTypes.string,
@@ -60,7 +59,6 @@ const Label = (props) => {
60
59
widths,
61
tag: Tag,
62
check,
63
- disabled,
64
size,
65
for: htmlFor,
66
...attributes
@@ -100,7 +98,6 @@ const Label = (props) => {
100
98
className,
101
99
hidden ? 'sr-only' : false,
102
check ? 'form-check-label' : false,
103
- check && disabled ? 'disabled' : false,
104
size ? `col-form-label-${size}` : false,
105
colClasses,
106
colClasses.length ? 'col-form-label' : false,
0 commit comments