react-draggable-bottom-sheet
Version:
A React component with the bottom sheet experience we have for native mobile applications, but for web ✨
10 lines (9 loc) • 371 B
TypeScript
import React from "react";
interface BackdropProps {
style?: React.CSSProperties;
onClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
className?: string;
isActive: boolean;
}
declare const _default: React.MemoExoticComponent<({ onClick, style, className, isActive, }: BackdropProps) => JSX.Element>;
export default _default;