UNPKG

@ark-ui/react

Version:

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

7 lines (6 loc) 309 B
import { ReactNode } from 'react'; import { UseFloatingPanelContext } from './use-floating-panel-context'; export interface FloatingPanelContextProps { children: (context: UseFloatingPanelContext) => ReactNode; } export declare const FloatingPanelContext: (props: FloatingPanelContextProps) => ReactNode;