mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 13:48:58 -05:00
15 lines
551 B
TypeScript
15 lines
551 B
TypeScript
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! We’re 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>
|
||
);
|
||
}
|