| Position | Name | Weight | Symbol | 
|---|---|---|---|
| 1 | Hydrogen | 1.0079 | H | 
| 2 | Helium | 4.0026 | He | 
| 3 | Lithium | 6.941 | Li | 
| 4 | Beryllium | 9.0122 | Be | 
| 5 | Boron | 10.811 | B | 
Alternative UI
Display an alternative interface using the alternative property.
   1 - 3 1
					of
					2  
Handling Total Count
If your source data is pre-truncated (ex: server-side pagination). Make sure to specify the total item count.
// Mock Server Responsepagination: {  "page": 1,  "limit": 2,  "pages": 1,  "total": 1, // <----  "next": null,  "prev": null}<Pagination count={pagination.total} ... />Anatomy
 <Pagination>     button   (first)  button   (numerals)  button   (ellipsis)  button   (last) API Reference
Pagination
| Property | Type | Description | 
|---|---|---|
 data *  |     unknown[]   |     |  
 alternative   |   boolean |   |  
 textSeparator   |   string |   |  
 showFirstLastButtons   |   boolean |   |  
 base   |   string |   |  
 background   |   string |   |  
 border   |   string |   |  
 gap   |   string |   |  
 padding   |   string |   |  
 rounded   |   string |   |  
 classes   |   string |   |  
 titleFirst   |   string |   |  
 titlePrevious   |   string |   |  
 titleNumeral   |   string |   |  
 titleNext   |   string |   |  
 titleLast   |   string |   |  
 buttonBase   |   string |   |  
 buttonActive   |   string |   |  
 buttonInactive   |   string |   |  
 buttonHover   |   string |   |  
 buttonClasses   |   string |   |  
 labelFirst   |   Snippet<[]> |   |  
 labelPrevious   |   Snippet<[]> |   |  
 labelEllipsis   |   Snippet<[]> |   |  
 labelNext   |   Snippet<[]> |   |  
 labelLast   |   Snippet<[]> |   |  
 ids   |     Partial<{ root: string; ellipsis(index: number): string; prevTrigger: string; nextTrigger: string; item(page: number): string; }>   |     |  
 dir   |   "ltr" | "rtl" |   |  
 getRootNode   |     () => ShadowRoot | Node | Document   |     |  
 translations   |     IntlTranslations   |     |  
 count   |   number |   |  
 pageSize   |   number |   |  
 defaultPageSize   |   number |   |  
 siblingCount   |   number |   |  
 page   |   number |   |  
 defaultPage   |   number |   |  
 onPageChange   |     (details: PageChangeDetails) => void   |     |  
 onPageSizeChange   |     (details: PageSizeChangeDetails) => void   |     |  
 type   |   "button" | "link" |   |