feat(type): export ImageProps interface (#27846)

This commit is contained in:
Dave 2020-11-18 13:48:30 +08:00 committed by GitHub
parent c04e51048d
commit 4aa06ca28b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,4 +9,6 @@ const Image: React.FC<ImageProps> = ({ prefixCls: customizePrefixCls, ...otherPr
return <RcImage prefixCls={prefixCls} {...otherProps} />;
};
export { ImageProps };
export default Image;