UNPKG

react-password-check

Version:

A simple password strength indicator component for react.

9 lines (8 loc) 244 B
import React from 'react'; interface ImageAndTextProps { color: string; message: string; image: string | undefined; } export default function ImageAndText({ color, message, image }: ImageAndTextProps): React.JSX.Element; export {};