--- import { Image } from "astro:assets"; interface Props { photo: any; width?: number; height?: number; class?: string; } const { photo, width, height, class: className } = Astro.props; ---