mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
13 lines
435 B
TypeScript
13 lines
435 B
TypeScript
import * as React from 'react';
|
|
import RcImage, { ImageProps } from 'rc-image';
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
const Image: React.FC<ImageProps> = ({ prefixCls: customizePrefixCls, ...otherProps }) => {
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
const prefixCls = getPrefixCls('image', customizePrefixCls);
|
|
|
|
return <RcImage prefixCls={prefixCls} {...otherProps} />;
|
|
};
|
|
|
|
export default Image;
|