UNPKG

@51yzone/pc-components

Version:

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

19 lines (18 loc) 453 B
/** * 关键字:登录-账号 * 新增人:徐友万 * 完善中 */ import React from 'react'; import { SizeType } from 'antd/lib/config-provider/SizeContext'; interface IProps { codeImgUrl?: string; codeImgVisible: boolean; prefixIconVisible?: boolean; labelVisible?: boolean; size?: SizeType; visibilityToggle?: boolean; prefixCls?: string; } declare const AccoutLogin: React.FC<IProps>; export default AccoutLogin;