BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/poyraz/pagination

Pagination

poyraz/pagination
FreeComponent

Poyraz Soft Glass pagination component with standardized floating and overlay behavior.

Install it

npx shadcn@latest add https://ui.poyrazavsever.com/r/pagination.json

Source

registry/poyraz/ui/phase6/molecules/pagination.tsxui.poyrazavsever.com/r/pagination.json
1import * as React from "react";
2import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react";
3
4import { cn } from "@/lib/utils";
5import { ButtonProps, buttonVariants } from "@/components/ui/atoms/button";
6
7const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => (
8 <nav
9 role="navigation"
10 aria-label="pagination"
11 className={cn("mx-auto flex w-full justify-center", className)}
12 {...props}
13 />
14);
15Pagination.displayName = "Pagination";
16
17const PaginationContent = React.forwardRef<HTMLUListElement, React.ComponentProps<"ul">>(
18 ({ className, ...props }, ref) => (
19 <ul
20 ref={ref}
21 className={cn(
22 "flex max-w-full flex-row flex-nowrap items-center justify-start gap-1 overflow-x-auto scrollbar-none sm:justify-center",
23 "transition-[color,background-color,border-color] duration-[var(--poyraz-motion-duration-fast)] ease-[var(--poyraz-motion-ease-out)]",
24 className,
25 )}
26 {...props}
27 />
28 ),
29);
30PaginationContent.displayName = "PaginationContent";
31
32const PaginationItem = React.forwardRef<HTMLLIElement, React.ComponentProps<"li">>(
33 ({ className, ...props }, ref) => <li ref={ref} className={cn("", className)} {...props} />,
34);
35PaginationItem.displayName = "PaginationItem";
36
37type PaginationLinkProps = {
38 isActive?: boolean;
39} & Pick<ButtonProps, "size"> &
40 React.ComponentProps<"a">;
41
42const PaginationLink = ({ className, isActive, size = "icon", ...props }: PaginationLinkProps) => (
43 <a
44 aria-current={isActive ? "page" : undefined}
45 className={cn(
46 buttonVariants({
47 variant: "ghost",
48 size,
49 radius: "md",
50 }),
51 "transition-[color,background-color,border-color] duration-[var(--poyraz-motion-duration-fast)] ease-[var(--poyraz-motion-ease-out)]",
52 isActive &&
53 "border border-primary/25 bg-primary-muted text-primary shadow-sm hover:border-primary/35 hover:bg-primary-muted hover:text-primary",
54 className,
55 )}
56 {...props}
57 />
58);
59PaginationLink.displayName = "PaginationLink";
60
61const PaginationPrevious = ({
62 className,
63 ...props
64}: React.ComponentProps<typeof PaginationLink>) => (
65 <PaginationLink
66 aria-label="Go to previous page"
67 size="default"
68 className={cn("group gap-1 pl-2.5", className)}
69 {...props}
70 >
71 <ChevronLeft className="h-4 w-4" />
72 <span className="hidden sm:inline">Previous</span>
73 </PaginationLink>
74);
75PaginationPrevious.displayName = "PaginationPrevious";
76
77// … truncated

What it pulls in

npm packages

  • lucide-react@^0.574.0

Other registry items

  • @poyraz/poyraz-utils
  • @poyraz/poyraz-theme
  • @poyraz/button

Files it writes

  • registry/poyraz/ui/phase6/molecules/pagination.tsx

Facts

Registry
poyraz
Type
registry:ui
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-12
Last confirmed
yesterday

Go to the source

ui.poyrazavsever.com poyrazavsever/poyraz-ui on GitHub Raw registry item This item as JSON

More from poyraz

All 71 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
AccordionaccordionpoyrazComponentsFree2 deps
AlertalertpoyrazComponentsFree2 deps
Announcement Barannouncement-barpoyrazComponentsFree2 deps
AutocompleteautocompletepoyrazComponentsFree1 dep
AvataravatarpoyrazComponentsFree2 deps
BadgebadgepoyrazComponentsFree1 dep
Bg Patternbg-patternpoyrazComponentsFreeno deps
BreadcrumbbreadcrumbpoyrazComponentsFree1 dep

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