@ctlyst.id/voila-ui 11.0.8 → 11.0.9

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.mjs CHANGED
@@ -361,7 +361,8 @@ var AccordionTrigger = forwardRef9(({ children, className, description, isNew, a
361
361
  var accordion_trigger_default = AccordionTrigger;
362
362
 
363
363
  // src/components/alert/alert.tsx
364
- import { IconClose, IconError, IconInfo, IconWarning } from "@ctlyst.id/icons";
364
+ import { IconClose, IconError, IconWarning } from "@ctlyst.id/icons";
365
+ import { Info } from "@ctlyst.id/icons/v2";
365
366
  import { theme as theme2 } from "@ctlyst.id/voila-ui-core";
366
367
  import clsx10 from "clsx";
367
368
  import { forwardRef as forwardRef10, useCallback, useEffect, useRef, useState } from "react";
@@ -388,7 +389,7 @@ var Alert = forwardRef10(
388
389
  case "warning":
389
390
  return IconWarning;
390
391
  default:
391
- return IconInfo;
392
+ return Info;
392
393
  }
393
394
  };
394
395
  const AlertIcon = getAlertIcon();