2025-12-09 22:12:23 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
|
import { Input } from "@/components/ui/input";
|
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
class?: HTMLAttributes["class"];
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-12-09 22:32:22 +01:00
|
|
|
<Input
|
|
|
|
|
data-slot="input-group-control"
|
|
|
|
|
:class="cn(
|
2025-12-09 22:12:23 +01:00
|
|
|
'flex-1 rounded-none border-0 bg-transparent focus-visible:ring-0 focus-visible:ring-transparent ring-offset-transparent dark:bg-transparent',
|
|
|
|
|
props.class,
|
|
|
|
|
)"
|
2025-12-09 22:32:22 +01:00
|
|
|
/>
|
2025-12-09 22:12:23 +01:00
|
|
|
</template>
|