--- import { Image } from 'astro:assets'; type Props = { as?: HTMLElement; className?: string; id?: string; backgroundImage: any; backgroundAlt: string; }; const { as = 'div', className = '', id = '', backgroundImage, backgroundAlt, }: Props = Astro.props; const Tag: HTMLElement = as; ---