import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; export default function LabeledInput({ type, label, placeholder, value, name, autocomplete, error, ...rest }: { type: 'text' | 'email' | 'password'; label: string; placeholder?: string; value?: string; name?: string; autocomplete?: string; error?: string; } & React.InputHTMLAttributes) { return (
{error &&

{error}

}
); }