UNPKG

@ark-ui/react

Version:

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

10 lines (9 loc) 417 B
import { ReactNode } from 'react'; import { UsePresenceProps } from '../presence'; import { UseDrawerProps } from './use-drawer'; export interface DrawerRootBaseProps extends UseDrawerProps, UsePresenceProps { } export interface DrawerRootProps extends DrawerRootBaseProps { children?: ReactNode | undefined; } export declare const DrawerRoot: (props: DrawerRootProps) => import("react/jsx-runtime").JSX.Element;