mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
12 lines
330 B
Vue
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> |