@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
10 lines (9 loc) • 462 B
text/typescript
import { ReactNode } from 'react';
import { UsePresenceProps } from '../presence';
import { UseFloatingPanelProps } from './use-floating-panel';
export interface FloatingPanelRootBaseProps extends UseFloatingPanelProps, UsePresenceProps {
}
export interface FloatingPanelRootProps extends FloatingPanelRootBaseProps {
children?: ReactNode;
}
export declare const FloatingPanelRoot: (props: FloatingPanelRootProps) => import("react/jsx-runtime").JSX.Element;