fix: email verfication

This commit is contained in:
Bereket Engida
2024-09-25 23:39:30 +03:00
parent 66b0b4c0a6
commit 287224c850
261 changed files with 119 additions and 46 deletions

View File

@@ -0,0 +1,16 @@
<script lang="ts">
import type { HTMLAttributes } from "svelte/elements";
import { cn } from "$lib/utils.js";
type $$Props = HTMLAttributes<HTMLDivElement>;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<div
class={cn("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", className)}
{...$$restProps}
>
<slot />
</div>