Files
formbricks/apps/formbricks-com/components/engine/ThankYouHeading.tsx
T
2023-02-05 21:37:05 +01:00

15 lines
551 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Confetti } from "@formbricks/ui";
import { SurveyElement } from "./engineTypes";
export default function ThankYouHeading({ element }: { element: SurveyElement }) {
return (
<div className="text-center">
<Confetti />
<h2 className="mt-3 text-xl font-bold text-slate-700 dark:text-slate-100 sm:text-2xl ">
Thank you! Were onboarding new users <span className="text-brand">regularly.</span>
</h2>
<p className="mt-4 text-slate-500 dark:text-slate-300">We will be in touch shortly.</p>
</div>
);
}