import classNames from 'classnames'; import * as React from 'react'; import { ConfigContext } from '../config-provider'; import { RawPurePanel as PopoverRawPurePanel } from '../popover/PurePanel'; import type { TourStepProps } from './interface'; import TourPanel from './panelRender'; import useStyle from './style'; export interface PurePanelProps extends TourStepProps {} const PurePanel: React.FC = (props) => { const { prefixCls: customizePrefixCls, current = 0, total = 6, className, style, type, ...restProps } = props; const { getPrefixCls } = React.useContext(ConfigContext); const prefixCls = getPrefixCls('tour', customizePrefixCls); const [wrapSSR, hashId] = useStyle(prefixCls); return wrapSSR( , ); }; export default PurePanel;