UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 417 B
import { PropTypes } from '@zag-js/react'; import { Optional } from '../../types'; import * as bottomSheet from '@zag-js/bottom-sheet'; export interface UseBottomSheetProps extends Optional<Omit<bottomSheet.Props, 'dir' | 'getRootNode'>, 'id'> { } export interface UseBottomSheetReturn extends bottomSheet.Api<PropTypes> { } export declare const useBottomSheet: (props?: UseBottomSheetProps) => UseBottomSheetReturn;