Tailwind CSS Pagination - Taco Svelte

Pagination is a feature through which users can easily switch between pages across a website or app. With the help of this component, a user can select a specific page from a range of pages. Below we are presenting an example of the Pagination component that you can use in your project based on Taco.

<Pagination 
      currentPage="1"
      perPage="5"
      total="15"
      on:click="currentPage = event.detail.page"
      color="blue"
      size="md"
    />