Home / Function/ PaginationNext() — ui Function Reference

PaginationNext() — ui Function Reference

Architecture documentation for the PaginationNext() function in pagination.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  f499de54_f710_495b_ff4f_08c3cf48d767["PaginationNext()"]
  65e522e5_ab81_9d77_3823_a51d2044e862["pagination.tsx"]
  f499de54_f710_495b_ff4f_08c3cf48d767 -->|defined in| 65e522e5_ab81_9d77_3823_a51d2044e862
  style f499de54_f710_495b_ff4f_08c3cf48d767 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/examples/radix/ui-rtl/pagination.tsx lines 85–101

function PaginationNext({
  className,
  text = "Next",
  ...props
}: React.ComponentProps<typeof PaginationLink> & { text?: string }) {
  return (
    <PaginationLink
      aria-label="Go to next page"
      size="default"
      className={cn("pe-1.5!", className)}
      {...props}
    >
      <span className="hidden sm:block">{text}</span>
      <ChevronRightIcon data-icon="inline-end" className="rtl:rotate-180" />
    </PaginationLink>
  )
}

Subdomains

Frequently Asked Questions

What does PaginationNext() do?
PaginationNext() is a function in the ui codebase, defined in apps/v4/examples/radix/ui-rtl/pagination.tsx.
Where is PaginationNext() defined?
PaginationNext() is defined in apps/v4/examples/radix/ui-rtl/pagination.tsx at line 85.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free