UNPKG

antd-v5

Version:

An enterprise-class UI design language and React components implementation

13 lines (12 loc) 392 B
import type { ReactNode } from 'react'; import React from 'react'; import type { TourStepProps } from './interface'; interface TourPanelProps { stepProps: TourStepProps; current: number; type: TourStepProps['type']; indicatorsRender?: TourStepProps['indicatorsRender']; closeIcon?: ReactNode; } declare const TourPanel: React.FC<TourPanelProps>; export default TourPanel;