import OtpInput from 'react18-input-otp';
import { AppflowyLogo } from '../../_shared/svg/AppflowyLogo';
import { useConfirmAccount } from './ConfirmAccount.hooks';
import { Button } from '../../_shared/Button';
export const ConfirmAccount = () => {
const { handleChange, otpValues, onConfirmClick } = useConfirmAccount();
return (
Enter the code sent to your phone
Confirm that this phone belongs to you.
Code sent to +86 10 6764 5489
}
inputStyle='border border-gray-300 rounded-lg h-full !w-14 font-semibold focus:ring-2 focus:ring-fill-hover focus:ring-opacity-50'
containerStyle='h-full w-full flex justify-around gap-2 '
/>
Send code again
);
};