Skip to content

Commit

Permalink
Update dropdown icon
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev committed Sep 21, 2023
1 parent 6246030 commit 40deb79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from "react";
import { Accordion, Card } from "react-bootstrap";
import { IoIosArrowDropdown, IoIosArrowDropup } from "react-icons/io";
import { IoIosArrowDown, IoIosArrowUp } from "react-icons/io";
import { BsDiscord } from "react-icons/bs";
import { MdForum, MdHowToVote } from "react-icons/md";
import "./opCommunity.css";
Expand All @@ -23,7 +23,7 @@ export default function OpCommunity() {
onClick={() => setIsOpen(!isOpen)}
style={{ cursor: "pointer" }}
>
{isOpen ? <IoIosArrowDropup /> : <IoIosArrowDropdown />}{" "}
{isOpen ? <IoIosArrowUp /> : <IoIosArrowDown />}{" "}
<b>Optimism Community</b>
</Accordion.Toggle>
<Accordion.Collapse eventKey="0">
Expand Down

0 comments on commit 40deb79

Please sign in to comment.