frontPanel/src/ui_kit/CustomTextField.tsx

36 lines
834 B
TypeScript
Raw Normal View History

2023-04-15 09:10:59 +00:00
import { FormControl, TextField, useTheme } from "@mui/material";
interface CustomTextFieldProps {
2023-04-15 09:10:59 +00:00
placeholder: string;
text: string;
}
export default function CustomTextField({ placeholder, text }: CustomTextFieldProps) {
2023-04-15 09:10:59 +00:00
const theme = useTheme();
2023-04-15 09:10:59 +00:00
return (
<FormControl fullWidth variant="standard" sx={{ p: 0 }}>
<TextField
// value={text}
fullWidth
placeholder={placeholder}
sx={{
"& .MuiInputBase-root": {
backgroundColor: theme.palette.background.default,
height: "48px",
borderRadius: "10px",
},
}}
inputProps={{
sx: {
borderRadius: "10px",
fontSize: "18px",
lineHeight: "21px",
py: 0,
},
}}
/>
</FormControl>
);
}