import type { Meta, StoryObj } from '@storybook/react-vite'; import { PageAnchor } from './PageAnchor'; const meta: Meta = { title: 'UI kit/Table/Pagination/PageAnchor', component: PageAnchor, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Number: Story = { args: { page: 4, href: '/4', }, }; export const Next: Story = { args: { href: '/next', icon: 'shp-next', 'aria-label': 'Next page', }, };