Read the docs
import { DepositModal } from "@rhinestone/deposit-modal";
import "@rhinestone/deposit-modal/styles.css";

<DepositModal
  isOpen={isOpen}
  onClose={() => setIsOpen(false)}
  targetChain={8453}
  targetToken="0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
  dappAddress="0x0197d7FaFCA118Bc91f6854B9A2ceea94E676585"
  theme={{
    mode: "light",
    radius: "md",
  }}
  uiConfig={{
    showHistoryButton: true,
    maxDepositUsd: 100,
    feeSponsored: true,
  }}
  enableFiatOnramp={true}
  enableExchangeConnect={true}
  onLifecycle={(event) => console.log(event.type, event)}
/>