Skip to content

Commit

Permalink
fix: replace hash icon to arrow down for filter select (#1825)
Browse files Browse the repository at this point in the history
Co-authored-by: BekahHW <[email protected]>
Co-authored-by: Nick Taylor <[email protected]>
  • Loading branch information
3 people authored Oct 16, 2023
1 parent 99dd12f commit ee13255
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/molecules/FilterCardSelect/filter-card-select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import Image from "next/image";
import { BsFillCheckCircleFill } from "react-icons/bs";

import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "components/atoms/Select/select";
import hashIcon from "../../../img/icons/hash.svg";
import orgIcon from "../../../img/icons/org.svg";
import personIcon from "../../../img/icons/person.svg";
import repoIcon from "../../../img/icons/repo.svg";
import chevronDownIcon from "../../../img/chevron-down.svg";

interface FilterCardSelectProps {
selected: string;
Expand All @@ -18,7 +18,7 @@ interface FilterCardSelectProps {

const icons = {
topic: {
src: hashIcon.src,
src: chevronDownIcon.src,
alt: "Topic",
},
org: {
Expand Down Expand Up @@ -46,9 +46,9 @@ const FilterCardSelect: React.FC<FilterCardSelectProps> = ({
<SelectTrigger
selectIcon={
<Image
className="ml-3 "
width={13}
height={13}
className="ml-2"
width={20}
height={20}
alt={icons[icon] ? icons[icon].alt : "Icons"}
src={icons[icon] ? icons[icon].src : icons.topic.src}
/>
Expand Down

0 comments on commit ee13255

Please sign in to comment.