BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/neobrutal-ui/pagination
This component no longer exists. It was in neobrutal-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 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

neobrutal-ui/pagination
RemovedComponent

neobrutal-ui publishes no description for this item.

Live preview

live · rendered by the registry
Rendered by neobrutal-ui on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/pagination.json

Source

src/components/ui/pagination.tsxneobrutal-ui.andongmin.com/r/pagination.json
1import * as React from "react";
2
3import { cn } from "@/lib/utils";
4import { ChevronLeftIcon, ChevronRightIcon, MoreHorizontalIcon } from "lucide-react";
5
6const paginationLinkClassName =
7 "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-base border-2 border-border bg-main text-sm font-base text-main-foreground ring-offset-white transition-all focus-visible:ring-2 focus-visible:ring-black focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0";
8
9const paginationLinkSizeClassNames = {
10 default: "h-10 px-4 py-2",
11 sm: "h-9 px-3",
12 lg: "h-11 px-8",
13 icon: "size-10",
14};
15
16function Pagination({ className, ...props }: React.ComponentProps<"nav">) {
17 return (
18 <nav
19 role="navigation"
20 aria-label="pagination"
21 data-slot="pagination"
22 className={cn("mx-auto flex w-full justify-center", className)}
23 {...props}
24 />
25 );
26}
27
28function PaginationContent({ className, ...props }: React.ComponentProps<"ul">) {
29 return (
30 <ul
31 data-slot="pagination-content"
32 className={cn("flex flex-row items-center gap-1", className)}
33 {...props}
34 />
35 );
36}
37
38function PaginationItem({ className, ...props }: React.ComponentProps<"li">) {
39 return <li data-slot="pagination-item" className={cn("", className)} {...props} />;
40}
41
42type PaginationLinkProps = {
43 isActive?: boolean;
44 size?: "default" | "sm" | "lg" | "icon";
45} & React.ComponentProps<"a">;
46
47function PaginationLink({ className, isActive, size = "icon", ...props }: PaginationLinkProps) {
48 return (
49 <a
50 data-slot="pagination-link"
51 aria-current={isActive ? "page" : undefined}
52 className={cn(
53 paginationLinkClassName,
54 paginationLinkSizeClassNames[size],
55 className,
56 isActive && "bg-black text-white",
57 )}
58 {...props}
59 />
60 );
61}
62
63function PaginationPrevious({
64 className,
65 text = "Previous",
66 ...props
67}: React.ComponentProps<typeof PaginationLink> & { text?: string }) {
68 return (
69 <PaginationLink
70 data-slot="pagination-previous"
71 aria-label="Go to previous page"
72 size="default"
73 className={cn("gap-1 pl-2.5", className)}
74 {...props}
75 >
76 <ChevronLeftIcon className="size-4" />
77 <span>{text}</span>
78 </PaginationLink>
79 );
80}
81
82function PaginationNext({
83 className,
84 text = "Next",
85 ...props
86// … truncated

What it pulls in

Other registry items

  • https://neobrutal-ui.andongmin.com/r/nbutton.json

Files it writes

  • src/components/ui/pagination.tsx

Facts

Registry
neobrutal-ui
Type
registry:ui
Access
Free
Files written
1
Licence
the repository states none
In the index
at or before 2026-08-02
Last confirmed
13 days ago

Go to the source

Docs on neobrutal-ui neobrutal-ui.andongmin.com andongmin94/neobrutal-ui on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex