--- import type { SvgComponent } from "astro/types"; import { Image } from "astro:assets"; export interface Props { name: string; url: string; icon: ImageMetadata & SvgComponent; status: "active" | "wip" | "disabled"; } const { name, url, icon } = Astro.props as Props; ---