Files
plaidware-wms-web/src/components/SearchKeyword/index.js
Hiren Padsala b867a25974 fixed/wms-13 - Component update with code (#43)
* fixed/wms-13 - Component update with code
* Update: Linted with comment
2022-02-03 12:58:42 +05:30

27 lines
611 B
JavaScript

import { TextField, InputAdornment, SvgIcon } from '@mui/material';
import Search from 'assets/images/SearchIcon';
// Note: please add props when integrating
function SearchKeyword() {
return (
<>
<TextField
fullWidth
InputProps={{
endAdornment: (
<InputAdornment position="end">
<SvgIcon fontSize="small" color="action">
<Search />
</SvgIcon>
</InputAdornment>
)
}}
placeholder="Search Keyword"
variant="outlined"
/>
</>
);
}
export default SearchKeyword;