--- import type { Attribute } from "src/utils/attributes"; import TitleIcon from "./TitleIcon.astro"; interface Props extends Attribute {} const { icon, title, values, withBorder = true, lang: titleLang } = Astro.props; if (values.length === 0) return; --- {/* ------------------------------------------- HTML ------------------------------------------- */}
{ values.map(({ name, href, lang }) => href ? ( {name} ) : (
{name}
) ) }
{/* ------------------------------------------- CSS -------------------------------------------- */}