--- export interface Props { type?: "primary" | "neutral" | "success" | "warning" | "error" | "info"; variant?: "soft" | "solid"; } const { type = "primary", variant = "soft" } = Astro.props; ---