--- // Export a "Props" interface to . export interface Props { height?: number, width?: number, } const {height = 80, width = 60 } = Astro.props; --- Astro logo