UNPKG

silly-password-generator

Version:

🔑 Generate silly passwords that are secure and easy to use. Inspired by xkcd.

9 lines (8 loc) • 281 B
import React from 'react'; import zxcvbn from 'zxcvbn'; export interface RoboQuoteProps { effectiveScore: number; analysis: zxcvbn.ZXCVBNResult; salt?: string; } export declare const RoboQuote: ({ effectiveScore, analysis, salt }: RoboQuoteProps) => React.JSX.Element;