--- import type Digit from '$types/Digit'; type LayoutClasses = `grid-span-${Digit}${'' | ' grid-end' | ' grid-prose-end'}`; interface Props { href: string; layoutClasses: LayoutClasses; } const { href, layoutClasses } = Astro.props; ---