import {Pagination, PaginationItemType} from "@nextui-org/react"; export const ChevronIcon = (props) => { return ( ); }; export default function App() { const renderItem = ({ref, key, value, isActive, onNext, onPrevious, setPage, className}) => { if (value === PaginationItemType.NEXT) { return ( ); } if (value === PaginationItemType.PREV) { return ( ); } if (value === PaginationItemType.DOTS) { return ( ); } // cursor is the default item return ( ); }; return ( ); }