mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-04 03:16:15 -05:00
a5fa876aa3
Co-authored-by: Piyush Gupta <piyushguptaa2z123@gmail.com> Co-authored-by: Piyush Gupta <56182734+gupta-piyush19@users.noreply.github.com> Co-authored-by: Victor Hugo dos Santos <115753265+victorvhs017@users.noreply.github.com> Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com> Co-authored-by: Matti Nannt <matti@formbricks.com> Co-authored-by: Matti Nannt <mail@matthiasnannt.com> Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Johannes <72809645+jobenjada@users.noreply.github.com>
20 lines
476 B
TypeScript
20 lines
476 B
TypeScript
"use client";
|
|
|
|
import { Trans } from "react-i18next";
|
|
|
|
interface VerificationMessageProps {
|
|
email: string;
|
|
}
|
|
|
|
export const VerificationMessage = ({ email }: VerificationMessageProps) => {
|
|
return (
|
|
<p className="text-center text-sm text-slate-700">
|
|
<Trans
|
|
i18nKey="auth.verification-requested.verification_email_successfully_sent_info"
|
|
values={{ email }}
|
|
components={{ span: <span className="font-semibold" /> }}
|
|
/>
|
|
</p>
|
|
);
|
|
};
|