@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
16 lines • 654 B
TypeScript
import { ReactNode } from 'react';
export interface BottomSheetProps {
isOpen: boolean;
onClose: () => void;
children: ReactNode;
title?: string;
height?: 'sm' | 'md' | 'lg' | 'full' | string;
showHandle?: boolean;
showCloseButton?: boolean;
closeOnOverlayClick?: boolean;
closeOnEscape?: boolean;
snapPoints?: number[];
className?: string;
}
export default function BottomSheet({ isOpen, onClose, children, title, height, showHandle, showCloseButton, closeOnOverlayClick, closeOnEscape, className, }: BottomSheetProps): import("react/jsx-runtime").JSX.Element | null;
//# sourceMappingURL=BottomSheet.d.ts.map