primera ui de la pagina para recuperar contraseña

This commit is contained in:
2026-01-12 21:51:54 -03:00
parent 987920dbe4
commit 56bfaa02cc
19 changed files with 513 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
<script lang="ts">
import { PinInput as InputOTPPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
value = $bindable(""),
...restProps
}: InputOTPPrimitive.RootProps = $props();
</script>
<InputOTPPrimitive.Root
bind:ref
bind:value
data-slot="input-otp"
class={cn(
"flex items-center gap-2 has-disabled:opacity-50 [&_input]:disabled:cursor-not-allowed",
className
)}
{...restProps}
/>