setIsCurrencyDropdownOpen(!isCurrencyDropdownOpen)}
+ onClick={() => setIsCurrencySheetOpen(true)}
className={[
"flex h-[54px] w-full items-center justify-between rounded-[16px] border bg-white px-3.5 text-start transition-all cursor-pointer outline-none",
- isCurrencyDropdownOpen
+ isCurrencySheetOpen
? "border-[#6F6F6F] ring-1 ring-[#6F6F6F]"
: "border-[#D0D5DD] hover:border-[#98A2B3]",
].join(" ")}
@@ -253,7 +231,7 @@ export default function QuestionNumber({
aria-label="Dropdown chevron"
className={[
"shrink-0 transition-transform duration-200 text-[#344054] ml-1",
- isCurrencyDropdownOpen ? "rotate-180" : "",
+ isCurrencySheetOpen ? "rotate-180" : "",
].join(" ")}
>
-
- {isCurrencyDropdownOpen && (
-
- {/* Search bar */}
-
-
-
setCurrencySearchQuery(e.target.value)}
- placeholder={locale === "fa" ? "جستجو..." : "Search..."}
- className="flex-1 min-w-0 bg-transparent text-[13px] font-medium text-[#181818] outline-none placeholder:text-[#98A2B3]"
- />
- {currencySearchQuery ? (
-
- ) : null}
-
-
- {/* Options list */}
-
- {filteredCurrencies.length > 0 ? (
- filteredCurrencies.map((c) => {
- const isSelected = c.code === currencyCode;
- return (
-
- );
- })
- ) : (
-
- {locale === "fa"
- ? "ارزی یافت نشد"
- : "No currencies found"}
-
- )}
-
-
- )}