import { createThirdwebClient } from "../client/client.js"; import { CustomThemeProvider, useCustomTheme, } from "../react/core/design-system/CustomThemeProvider.js"; import { radius } from "../react/native/design-system/index.js"; const clientId = process.env.STORYBOOK_CLIENT_ID; if (!clientId) { throw new Error("STORYBOOK_CLIENT_ID env is not configured"); } export const storyClient = createThirdwebClient({ clientId: clientId, }); export const ModalThemeWrapper = (props: { children: React.ReactNode }) => { return (