import React from 'react'; interface FilledInputProps { label: string; value: string | number; onChange: (e: React.ChangeEvent) => void; type?: string; icon?: React.ReactNode; autoFocus?: boolean; step?: string; inputMode?: "search" | "text" | "email" | "tel" | "url" | "none" | "numeric" | "decimal"; autocapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters"; } const FilledInput: React.FC = ({ label, value, onChange, type = "number", icon, autoFocus, step, inputMode, autocapitalize }) => (
); export default FilledInput;