import React from 'react'; import Box from '../Box'; import { SliderContext } from './Context'; import type { ISliderProps, ISliderContextProps } from './types'; const SliderTrack = ({ children, ...props }: ISliderProps) => { const { sliderSize, trackColor, orientation, }: ISliderContextProps = React.useContext(SliderContext); return ( {children} ); }; export default SliderTrack;