react-responsive-carousel change next and back button

827 Views Asked by At

I am using the react-responsive-carousel library. Here, I want to change the default previous and next button. And render navigation buttons always visible My code is

<Carousel 
                        showThumbs={true}
                        showStatus={false}
                        infiniteLoop
                        // emulateTouch
                        // autoPlay
                        useKeyboardArrows
                        // axis="vertical"
                        // selectedItem={1}
                        width="1000px"
                    >
                        <div>
                            <Card1 />            
                        </div>
                        <div>
                            <Card2 />
                        </div>
                        <div>
                             <Card3 />
                        </div>
                    </Carousel>

I want to go from this (figure 1 ) to this (figure 2)figure1

figure 2

0

There are 0 best solutions below