UNPKG

@51yzone/pc-components

Version:

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

21 lines (20 loc) 560 B
/** * 关键字:登录-手机号 * 新增人:徐友万 * 完善中 */ import React from 'react'; import { ISchemaFormActions } from '@formily/antd'; import { SizeType } from 'antd/lib/config-provider/SizeContext'; import { IGetCode } from './login'; interface IProps { actions: ISchemaFormActions; initCountDown?: number; prefixIconVisible?: boolean; labelVisible?: boolean; size?: SizeType; getCode?: (params: IGetCode) => any; prefixCls?: string; } declare const MobileLogin: React.FC<IProps>; export default MobileLogin;