import styles from './Input.module.css'; interface InputProps extends React.InputHTMLAttributes { label?: string; error?: string; } export function Input({ label, error, className = '', ...rest }: InputProps) { return (
{label && } {error && {error}}
); }