'use client'; import { Box } from '@chakra-ui/react'; export const renderTrack = ({ style, ...props }: any) => { const trackStyle = { position: 'absolute', maxWidth: '100%', transition: 'opacity 200ms ease 0s', opacity: 0, background: 'transparent', bottom: 2, top: 2, borderRadius: 3, right: 0, }; return
; }; export const renderThumb = ({ style, ...props }: any) => { const thumbStyle = { borderRadius: 15, background: 'rgba(222, 222, 222, .1)', }; return
; }; export const renderView = ({ style, ...props }: any) => { const viewStyle = { width: '100%', marginBottom: -22, }; return ( ); };