Tailwind CSS Pagination - Props

The following props are available for pagination component. These are the custom props that come with we've added for the pagination component and you can use all the other native props as well.

Attribute Type Description Default
current-pagenumber Current page for table 1
per-pagenumber Per page for table 10
totalnumber Total elements for table 0
sizeSize Change pagination size md
colorColor Change pagination color blue

Types - Size

type size = "sm" | "md" | "lg"
            

Types - Color

type variant = 
  | "blue-gray"
  | "gray"
  | "brown"
  | "deep-orange"
  | "orange"
  | "amber"
  | "yellow"
  | "lime"
  | "light-blue"
  | "blue"
  | "teal"
  | "cyan"
  | "light-blue"
  | "blue"
  | "indigo"
  | "deep-purple"
  | "purple"
  | "pink"
  | "red"