--- export interface Props { name: string; size?: "sm" | "lg"; } const { name, size = "sm" } = Astro.props; ---