UNPKG

primereact

Version:

[![Join the chat at https://gitter.im/primefaces/primereact](https://badges.gitter.im/primefaces/primereact.svg)](https://gitter.im/primefaces/primereact?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

12 lines (10 loc) 322 B
import React = require("react"); interface PasswordProps extends React.HTMLProps<HTMLInputElement> { promptLabel?: string; weakLabel?: string; mediumLabel?: string; strongLabel?: string; feedback?: boolean; [key: string]: any; } export class Password extends React.Component<PasswordProps,any> {}