UNPKG

@serendie/ui

Version:

Adaptive UI component library as part of Serendie Design System by Mitsubishi Electric

11 lines (10 loc) 457 B
import { default as React } from 'react'; import { TextField } from '../TextField'; type PasswordFieldProps = Omit<React.ComponentProps<typeof TextField>, "type" | "rightContent"> & { /** * パスワードの表示/非表示切り替えを無効にする */ disableToggle?: boolean; }; export declare const PasswordField: React.ForwardRefExoticComponent<Omit<PasswordFieldProps, "ref"> & React.RefAttributes<HTMLInputElement>>; export {};