Components
Loading preview...
Here is Pagination component
npx shadcn@latest add https://21st.dev/r/antdesign/pagination-antimport React from 'react';
import { Pagination } from 'antd';
const App: React.FC = () => (
<>
<Pagination
total={85}
showTotal={(total) => `Total ${total} items`}
defaultPageSize={20}
defaultCurrent={1}
/>
</>
);
export default App;