vrfi-design-system 1.1.41 → 1.1.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -734,6 +734,15 @@ export declare interface NoRecordsProps {
734
734
  declare const Notification_2: ({ message, description, type, }: INotification) => unknown;
735
735
  export { Notification_2 as Notification }
736
736
 
737
+ export declare const NotificationCard: (props: NotificationCardProps) => default_2.JSX.Element;
738
+
739
+ export declare interface NotificationCardProps extends HTMLAttributes<HTMLDivElement> {
740
+ title: string;
741
+ description: string;
742
+ createdAt: string;
743
+ avatarNames: string[];
744
+ }
745
+
737
746
  export { NotificationTypes }
738
747
 
739
748
  export declare const Offline: ({ children, }: PropsWithChildren<OfflineProps>) => default_2.JSX.Element;