import style from './labeled-input.module.css'; export default function LabeledInput({ type, width, label, placeholder, value, }: { type: 'text' | 'email' | 'password'; width?: number; label?: string; placeholder?: string; value?: string; }) { const randomId = Math.random().toString(36).substring(2, 15); if (!label) { return (