UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

13 lines (12 loc) 306 B
import React from "react"; interface ActivityFeedProps { notifications: { id: string; message: string; timeAgo: string; read?: boolean; }[]; onNotificationClick?: (id: string) => void; } export declare const ActivityFeed: React.FC<ActivityFeedProps>; export {};