--- import { Icon } from "astro-icon/components"; import { type NavbarLink } from "@/types/config"; import { url } from "@utils/url"; interface Props { link: NavbarLink; class?: string; } const { link, class: className } = Astro.props; ---