mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
18c6d6fedb
* feat: Image add PreviewGroup component to support multiple images preview * demo and PreviewGroup type * add demo snapshot
16 lines
549 B
TypeScript
16 lines
549 B
TypeScript
import * as React from 'react';
|
|
import RcImage from 'rc-image';
|
|
import { GroupConsumerValue } from 'rc-image/lib/PreviewGroup';
|
|
import { ConfigContext } from '../config-provider';
|
|
|
|
const InternalPreviewGroup: React.FC<GroupConsumerValue> = ({
|
|
previewPrefixCls: customizePrefixCls,
|
|
...props
|
|
}) => {
|
|
const { getPrefixCls } = React.useContext(ConfigContext);
|
|
const prefixCls = getPrefixCls('image-preview', customizePrefixCls);
|
|
return <RcImage.PreviewGroup previewPrefixCls={prefixCls} {...props} />;
|
|
};
|
|
|
|
export default InternalPreviewGroup;
|