--- import Link from './Link.astro'; interface Props { class?: string; [key: string]: any; } const { class: className, ...props } = Astro.props; ---