update chevron direction

This commit is contained in:
StephDietz 2023-07-10 15:18:33 -05:00
parent dec1722b10
commit d83962fa60

View File

@ -3,7 +3,7 @@
import { usePathname, useSearchParams } from 'next/navigation';
import { useEffect, useRef, useState } from 'react';
import { ChevronRightIcon } from '@heroicons/react/24/outline';
import { ChevronDownIcon } from '@heroicons/react/24/outline';
import type { ListItem } from '.';
import { FilterItem } from './item';
@ -45,7 +45,7 @@ export default function FilterItemDropdown({ list }: { list: ListItem[] }) {
className="flex w-full items-center justify-between rounded border border-black/30 px-4 py-2 text-sm dark:border-white/30"
>
<div>{active}</div>
<ChevronRightIcon className="h-4" />
<ChevronDownIcon className="h-4" />
</div>
{openSelect && (
<div