Incorporating owl-carousel version 2.0.7 into my angular application, I have opted to create custom Prev & Next buttons instead of using the default nav text option. Can you provide guidance on how to implement functionality for navigating to the next and previous slide using button clicks? It's worth noting that the application is built in angular.
Below are the custom navigation buttons I intend to utilize for carousel navigation.
<div class="jo-carousel-custom-nav">
<button (click)="nextSlide()">previous</button>
<button (click)="prevSlide()">next</button>
</div>