// ** 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 SwiperMultipleSlides = ({ direction }: { direction: Direction }) => { // ** Hook const [ref] = useKeenSlider({ rtl: direction === 'rtl', slides: { perView: 2 } }) return ( swiper 11 swiper 12 swiper 13 swiper 14 swiper 15 ) } export default SwiperMultipleSlides