frontend/components/inputs/checkbox.vue
2024-06-15 20:34:35 -10:00

12 lines
330 B
Vue

<template>
<InputsText type="checkbox" v-bind="$attrs, $props"
class="rounded disabled:hover:cursor-wait text-primary-700 !size-5" />
</template>
<script lang="ts" setup>
import type { InputHTMLAttributes } from "vue";
interface Props extends /* @vue-ignore */ InputHTMLAttributes {}
defineProps<Props>();
</script>