@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
10 lines (9 loc) • 328 B
TypeScript
import { ReactNode } from 'react';
import { InputErrorProps, InputRmVariant, InputVariantType } from '../../types';
export interface PasswordModel extends InputRmVariant, InputErrorProps {
id?: string;
label?: string;
variant?: InputVariantType;
iconShowPassword?: ReactNode;
iconHidePassword?: ReactNode;
}