mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
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;
|