| 5 | import Switch from '@mui/material/Switch'; |
| 6 | |
| 7 | interface MUIComponent extends SliderProps { |
| 8 | success?: boolean; |
| 9 | } |
| 10 | |
| 11 | const StyledSlider = styled(Slider, { |
| 12 | shouldForwardProp: (prop) => prop !== 'success', |
nothing calls this directly
no outgoing calls
no test coverage detected