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