import type { Meta } from "@storybook/react"; import { lightTheme } from "../../../react/core/design-system/index.js"; import { BridgeWidget, type BridgeWidgetProps, } from "../../../react/web/ui/Bridge/bridge-widget/bridge-widget.js"; import { createWallet } from "../../../wallets/create-wallet.js"; import { storyClient } from "../../utils.js"; const meta: Meta = { title: "Bridge/BridgeWidget", }; export default meta; export function BasicUsage() { return ( ); } export function CurrencySet() { return ( ); } export function NoThirdwebBranding() { return ( ); } export function CustomTheme() { return (
); } export function CustomWallets() { return ( ); } function Variant(props: BridgeWidgetProps) { return (
); }