@nipe-solutions/react-spring-bottom-sheet
Version:
Accessible and composable bottom sheets for React
8 lines (7 loc) • 322 B
TypeScript
import type { HTMLAttributes } from 'react';
export type SheetBackdropProps = HTMLAttributes<HTMLDivElement> & {
asChild?: boolean;
};
export declare const Backdrop: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
asChild?: boolean;
} & import("react").RefAttributes<HTMLDivElement>>;