diff --git a/packages/kit/src/components/KitProvider/ConnectWalletContent/WaasCodeInputContent.tsx b/packages/kit/src/components/KitProvider/ConnectWalletContent/WaasCodeInputContent.tsx new file mode 100644 index 00000000..8621d8de --- /dev/null +++ b/packages/kit/src/components/KitProvider/ConnectWalletContent/WaasCodeInputContent.tsx @@ -0,0 +1,47 @@ +import { useState } from 'react' +import { + Box, + Button, + Text, + Spinner, +} from '@0xsequence/design-system' +import { PINCodeInput } from './PINCodeInput' + + +export interface WaasCodeInputContentProps { + isLoading: boolean + onVerify: () => {} +} + +export const WaasCodeInputContent = ({ + isLoading, + onVerify +}: WaasCodeInputContentProps) => { + const [waasEmailPinCode, setWaasEmailPinCode] = useState([]) + + + return ( + <> + + + Enter code received in email. + + + + + {isLoading ? ( + + ) : ( +