import "./OAuthManualCodeForm.css"; interface OAuthManualCodeFormProps { value: string; onChange: (value: string) => void; onSubmit: () => void; prompt: string; placeholder?: string; helpText?: string; disabled?: boolean; submitLabel?: string; "data-testid"?: string; } export function OAuthManualCodeForm({ value, onChange, onSubmit, prompt, placeholder, helpText, disabled = false, submitLabel = "Submit code", "data-testid": testId, }: OAuthManualCodeFormProps) { return (

{prompt}