mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
17 lines
600 B
Vue
17 lines
600 B
Vue
<script setup lang="ts">
|
|
import { cn } from "@/lib/utils";
|
|
import { NumberFieldInput } from "reka-ui";
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<NumberFieldInput
|
|
data-slot="input"
|
|
:class="cn('flex h-9 w-full rounded-md border border-input bg-transparent py-1 text-sm text-center shadow-sm transition-colors placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50', props.class)"
|
|
/>
|
|
</template>
|