import type { ThirdwebClient } from "../../../../client/client.js"; import { iconSize, spacing } from "../../../core/design-system/index.js"; import { Text } from "../../ui/components/text.js"; import { LastUsedBadge } from "../components/badge.js"; import { Container } from "../components/basic.js"; import { Button } from "../components/buttons.js"; import type { IconFC } from "./icons/types.js"; type WalletTypeRowProps = { client: ThirdwebClient; onClick: () => void; title: string; icon: IconFC; disabled?: boolean; className?: string; lastUsedBadge: boolean; }; export function WalletTypeRowButton(props: WalletTypeRowProps) { return ( ); }