+
Current Page: {currentPage}
+
+
+ )
+ },
+}
+
+export const ManyPages: Story = {
+ args: {
+ totalPages: 100,
+ defaultPage: 50,
+ },
+}
+
+export const FewPages: Story = {
+ args: {
+ totalPages: 5,
+ defaultPage: 1,
+ },
+}
+
+export const WithoutFirstLast: Story = {
+ args: {
+ totalPages: 20,
+ defaultPage: 10,
+ showFirstLast: false,
+ },
+}
+
+export const CustomClassName: Story = {
+ args: {
+ totalPages: 10,
+ defaultPage: 1,
+ className: 'custom-pagination',
+ },
+ render: (args) => (
+