--- import { Icon } from 'astro-icon/components'; interface Props { label: string; href: string; icon: string; } const { label, href, icon } = Astro.props; const navigationHandler = `window.open('${href}', '_blank')`; ---