import { FormControl, HStack, FormLabel, Tooltip, Box, Text, Input, } from "@chakra-ui/react"; import { InfoIcon } from "@chakra-ui/icons"; interface URIInputParams { uri: string; setUri: (value: string) => void; bg: string; isConnected: boolean; } function URIInput({ uri, setUri, bg, isConnected }: URIInputParams) { return ( WalletConnect URI Visit any dApp and select WalletConnect. Click "Copy to Clipboard" beneath the QR code, and paste it here. } hasArrow placement="top" > setUri(e.target.value)} bg={bg} isDisabled={isConnected} /> ); } export default URIInput;