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