import { useLocale } from "@calcom/lib/hooks/useLocale"; import { Icon } from "@calcom/ui"; const StepDone = () => { const { t } = useLocale(); return (

{t("all_done")}

); }; export default StepDone;