--- // Cspell:words astro keyof export interface Props { as?: keyof astroHTML.JSX.IntrinsicElements; class?: string; [key: string]: any; } const { as: Tag = 'h2', class: className, children, ...props } = Astro.props; ---