'use client'; import * as React from 'react'; import { cn } from '@/lib/utils'; import { Textarea } from '@/components/ui/textarea'; export interface TextInputProps { value: string; onChange: (value: string) => void; placeholder?: string; className?: string; } export function TextInput({ value, onChange, placeholder, className }: TextInputProps) { return (