// ** 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 SwiperCentered = ({ direction }: { direction: Direction }) => { // ** Hook const [ref] = useKeenSlider({ rtl: direction === 'rtl', slides: { perView: 2, spacing: 16, origin: 'center' } }) return ( swiper 26 swiper 27 swiper 28 swiper 29 swiper 30 ) } export default SwiperCentered