Default pagination
<Pagination currentPage={1} totalPages={100} />
<!-- bind to get values -->
Pagination with icons
<Pagination currentPage={1} showIcons={true} totalPages={100} />
Previous and next
<Pagination currentPage={1} layout="navigation" totalPages={100} />
Previous and next with icons
<Pagination currentPage={1} layout="navigation" totalPages={100} showIcons={true} />
Table data navigation
<div class="flex items-center justify-center text-center">
<Pagination currentPage={1} layout="table" totalPages={1000} />
</div>