rharuow-ds
Version:
Modern React Design System with 20 components and auto color system. Define only 2 colors (primary/secondary) and get automatic variations (hover, light, dark) with proper text contrast (WCAG AA). Includes: Table, Card, Button, Chip, Pagination, Input, Te
14 lines (13 loc) • 451 B
TypeScript
import React from "react";
export interface BottomSheetProps extends React.HTMLAttributes<HTMLDivElement> {
open: boolean;
onClose: () => void;
size?: "sm" | "md" | "lg" | "full" | string;
closeOnOverlayClick?: boolean;
closeOnEscape?: boolean;
lockBodyScroll?: boolean;
closeOnDragDown?: boolean;
dragCloseThreshold?: number;
}
export declare const BottomSheet: React.FC<BottomSheetProps>;
export default BottomSheet;