import type { InputHTMLAttributes } from 'react'; import { cn } from '../utils/cn.ts'; type TextInputProps = InputHTMLAttributes; export function TextInput({ className, ...props }: TextInputProps) { return ( ); }