--- import { Icon } from "astro-icon/components"; interface Props { icon: string; title: string; values: string[]; withBorder?: boolean | undefined; } const { icon, title, values, withBorder = true } = Astro.props; if (values.length === 0) return; --- {/* ------------------------------------------- HTML ------------------------------------------- */}

{title}

{values.map((value) =>
{value}
)}
{/* ------------------------------------------- CSS -------------------------------------------- */}