import React from 'react'; import Grow from '@mui/material/Grow'; import TextField from '@mui/material/TextField'; import SearchIcon from '@mui/icons-material/Search'; import IconButton from '@mui/material/IconButton'; import ClearIcon from '@mui/icons-material/Clear'; import { makeStyles } from 'tss-react/mui'; const useStyles = makeStyles({ name: 'MUIDataTableSearch' })(theme => ({ main: { display: 'flex', flex: '1 0 auto', alignItems: 'center', }, searchIcon: { color: theme.palette.text.secondary, marginRight: '8px', }, searchText: { flex: '0.8 0', }, clearIcon: { '&:hover': { color: theme.palette.error.main, }, }, })); const TableSearch = ({ options, searchText, onSearch, onHide }) => { const { classes } = useStyles(); const handleTextChange = event => { onSearch(event.target.value); }; const onKeyDown = event => { if (event.key === 'Escape') { onHide(); } }; const clearIconVisibility = options.searchAlwaysOpen ? 'hidden' : 'visible'; return (
); }; export default TableSearch;