import { Button } from "@/components/ui/button"; import { ArrowDownIcon } from "@heroicons/react/24/solid"; import clsx from "clsx"; import { Dispatch, SetStateAction } from "react"; type Props = { isLeaderboardExpanded: boolean; setIsLeaderboardExpanded: Dispatch>; }; export default function LeaderboardButton({ isLeaderboardExpanded, setIsLeaderboardExpanded }: Props) { return (
); }