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