--- export interface Props { id: string; height?: number; } const { id, height = 500 } = Astro.props; if (id == null) { throw new Error('"id" is a required prop'); } ---