react-frontend-common-components 0.0.30 → 0.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -202,7 +202,7 @@ interface AppOtpFieldProps {
202
202
  onResendOtp?: () => void;
203
203
  setResendTimeout: (timeout: number) => void;
204
204
  className?: string;
205
- resendTxt?: string;
205
+ resendTxt?: React$1.ReactNode;
206
206
  resendTime: string;
207
207
  }
208
208
  declare const AppOtpField: ({ otp, onChange, numInputs, otpError, resendTimeout, onResendOtp, setResendTimeout, className, resendTxt, resendTime, }: AppOtpFieldProps) => react_jsx_runtime.JSX.Element;