--- import { getRelativeLocaleUrl } from "astro:i18n"; import IconHash from "@/assets/icons/IconHash.svg"; import config from "@/config"; type Props = { tag: string; tagName: string; size?: "sm" | "lg"; }; const { tag, tagName, size = "lg" } = Astro.props; const locale = Astro.currentLocale ?? config.site.lang; ---