--- import { Icon } from "astro-icon/components"; import type { Attribute } from "src/utils/attributes"; interface Props extends Attribute {} const { icon, title, values, withBorder = true } = Astro.props; if (values.length === 0) return; --- {/* ------------------------------------------- HTML ------------------------------------------- */}

{title}

{ values.map(({ name, href }) => href ? ( {name} ) : (
{name}
) ) }
{/* ------------------------------------------- CSS -------------------------------------------- */}