@51yzone/pc-components
Version:
An enterprise-class UI design language and React-based implementation
17 lines (16 loc) • 399 B
TypeScript
/**
* 关键字:图片验证码
* 新增人:徐友万
*/
import React from 'react';
import { SizeType } from 'antd/lib/config-provider/SizeContext';
interface IProps {
value: string;
codeImgUrl: string;
size?: SizeType;
prefixIconVisible?: boolean;
onChange: (value: any) => void;
prefixCls?: string;
}
declare const CodeImg: React.FC<IProps>;
export default CodeImg;