mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
13 lines
372 B
Vue
13 lines
372 B
Vue
<template>
|
|
<TextInput type="checkbox" v-bind="$attrs, $props"
|
|
class="rounded disabled:hover:cursor-wait text-primary2-700 !size-5" />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { InputHTMLAttributes } from "vue";
|
|
import TextInput from "./text-input.vue";
|
|
|
|
interface Props extends /* @vue-ignore */ InputHTMLAttributes {}
|
|
|
|
defineProps<Props>();
|
|
</script> |