fixed/wms-13 - Component update with code (#43)

* fixed/wms-13 - Component update with code
* Update: Linted with comment
This commit is contained in:
Hiren Padsala
2022-02-03 12:58:42 +05:30
committed by GitHub
parent 48b3a25dd3
commit b867a25974

View File

@@ -0,0 +1,26 @@
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;