diff --git a/widget/index.tsx b/widget/index.tsx index f14b1da..8b5ea51 100644 --- a/widget/index.tsx +++ b/widget/index.tsx @@ -5,6 +5,7 @@ import { defaultConfig, SystemConfig, EnvironmentProvider, + chakra, } from "@chakra-ui/react"; import { Address } from "viem"; import { WagmiContext } from "wagmi"; @@ -34,6 +35,8 @@ type WidgetProps = WidgetComponentProps & { const varRoot = ":host"; +const Root = chakra(root.div); + const Widget = ({ apiKey, tokenOut, @@ -123,10 +126,10 @@ const Widget = ({ }, []); return ( - @@ -157,7 +160,7 @@ const Widget = ({ )} - + ); };