--- interface Props { hue: "teal" | "amber" | "rust" | "slate" | "olive"; logo?: string; company: string; size?: "thumb" | "hero"; } const { hue, logo, company, size = "thumb" } = Astro.props; ---