// ** React Imports import { forwardRef } from 'react' // ** MUI Imports import TextField from '@mui/material/TextField' interface PickerProps { label?: string readOnly?: boolean } const PickersComponent = forwardRef(({ ...props }: PickerProps, ref) => { // ** Props const { label, readOnly } = props return ( ) }) PickersComponent.displayName = 'PickersComponent'; export default PickersComponent