UNPKG

@ark-ui/react

Version:

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

7 lines (6 loc) 272 B
import { ReactNode } from 'react'; import { UsePopoverContext } from './use-popover-context'; export interface PopoverContextProps { children: (context: UsePopoverContext) => ReactNode; } export declare const PopoverContext: (props: PopoverContextProps) => ReactNode;