mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
e3ee4e87aa
* feat: 🎉 Image component
* fix color
* fix style naming and sort api doc order
* remove onPreviewClose doc
* use animation-duration var
* use box and modal-mask mixins
* use box and modal-mask mixins
* improve style
* improve fallback demo src
* add cover
* improve demo
* update demo snapshots
* upgrade rc-image, naming Random -> Reload
* extract modal mask common style, and improve demo
* update snapshots
* fix less var conflict
* upgrade rc-image, adjust maxSize with dark.min.css, improve placeholder demo desc
13 lines
477 B
TypeScript
13 lines
477 B
TypeScript
import * as React from 'react';
|
|
import RcImage, { ImageProps } from 'rc-image';
|
|
import { ConfigConsumerProps, ConfigContext } from '../config-provider';
|
|
|
|
const Image: React.FC<ImageProps> = ({ prefixCls: customizePrefixCls, ...otherProps }) => {
|
|
const { getPrefixCls }: ConfigConsumerProps = React.useContext(ConfigContext);
|
|
const prefixCls = getPrefixCls('image', customizePrefixCls);
|
|
|
|
return <RcImage prefixCls={prefixCls} {...otherProps} />;
|
|
};
|
|
|
|
export default Image;
|