diff --git a/types/input/input.d.ts b/types/input/input.d.ts index 14e649abd..a8d4e7de9 100644 --- a/types/input/input.d.ts +++ b/types/input/input.d.ts @@ -6,13 +6,13 @@ import { AntdComponent } from '../component'; import { InputGroup } from './input-group'; import { InputSearch } from './input-search'; import { TextArea } from './textarea'; -import { Passward } from './passward'; +import { Password } from './password'; export declare class Input extends AntdComponent { static Group: typeof InputGroup; static Search: typeof InputSearch; static TextArea: typeof TextArea; - static Passward: typeof Passward; + static Password: typeof Password; /** * The label text displayed after (on the right side of) the input field. diff --git a/types/input/passward.d.ts b/types/input/password.d.ts similarity index 83% rename from types/input/passward.d.ts rename to types/input/password.d.ts index 78ccc3c70..e6d6138f4 100644 --- a/types/input/passward.d.ts +++ b/types/input/password.d.ts @@ -4,6 +4,6 @@ import { AntdComponent } from '../component'; -export declare class Passward extends AntdComponent { +export declare class Password extends AntdComponent { visibilityToggle?: boolean; }