Here's a sample of a content file in Markdown:
---
title: "Title here"
tools: ["Typescript", "Svelte", "Tailwindcss", "Rust"]
---
And here's a sample of my viewer component:
---
import { type CollectionEntry } from "astro:content";
import { Image } from "astro:assets";
import Card from "../ui/card.astro";
const { project } = Astro.props as { project: CollectionEntry<"projects"> };
const image = project.data.smallTileImage || project.data.mainImage;
---
<h3 class="text-xl font-semibold tracking-tight">
{project.data.title}
</h3>
I would like to import the icons (as defined by the tools array) from the simple-icons-astro package and display them in the viewer component. How can I do this?