react-draggable-bottom-sheet
Version:
A React component with the bottom sheet experience we have for native mobile applications, but for web ✨
14 lines (13 loc) • 383 B
TypeScript
import React from "react";
interface DragIndicatorProps {
className?: {
wrap?: string;
indicator?: string;
};
style?: {
wrap?: React.CSSProperties;
indicator?: React.CSSProperties;
};
}
declare const _default: React.MemoExoticComponent<({ className, style, }: DragIndicatorProps) => JSX.Element>;
export default _default;