--- import { cn } from "@/lib/utils"; type Props = { href: string; external?: boolean; class?: string; underline?: boolean; [key: string]: any; }; const { href, external, class: className, underline, ...rest } = Astro.props; ---