// ** 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 SwiperFreeMode = ({ direction }: { direction: Direction }) => { // ** Hook const [ref] = useKeenSlider({ loop: true, mode: 'free', rtl: direction === 'rtl', slides: { perView: 2, spacing: 16 } }) return ( swiper 21 swiper 22 swiper 23 swiper 24 swiper 25 ) } export default SwiperFreeMode