// ** React Imports import { ChangeEvent } from 'react' // ** MUI Imports import Box from '@mui/material/Box' import TextField from '@mui/material/TextField' import IconButton from '@mui/material/IconButton' import { GridToolbarExport } from '@mui/x-data-grid' // ** Icon Imports import Icon from 'src/@core/components/icon' interface Props { value: string clearSearch: () => void onChange: (e: ChangeEvent) => void } const ServerSideToolbar = (props: Props) => { return ( theme.spacing(2, 5, 4, 5) }} > ), endAdornment: ( ) }} sx={{ width: { xs: 1, sm: 'auto' }, '& .MuiInputBase-root > svg': { mr: 2 } }} /> ) } export default ServerSideToolbar