38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import { Dispatch, SetStateAction } from "react";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { FiCheck } from "@calcom/ui/components/icon";
|
|
|
|
const StepDone = (props: {
|
|
currentStep: number;
|
|
nextStepPath: string;
|
|
setIsLoading: Dispatch<SetStateAction<boolean>>;
|
|
}) => {
|
|
const router = useRouter();
|
|
const { t } = useLocale();
|
|
|
|
return (
|
|
<form
|
|
id={`wizard-step-${props.currentStep}`}
|
|
name={`wizard-step-${props.currentStep}`}
|
|
className="flex justify-center space-y-4"
|
|
onSubmit={(e) => {
|
|
props.setIsLoading(true);
|
|
e.preventDefault();
|
|
router.replace(props.nextStepPath);
|
|
}}>
|
|
<div className="min-h-36 my-6 flex flex-col items-center justify-center">
|
|
<div className="flex h-[72px] w-[72px] items-center justify-center rounded-full bg-gray-600 dark:bg-white">
|
|
<FiCheck className="inline-block h-10 w-10 text-white dark:bg-white dark:text-gray-600" />
|
|
</div>
|
|
<div className="max-w-[420px] text-center">
|
|
<h2 className="mt-6 mb-1 text-lg font-medium dark:text-gray-300">{t("all_done")}</h2>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|
|
|
|
export default StepDone;
|