Files
omni-tools/src/components/options/TextFieldWithDesc.tsx
Ibrahima G. Coulibaly da93452bd3 chore: formik updateField
2024-06-27 21:25:11 +01:00

37 lines
808 B
TypeScript

import { Box, TextField, TextFieldProps } from '@mui/material';
import Typography from '@mui/material/Typography';
import React from 'react';
type OwnProps = {
description?: string;
value: string | number;
onOwnChange: (value: string) => void;
placeholder?: string;
};
const TextFieldWithDesc = ({
description,
value,
onOwnChange,
placeholder,
...props
}: TextFieldProps & OwnProps) => {
return (
<Box>
<TextField
placeholder={placeholder}
sx={{ backgroundColor: 'white' }}
value={value}
onChange={(event) => onOwnChange(event.target.value)}
{...props}
/>
{description && (
<Typography fontSize={12} mt={1}>
{description}
</Typography>
)}
</Box>
);
};
export default TextFieldWithDesc;