--- interface Props { label: string type?: "text" | "email" | "password" | "number" name: string required?: boolean placeholder?: string } const { label, type = "text", name, required = false, placeholder, } = Astro.props ---