--- import { Icon } from 'astro-icon/components'; interface Props { id: string; text: string; icon?: string } const { id, text, icon } = Astro.props; ---