import { TextField, useTheme } from "@mui/material"; import { HTMLInputTypeAttribute, ChangeEvent } from "react"; export function CustomTextField({ id, label, value, type, setValue }: { id: string; label: string; value: number | string | null; type?: HTMLInputTypeAttribute; setValue: (e: ChangeEvent) => void; }) { const theme = useTheme(); return ( ); }