Browse Source

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

pull/27857/head
Dave 4 years ago
committed by GitHub
parent
commit
4aa06ca28b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/image/index.tsx

2
components/image/index.tsx

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

Loading…
Cancel
Save