@enonic/ui 0.47.1 → 0.47.2
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.
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LucideIcon } from 'lucide-react';
|
|
2
|
+
/**
|
|
3
|
+
* @component
|
|
4
|
+
* @name FilledOctagonAlert
|
|
5
|
+
* @description Lucide-compatible SVG icon component. A filled octagon with an exclamation mark cut out. Useful for representing error or critical warning states.
|
|
6
|
+
* @see {@link https://enonic.github.io/npm-enonic-ui/?path=/story/design-icons--custom-icons | Storybook}
|
|
7
|
+
* @param props - Lucide icon props and any valid SVG attribute
|
|
8
|
+
* @returns SVG element
|
|
9
|
+
*/
|
|
10
|
+
export declare const FilledOctagonAlert: LucideIcon;
|
|
11
|
+
/** @alias FilledOctagonAlert */
|
|
12
|
+
export declare const FilledOctagonAlertIcon: LucideIcon;
|
|
@@ -3,5 +3,6 @@ export { FilledCircleAlert, FilledCircleAlertIcon } from './filled-circle-alert'
|
|
|
3
3
|
export { FilledCircleCheck, FilledCircleCheckIcon } from './filled-circle-check';
|
|
4
4
|
export { FilledCircleInfo, FilledCircleInfoIcon } from './filled-circle-info';
|
|
5
5
|
export { FilledCircleX, FilledCircleXIcon } from './filled-circle-x';
|
|
6
|
+
export { FilledOctagonAlert, FilledOctagonAlertIcon } from './filled-octagon-alert';
|
|
6
7
|
export { FilledSquareCheck, FilledSquareCheckIcon } from './filled-square-check';
|
|
7
8
|
export { FilledSquareMinus, FilledSquareMinusIcon } from './filled-square-minus';
|