2025-12-09 22:12:23 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
class?: HTMLAttributes["class"];
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-12-09 22:32:22 +01:00
|
|
|
<Textarea
|
|
|
|
|
data-slot="input-group-control"
|
|
|
|
|
:class="cn(
|
2025-12-09 22:12:23 +01:00
|
|
|
'flex-1 resize-none rounded-none border-0 bg-transparent py-3 shadow-none 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>
|