mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-03 19:40:08 -05:00
36378e9c23
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
16 lines
352 B
TypeScript
16 lines
352 B
TypeScript
import { Text } from "@react-email/components";
|
|
import { TFnType } from "@tolgee/react";
|
|
import React from "react";
|
|
|
|
export function EmailFooter({ t }: { t: TFnType }): React.JSX.Element {
|
|
return (
|
|
<Text>
|
|
{t("emails.email_footer_text_1")}
|
|
<br />
|
|
{t("emails.email_footer_text_2")}
|
|
</Text>
|
|
);
|
|
}
|
|
|
|
export default EmailFooter;
|