Is it possible to create external arrows using Angular Slick? The documentation seems to be lacking information on this topic.
I am familiar with how to do this with jQuery, but since slick uses a different approach in angular, I'm unsure of how to proceed:
<p class="left">left</p>
$('.left').click(function(){
$('.slider').slickPrev();
})