Buttons remove of carousel elements [react-multi-carousel]

113 Views Asked by At

How do I remove the arrows in the react-multi-carousel? enter image description here

1

There are 1 best solutions below

0
On
<Carousel
      swipeable={false} // Disable swipe to prevent arrows from showing
      draggable={false} // Disable dragging to prevent arrows from showing
      showDots={false} // Optionally, hide the dots navigation as well
      responsive={responsive}
      // Other settings and props for your carousel go here
    >
      {items.map((item, index) => (
        // Your slide item JSX goes here
      ))}
    </Carousel>