--- import { Icon } from 'astro-icon'; import { getRelativeLink } from '~/utils/permalinks'; export interface Props { prevUrl: string; nextUrl: string; prevText?: string; nextText?: string; } const { prevUrl, nextUrl, prevText = 'Newer posts', nextText = 'Older posts' } = Astro.props; --- { (prevUrl || nextUrl) && (

{prevText}

{nextText}
) }