import type { CSSProperties, ChangeEvent } from 'react'; interface InputProps { name: string; style?: CSSProperties; value: string; readOnly?: boolean; onChange?: (event: ChangeEvent) => void; list?: string; } export default function Input(props: InputProps) { const { style, ...otherProps } = props; return ( ); }