This component no longer exists. It was in skyroc-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Pagination
skyroc-ui/paginationRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/pagination.jsonSource
1'use client';23import type { ComponentRef } from 'react';4import { forwardRef } from 'react';5import { useComponentConfig } from '../config-provider/context';6import PaginationUI from './PaginationUI';7import type { PaginationProps } from './types';89const Pagination = forwardRef<ComponentRef<'nav'>, PaginationProps>((props, ref) => {10 const config = useComponentConfig('pagination');1112 const mergedProps = {13 ...config,14 ...props15 };1617 return (18 <PaginationUI19 {...mergedProps}20 ref={ref}21 />22 );23});2425Pagination.displayName = 'Pagination';2627export default Pagination;
What it pulls in
Other registry items
