This component no longer exists. It was in Wednesday UI’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-13 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 Demo
wednesday-ui/pagination-demoRemovedComponent
A demo of the pagination component
Install it
npx shadcn@latest add https://ui.ednesdayw.com/r/pagination-demo.jsonSource
1"use client";23import { useMediaQuery } from "@/hooks/use-media-query";4import { Pagination } from "@/components/ui/pagination";5import { useState } from "react";67export const PaginationDemo = () => {8 const [currentPage, setCurrentPage] = useState(1);9 const isSM = useMediaQuery("(max-width: 640px)");1011 return (12 <Pagination13 currentPage={currentPage}14 totalPages={100}15 onChange={setCurrentPage}16 siblings={isSM ? 1 : 2}17 />18 );19};
What it pulls in
Other registry items
