Closed juanpmarengo closed 6 years ago
It's a bit of a hack, but you could do this:
Give the switch a className
<Switch
className="react-switch"
// Other props
/>
Then override the opacity-styling in css
.react-switch {
opacity: 1 !important;
}
Hope that helps!
It works! Thanks!
Expected behaviour: disabling the action without changing it's color to grey. Is there a way to achieve this? Thanks in advance.