mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 00:18:20 +01:00
40 lines
1.4 KiB
Vue
40 lines
1.4 KiB
Vue
<script setup lang="ts">
|
|
import { cn } from "@/lib/utils";
|
|
import { Check } from "lucide-vue-next";
|
|
import type { CheckboxRootEmits, CheckboxRootProps } from "reka-ui";
|
|
import { CheckboxIndicator, CheckboxRoot, useForwardPropsEmits } from "reka-ui";
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
|
|
const props = defineProps<
|
|
CheckboxRootProps & { class?: HTMLAttributes["class"] }
|
|
>();
|
|
const emits = defineEmits<CheckboxRootEmits>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<CheckboxRoot
|
|
data-slot="checkbox"
|
|
v-bind="forwarded"
|
|
:class="
|
|
cn('peer border-input data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground data-[state=checked]:border-primary focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive size-4 shrink-0 rounded-[4px] border shadow-xs transition-shadow outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50',
|
|
props.class)"
|
|
>
|
|
<CheckboxIndicator
|
|
data-slot="checkbox-indicator"
|
|
class="flex items-center justify-center text-current transition-none"
|
|
>
|
|
<slot>
|
|
<Check class="size-3.5" />
|
|
</slot>
|
|
</CheckboxIndicator>
|
|
</CheckboxRoot>
|
|
</template>
|