--- import type { IconType } from "react-icons"; interface Props { links: Record; } const { links } = Astro.props; ---
{ Object.entries(links).map((link) => { return (
{link[1][1].map((icon) => { const Icon = icon; return ; })}

{link[1][2]}

{link[0]}

); }) }