--- import { TabItemTagname } from './rehype-tabs'; import type { Icons } from '../components/Icons'; interface Props { icon?: keyof typeof Icons; label: string; } const { icon, label } = Astro.props; if (!label) { throw new Error('Missing prop `label` on `` component.'); } ---