1 2 3 4 5 6 7 8 9 10
--- // Export a "Props" interface to . export interface Props { height?: number; width?: number; } const { height = 80, width = 60 } = Astro.props; --- <img height={height} width={width} src="/logo.svg" alt="Astro logo" />