UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

7 lines (6 loc) 242 B
import { StepAction } from '@zag-js/tour'; import { ReactNode } from 'react'; export interface TourActionsProps { children: (actions: StepAction[]) => ReactNode; } export declare const TourActions: (props: TourActionsProps) => ReactNode;