interface TextInputProps extends React.InputHTMLAttributes { // styled input } export function TextInput({ className = "", ...props }: TextInputProps) { return ( ); }