import Carousel from './Carousel';
import {ICarouselProps} from './types';

const AutoCarousel = <T,>({...otherProps}: ICarouselProps<T>): JSX.Element => {
  return (
    <Carousel
      showsHorizontalScrollIndicator={false}
      isScrolling={true}
      {...otherProps}
    />
  );
};

export default AutoCarousel;
