--- import { Icon } from "astro-icon/components"; import { techLinks } from "../config/data"; // Helper function to check if icon is a string (Astro icon) function isAstroIcon(icon: any): icon is string { return typeof icon === "string"; } ---
{ techLinks.map((link) => { if (isAstroIcon(link.icon)) { return ( ); } return null; }) }