0

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

Nil
  • 1,209
  • 9
  • 20
Killer
  • 19
  • 1

1 Answers1

0
<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>
Shah Vipul
  • 625
  • 7
  • 11