import React from "react";
import PropTypes from "prop-types";
const PasswordReq = ({ validPassword, className }) => {
const validPasswordCls = validPassword ? "" : " color-destructive";
const passwordCls = ` {${className}}`;
return (
Your password must meet the following requirements:
-
At least 8 characters
-
Include at least 1 number
-
Include at least 1 special character
-
Include uppercase and lowercase characters
);
};
PasswordReq.propTypes = {
validPassword: PropTypes.bool,
className: PropTypes.string,
};
export default PasswordReq;