Files
BetiX/resources/js/components/ui/input-otp/InputOTPSlot.vue
Dolo 0280278978
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
Initialer Laravel Commit für BetiX
2026-04-04 18:01:50 +02:00

10 lines
241 B
Vue

<script setup lang="ts">
const props = withDefaults(defineProps<{ index: number }>(), {});
</script>
<template>
<div class="h-10 w-10 rounded-md border border-input bg-background text-center leading-10">
<slot />
</div>
</template>