From 791e7c223a0bc9dd66eb4903453f175087b3f69c Mon Sep 17 00:00:00 2001 From: Ehsan Date: Tue, 25 Jun 2024 11:38:05 +0330 Subject: [PATCH] design box filter and search --- components/doctors/search/index.js | 33 +++++++++++++++++------------- components/icons/ArrowBottomD.js | 9 ++++++++ components/icons/SearchD.js | 10 +++++++++ components/icons/SettingD.js | 16 +++++++++++++++ 4 files changed, 54 insertions(+), 14 deletions(-) create mode 100644 components/icons/ArrowBottomD.js create mode 100644 components/icons/SearchD.js create mode 100644 components/icons/SettingD.js diff --git a/components/doctors/search/index.js b/components/doctors/search/index.js index 9a68b55..4850ade 100644 --- a/components/doctors/search/index.js +++ b/components/doctors/search/index.js @@ -1,43 +1,48 @@ import Search from "@/components/icons/Search"; -import Location from "@/components/icons/Location"; import { Button, ButtonGroup, TextField } from "@mui/material"; +import SettingD from "@/components/icons/SettingD"; +import ArrowBottomD from "@/components/icons/ArrowBottomD"; +import SearchD from "@/components/icons/SearchD"; function SearchBar() { return ( - - - ) diff --git a/components/icons/ArrowBottomD.js b/components/icons/ArrowBottomD.js new file mode 100644 index 0000000..5874885 --- /dev/null +++ b/components/icons/ArrowBottomD.js @@ -0,0 +1,9 @@ +function ArrowBottomD() { + return ( + + + + ) +} + +export default ArrowBottomD \ No newline at end of file diff --git a/components/icons/SearchD.js b/components/icons/SearchD.js new file mode 100644 index 0000000..f1a70e9 --- /dev/null +++ b/components/icons/SearchD.js @@ -0,0 +1,10 @@ +function SearchD() { + return ( + + + + + ) +} + +export default SearchD \ No newline at end of file diff --git a/components/icons/SettingD.js b/components/icons/SettingD.js new file mode 100644 index 0000000..5fc5187 --- /dev/null +++ b/components/icons/SettingD.js @@ -0,0 +1,16 @@ +function SettingD() { + return ( + + + + + + + + + + + ) +} + +export default SettingD \ No newline at end of file