--- import { Icons } from '../components/Icons'; import Icon from '../user-components/Icon.astro'; interface Props { icon: keyof typeof Icons; label: string; } const { icon, label } = Astro.props; ---
{label}