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