// ** 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 SwiperDefault = ({ direction }: { direction: Direction }) => { // ** Hook const [ref] = useKeenSlider({ rtl: direction === 'rtl' }) return ( swiper 1 swiper 2 swiper 3 swiper 4 swiper 5 ) } export default SwiperDefault