I am editing a user interface of an application, there is an existing design for the pagination. Now what I want is to change the navigation of the pagination.
This is my pagination code:
<div pagination="" total-items="merchandisesCount" page="currentPage" items-per-page="rowsPerPage"
max-size="maxSize" class="pagination-sm" boundary-links="true" rotate="false" num-pages="numPages"
next-text="" previous-text="" first-text="" last-text=""></div>
When the pagination show, I want to add the font awesome chevron left, right etc. to be used as my navigation. How can I do it?
Thanks