--- import Icon from './Icon.astro'; import type { HTMLAttributes } from 'astro/types'; interface Props extends Omit, 'title'> { title: string; description?: string; } const { title, description, ...attributes } = Astro.props; ---