<LinearProgress
className="top"
variant="determinate"
value={(this.state.currentTime * 100) / this.state.duration}
/>
<span style={{width: your width}}>
<Slider style={{width: videoRef.current?.clientWidth ? videoRef.current?.clientWidth-176.5 : 0}}
min={0}
max={duration}
value={currentTime}
onChange={handleProgressChange}
aria-labelledby="continuous-slider"
/>
</span>
const handleProgressChange = (e: any, value: any) => {
videoRef.current!.currentTime = value;
e.preventDefault();
}