@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.js +18 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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,
|
|
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
|
|
392
|
+
return Info;
|
|
392
393
|
}
|
|
393
394
|
};
|
|
394
395
|
const AlertIcon = getAlertIcon();
|