Achieving this is definitely doable. Just include the necessary markup for the arrows you prefer and utilize the selector within the Swiper declaration.
// HTML
<div class="swiper swiper-carousel">
<div class="swiper-wrapper">
<div class="swiper-slide">
</div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-left">🢐</div>
<div class="swiper-right">🢒</div>
</div>
// JS
$('.swiper-carousel').each(function(){
var swiper = new Swiper(".swiper-carousel", {
slidesPerView: 4,
spaceBetween: 30,
navigation: {
nextEl: '.swiper-carousel .swiper-right',
prevEl: '.swiper-carousel .swiper-left',
},
pagination: {
el: ".swiper-pagination",
clickable: true,
},
});
});