--- import { Icon } from "astro-icon/components"; export interface Props { badgeText: string; withIcon?: boolean; badgeIconName?: string; } const { badgeText, withIcon = true, badgeIconName } = Astro.props; --- {withIcon && ( badgeIconName ? : ) } {badgeText}