| 117 | } |
| 118 | |
| 119 | export interface SliderRef { |
| 120 | focus: () => void; |
| 121 | blur: () => void; |
| 122 | } |
| 123 | |
| 124 | const Slider = React.forwardRef<SliderRef, SliderProps<number | number[]>>((props, ref) => { |
| 125 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected