From 64b79efba41fe812bb227c4ac611b9dbb3195e00 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:45 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/pagination.tsx | 98 ++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/components/ui/pagination.tsx diff --git a/src/components/ui/pagination.tsx b/src/components/ui/pagination.tsx new file mode 100644 index 0000000..f8cd41f --- /dev/null +++ b/src/components/ui/pagination.tsx @@ -0,0 +1,98 @@ +import * as React from "react"; +import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react"; + +import { cn } from "@/lib/utils"; +import { ButtonProps, buttonVariants } from "@/components/ui/button"; + +const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => ( +