From b867a25974e984e95b5e373d7cb4390aa6be245e Mon Sep 17 00:00:00 2001 From: Hiren Padsala <38140488+hiren1212@users.noreply.github.com> Date: Thu, 3 Feb 2022 12:58:42 +0530 Subject: [PATCH] fixed/wms-13 - Component update with code (#43) * fixed/wms-13 - Component update with code * Update: Linted with comment --- src/components/SearchKeyword/index.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/components/SearchKeyword/index.js diff --git a/src/components/SearchKeyword/index.js b/src/components/SearchKeyword/index.js new file mode 100644 index 0000000..802f5a3 --- /dev/null +++ b/src/components/SearchKeyword/index.js @@ -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 ( + <> + + + + + + ) + }} + placeholder="Search Keyword" + variant="outlined" + /> + + ); +} + +export default SearchKeyword;