sag_components 2.0.0-beta192 → 2.0.0-beta194

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
@@ -1598,12 +1598,17 @@ declare function MessageBox({ isOpen, isDisabled, onClose, onConfirm, title, pri
1598
1598
  children: any;
1599
1599
  }): react_jsx_runtime.JSX.Element;
1600
1600
 
1601
- declare function ToasterMessageBox({ color, messageText, linkText, duration, width, onLinkClick, onClose }: {
1601
+ declare function ToasterMessageBox({ color, messageText, linkText, duration, width, icon, onLinkClick, onClose }: {
1602
1602
  color?: string;
1603
1603
  messageText?: string;
1604
1604
  linkText?: string;
1605
1605
  duration?: number;
1606
1606
  width?: string;
1607
+ icon?: ({ width, height, color, }: {
1608
+ width?: string;
1609
+ height?: string;
1610
+ color?: string;
1611
+ }) => react_jsx_runtime.JSX.Element;
1607
1612
  onLinkClick?: () => void;
1608
1613
  onClose?: () => void;
1609
1614
  }): react_jsx_runtime.JSX.Element;