UNPKG

@slashid/react-primitives

Version:

Primitive components for the /id React SDK

7 lines 280 B
import { BaseInputProps } from "./input.base"; export type PasswordInputProps = Omit<BaseInputProps, "type"> & { error?: boolean; style?: React.CSSProperties; }; export declare const PasswordInput: React.FC<PasswordInputProps>; //# sourceMappingURL=input.password.d.ts.map