import type { Meta } from "@storybook/react-vite"; import { base } from "../chains/chain-definitions/base.js"; import { ethereum } from "../chains/chain-definitions/ethereum.js"; import { defineChain } from "../chains/utils.js"; import { BuyWidget, type BuyWidgetProps, } from "../react/web/ui/Bridge/BuyWidget.js"; import { createWallet } from "../wallets/create-wallet.js"; import { storyClient } from "./utils.js"; const meta = { title: "Bridge/Buy/BuyWidget", } satisfies Meta; export default meta; export function Basic() { return ; } export function PayAnotherWallet() { return ( ); } export function BuyBaseNativeToken() { return ; } export function JPYCurrency() { return ( ); } export function NoThirdwebBranding() { return ( ); } export function BuyBaseUSDC() { return ( ); } export function TokenNotEditable() { return ( ); } export function AmountNotEditable() { return ( ); } export function TokenAndAmountNotEditable() { return ( ); } export function CustomTitleDescriptionAndButtonLabel() { return ( ); } export function HideTitle() { return ( ); } export function UnsupportedChain() { return ( ); } export function UnsupportedToken() { return ( ); } export function OnlyCardSupported() { return ( ); } export function OnlyCryptoSupported() { return ( ); } export function LargeAmount() { return ( ); } export function NoAutoConnect() { return ( ); } export function CustomWallets() { return ( ); } function Variant(props: BuyWidgetProps) { return (
); }