hplx-react-elements-dev 1.1.44 → 1.1.46
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/esm/types.d.ts
CHANGED
|
@@ -488,4 +488,11 @@ export interface AlertProps {
|
|
|
488
488
|
showCloseIcon?: boolean;
|
|
489
489
|
fullWidth?: boolean;
|
|
490
490
|
}
|
|
491
|
+
export interface NotificationProps {
|
|
492
|
+
icon?: string;
|
|
493
|
+
showCloseIcon?: boolean;
|
|
494
|
+
className?: string;
|
|
495
|
+
children?: ReactNode;
|
|
496
|
+
handleCloseClick?: () => void;
|
|
497
|
+
}
|
|
491
498
|
export {};
|