UNPKG

primereact

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact)

19 lines (16 loc) 505 B
import * as React from 'react'; import TooltipOptions from '../tooltip/TooltipOptions'; interface PasswordProps extends React.HTMLProps<HTMLInputElement> { id?: string; promptLabel?: string; weakLabel?: string; mediumLabel?: string; strongLabel?: string; feedback?: boolean; tooltip?: any; tooltipOptions?: TooltipOptions; [key: string]: any; panelClassName?: string; panelStyle?: object; } export class Password extends React.Component<PasswordProps,any> {}