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