UNPKG

react-password-strength-bar

Version:

A React component that displays the password strength bar

9 lines (8 loc) 239 B
import React from 'react'; interface PasswordStrengthBarItemProps { score: number; itemNum: number; barColors: string[]; } declare const Item: React.FunctionComponent<PasswordStrengthBarItemProps>; export default Item;