10 lines
241 B
Vue
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>
|