import { ChevronDownIcon } from "@radix-ui/react-icons"; import type { BridgeChain } from "../../../../../bridge/types/Chain.js"; import type { ThirdwebClient } from "../../../../../client/client.js"; import { fontSize, iconSize, radius, spacing, } from "../../../../core/design-system/index.js"; import { Button } from "../../components/buttons.js"; import { Img } from "../../components/Img.js"; import { cleanedChainName } from "./utils.js"; export function SelectChainButton(props: { selectedChain: BridgeChain; client: ThirdwebClient; onClick: () => void; }) { return ( ); }