@geist-ui/react
Version:
Modern and minimalist React UI library.
12 lines (11 loc) • 489 B
TypeScript
import React from 'react';
import { Props } from "./input-props";
interface PasswordProps extends Props {
hideToggle?: boolean;
}
declare type NativeAttrs = Omit<React.InputHTMLAttributes<any>, keyof PasswordProps>;
export declare type InputPasswordProps = PasswordProps & NativeAttrs;
declare const InputPassword: React.ForwardRefExoticComponent<PasswordProps & NativeAttrs & {
children?: React.ReactNode;
} & React.RefAttributes<HTMLInputElement>>;
export default InputPassword;