Maybe this could be useful:
// The carousell
<Carousel
ref={(el) => {
carouselRef = el;
}}
</Carousel>
// The custom button
<button
onClick={() => {
if (carouselRef) {
carouselRef.next(1);
}
}}
>
Next
</button>