UNPKG

@spark-web/password-input

Version:

--- title: Password Input storybookPath: forms-passwordinput--default isExperimentalPackage: true ---

5 lines (4 loc) 340 B
/// <reference types="react" /> import type { TextInputProps } from '@spark-web/text-input'; export declare type PasswordInputProps = Omit<TextInputProps, 'children' | 'inputMode' | 'type'>; export declare const PasswordInput: import("react").ForwardRefExoticComponent<PasswordInputProps & import("react").RefAttributes<HTMLInputElement>>;