import { DetailedHTMLProps, FC, InputHTMLAttributes, ReactElement } from "react" type TForgotStepProps = Omit< DetailedHTMLProps, HTMLInputElement>, 'size' | 'type' > & { step: number }; export const ForgotStep: FC = ({ step = 1, ...rest }): ReactElement => { return (

Masukkan Email

Verifikasi OTP

Summon Password ^^

) }