When using the Pagination component, it seems like there is a bug in how the props are splited which make the page props not passed to the root component. It seems to come from the function splitCssProps that does not return the page in the localProps
const [variantProps, paginationProps] = pagination.splitVariantProps(props)
const [cssProps, localProps] = splitCssProps(paginationProps) // local props does not contains page.
When using the Pagination component, it seems like there is a bug in how the props are splited which make the
page
props not passed to the root component. It seems to come from the functionsplitCssProps
that does not return the page in thelocalProps