import { $, component$, type PropsOf } from '@builder.io/qwik'; import { cn } from '@qwik-ui/utils'; type TextareaProps = PropsOf<'textarea'> & { error?: string; }; export const Textarea = component$( ({ id, name, error, ['bind:value']: bindSig, value, onInput$, ...props }) => { const textareaId = id || name; return ( <>