Wallet config for a Local Wallet
import { ThirdwebProvider, localWallet,} from "@thirdweb-dev/react-native"; <ThirdwebProvider supportedWallets={[localWallet()]}> <YourApp /></ThirdwebProvider>;
function localWallet(): { create: (options: {}) => LocalWallet; id: string; meta: { iconURL: string; name: string };};
let returnType: { create: (options: {}) => LocalWallet; id: string; meta: { iconURL: string; name: string };};
The wallet config to be used by the ThirdwebProvider