mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-01 13:10:44 -03:00
24 lines
542 B
Svelte
24 lines
542 B
Svelte
<script lang="ts">
|
|
import { cn } from "$lib/utils.js";
|
|
import { Textarea } from "$lib/components/ui/textarea/index.js";
|
|
import type { ComponentProps } from "svelte";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
value = $bindable(),
|
|
class: className,
|
|
...props
|
|
}: ComponentProps<typeof Textarea> = $props();
|
|
</script>
|
|
|
|
<Textarea
|
|
bind:ref
|
|
data-slot="input-group-control"
|
|
class={cn(
|
|
"flex-1 resize-none rounded-none border-0 bg-transparent py-3 shadow-none focus-visible:ring-0 dark:bg-transparent",
|
|
className
|
|
)}
|
|
bind:value
|
|
{...props}
|
|
/>
|