--- import { SOCIAL_ICONS } from "@constants"; interface Props { icon: keyof typeof SOCIAL_ICONS; size: "xs" | "sm" | "lg"; } const { icon, size } = Astro.props; const IconComponent = SOCIAL_ICONS[icon].icon; ---