payloadcms_otp_plugin
Version:
A comprehensive One-Time Password (OTP) authentication plugin for Payload CMS that enables secure passwordless authentication via SMS and email
11 lines (10 loc) • 349 B
TypeScript
import React from 'react';
import './otp-view.scss';
interface OTPViewProps {
initialTimer?: number;
className?: string;
otpLength?: number;
expiredTime?: number;
}
declare function OtpView({ initialTimer, className, otpLength: propOtpLength, expiredTime: propExpiredTime }: OTPViewProps): React.JSX.Element;
export default OtpView;