import * as React from "react" import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react" import { cn } from "@/lib/utils" import { ButtonProps, buttonVariants } from "@/components/ui/button" import { Button } from "@/components/ui/button" interface SimplePaginationProps { currentPage: number; totalPages: number; onPageChange: (page: number) => void; } export function SimplePagination({ currentPage, totalPages, onPageChange }: SimplePaginationProps) { return (
Page {currentPage} sur {totalPages}
); } const PaginationContent = React.forwardRef< HTMLUListElement, React.ComponentProps<"ul"> >(({ className, ...props }, ref) => (