UNPKG

@papernote/ui

Version:

A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive

11 lines 430 B
export interface LoadingOverlayProps { show: boolean; message?: string; position?: 'top-right' | 'top-left' | 'center'; className?: string; } /** * Subtle loading overlay that doesn't interfere with existing content */ export default function LoadingOverlay({ show, message, position, className }: LoadingOverlayProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=LoadingOverlay.d.ts.map