UNPKG

@papernote/ui

Version:

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

13 lines 460 B
interface NotificationBarProps { notifications: Array<{ id: string; type: 'warning' | 'error' | 'info' | 'success'; title: string; message: string; dismissible?: boolean; }>; onDismiss?: (id: string) => void; } export default function NotificationBar({ notifications, onDismiss }: NotificationBarProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=NotificationBar.d.ts.map