// ** MUI Imports import Box from '@mui/material/Box' import { Direction } from '@mui/material' import Image from 'next/image' // ** Third Party Components import { useKeenSlider } from 'keen-slider/react' const SwiperLoop = ({ direction }: { direction: Direction }) => { // ** Hook const [ref] = useKeenSlider({ loop: true, rtl: direction === 'rtl' }) return ( swiper 7 swiper 8 swiper 9 swiper 10 ) } export default SwiperLoop