UNPKG

@51yzone/pc-components

Version:

An enterprise-class UI design language and React-based implementation

23 lines (22 loc) 639 B
/** * 关键字:登录-忘记密码 * 新增人:徐友万 * 完善中 */ import React from 'react'; import { SizeType } from 'antd/lib/config-provider/SizeContext'; import { IGetCode, IPwdChange, IVerifyCode } from './login'; interface IProps { visible: boolean; initCountDown?: number; prefixIconVisible?: boolean; labelVisible?: boolean; size?: SizeType; getCode?: (params: IGetCode) => any; verifyCode?: (params: IVerifyCode) => any; pwdChange?: (params: IPwdChange) => any; onCancel: () => void; prefixCls?: string; } declare const ForgetPwd: React.FC<IProps>; export default ForgetPwd;