ant-design/components/image/index.tsx
2020-10-12 10:59:09 +08:00

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;