--- import { Image } from "astro:assets"; const { src, width, height, alt } = Astro.props; let size; if (width || height) { size = `width="${width}" height="${height}"` } else { size = `inferSize` } --- {alt}