import { ActionLink } from '@/components/actions/ActionLink'; import { Icon } from '@/components/foundation/Icon'; import styles from './Pagination.module.css'; export interface PaginationPage { number: number; href: string; current?: boolean; } interface PaginationProps { label: string; pages: PaginationPage[]; previous?: { href: string; label: string }; next?: { href: string; label: string }; } export function Pagination({ label, pages, previous, next }: PaginationProps) { return ( ); }