import type { ReactElement } from 'react'; import React, { forwardRef } from 'react'; import ScrollableContentWrapper from '../../components/ScrollableContentWrapper'; const ScrollerWithCustomProps = forwardRef(function ScrollerWithCustomProps(props, ref: React.Ref) { return (
} renderTrackHorizontal={(props): ReactElement =>
} /> ); }); export default ScrollerWithCustomProps;