UNPKG

@spark-web/password-input

Version:

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

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