{
name?: string;
color?: string;
backgroundColor?: string;
}
export default function Input({
name,
color,
backgroundColor,
...rest
}: InputProps) {
const { inputValue } = useContext(Context);
return (
{
event.target.value;
}}
disabled
autoComplete="off"
value={inputValue}
{...rest}
/>
);
}