--- import { Icon } from "astro-icon/components"; interface Props { type: "note" | "warning"; } const { type } = Astro.props; const icon = { note: "ph:info", warning: "ph:warning", }[type]; ---