@univerjs/icons 1.31.0 → 1.33.0

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,97 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/chord-chart-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "g",
15
+ "attrs": { "fill": "currentColor" },
16
+ "children": [
17
+ {
18
+ "tag": "path",
19
+ "attrs": {
20
+ "d": "M88 10.8c11.1 0 22 2.4 32.1 7s19 11.3 26.2 19.7c-40.8 35.2-48.7 71.4-26.5 120.4-10.1 4.6-21 6.9-32.1 6.9s-22-2.4-32-7.1C78.3 108.8 88 64.7 88 10.8Z",
21
+ "transform": "translate(.1 .1)scale(.08977)",
22
+ "fillOpacity": .45
23
+ }
24
+ },
25
+ {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "d": "M146.3 37.5c9.7 11.2 15.9 24.9 18 39.6-53.4 7.5-93.8 25.8-134.6 61-9.7-11.2-15.9-25-18-39.6 53.4-7.5 93.8-25.8 134.6-61Z",
29
+ "transform": "translate(.1 .1)scale(.08977)",
30
+ "fillOpacity": .45
31
+ }
32
+ },
33
+ {
34
+ "tag": "path",
35
+ "attrs": {
36
+ "d": "M55.7 157.7a77.5 77.5 0 0 1-18.4-12c35.5-40.5 29.7-67.5-19.3-89.9a77.5 77.5 0 0 1 11.9-18.5c40.7 35.4 48.4 71.5 25.8 120.4Z",
37
+ "transform": "translate(.1 .1)scale(.08977)",
38
+ "fillOpacity": .45
39
+ }
40
+ },
41
+ {
42
+ "tag": "path",
43
+ "attrs": {
44
+ "d": "M11.7 98.5a77.5 77.5 0 0 1 2.5-32.7c51.7 15.4 96.7 18.8 150 11.3a77.5 77.5 0 0 1-2.4 32.7C110.1 94.4 65.1 91 11.7 98.5Z",
45
+ "transform": "translate(.1 .1)scale(.08977)",
46
+ "fillOpacity": .45
47
+ }
48
+ },
49
+ {
50
+ "tag": "path",
51
+ "attrs": {
52
+ "d": "M29.9 37.3a77.2 77.2 0 0 1 47.4-25.7c7.5 53.3 32.8 82.8 84.5 98.2a77.2 77.2 0 0 1-32.5 43c-28.9-45.5-58.7-80.1-99.4-115.5Z",
53
+ "transform": "translate(.1 .1)scale(.08977)",
54
+ "fillOpacity": .45
55
+ }
56
+ },
57
+ {
58
+ "tag": "path",
59
+ "attrs": {
60
+ "d": "M88 5.5A5.5 5.5 0 0 1 93.9 0a88 88 0 0 1 46.1 158.8 5.5 5.5 0 0 1-7.9-1.5l-2.8-4.5A77.2 77.2 0 0 0 88 10.8V5.5Z",
61
+ "transform": "translate(.1 .1)scale(.08977)"
62
+ }
63
+ },
64
+ {
65
+ "tag": "path",
66
+ "attrs": {
67
+ "d": "M122 162.8a5.5 5.5 0 0 1-3.1 7.4 88 88 0 0 1-84.3-12.5 5.5 5.5 0 0 1-.8-8l3.5-4a77.2 77.2 0 0 0 82.5 12.2l2.2 4.9Z",
68
+ "transform": "translate(.1 .1)scale(.08977)"
69
+ }
70
+ },
71
+ {
72
+ "tag": "path",
73
+ "attrs": {
74
+ "d": "M25.7 141.6a5.5 5.5 0 0 1-8 .1A88 88 0 0 1 2.2 68.4a5.5 5.5 0 0 1 6.9-4.1l5.1 1.5a77.2 77.2 0 0 0 15.5 72.3l-4 3.5Z",
75
+ "transform": "translate(.1 .1)scale(.08977)"
76
+ }
77
+ },
78
+ {
79
+ "tag": "path",
80
+ "attrs": {
81
+ "d": "M13.2 53.5a5.5 5.5 0 0 1-2.6-7.6A88 88 0 0 1 70 1.7a5.5 5.5 0 0 1 6.5 4.6l.8 5.3a77.2 77.2 0 0 0-59.3 44.2l-4.8-2.3Z",
82
+ "transform": "translate(.1 .1)scale(.08977)"
83
+ }
84
+ }
85
+ ]
86
+ }]
87
+ };
88
+ const ChordChartIcon = forwardRef(function ChordChartIcon(props, ref) {
89
+ return createElement(IconBase, Object.assign({}, props, {
90
+ id: "chord-chart-icon",
91
+ ref,
92
+ icon: element
93
+ }));
94
+ });
95
+ ChordChartIcon.displayName = "ChordChartIcon";
96
+ //#endregion
97
+ export { ChordChartIcon, ChordChartIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const DongIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default DongIcon;
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/dong-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "fill": "currentColor",
17
+ "d": "M12.2058 3.459H11.2416V12.6604H9.6438V11.6962Q8.9091 12.844 7.4858 12.844Q5.8971 12.844 4.8456 11.6686Q3.7942 10.4932 3.7942 8.5739Q3.7942 6.5904 4.7814 5.4471Q5.7685 4.3038 7.4031 4.3038Q8.9183 4.3038 9.5887 5.3415V3.459H7.5041V2.1091H9.5887V1.2H11.2416V2.1091H12.2058V3.459ZM7.6143 11.4941Q8.5234 11.4941 9.0744 10.8008Q9.6254 10.1075 9.6254 8.7484Q9.6254 5.6629 7.5592 5.6629Q6.5491 5.6629 6.0211 6.4297Q5.493 7.1965 5.493 8.5923Q5.493 11.4941 7.6143 11.4941ZM11.2416 14.8H4.0421V13.4501H11.2416V14.8Z"
18
+ }
19
+ }]
20
+ };
21
+ const DongIcon = forwardRef(function DongIcon(props, ref) {
22
+ return createElement(IconBase, Object.assign({}, props, {
23
+ id: "dong-icon",
24
+ ref,
25
+ icon: element
26
+ }));
27
+ });
28
+ DongIcon.displayName = "DongIcon";
29
+ //#endregion
30
+ export { DongIcon, DongIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const FeatureSearchIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default FeatureSearchIcon;
@@ -0,0 +1,86 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/feature-search-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "stroke": "currentColor",
18
+ "d": "M7.1 10.5H3.2A1.5 1.5 0 0 1 1.7 9V3.2A1.5 1.5 0 0 1 3.2 1.7H9A1.5 1.5 0 0 1 10.5 3.2V7.1",
19
+ "strokeLinecap": "round",
20
+ "strokeWidth": 1.2
21
+ }
22
+ },
23
+ {
24
+ "tag": "rect",
25
+ "attrs": {
26
+ "width": 1.8,
27
+ "height": 1.8,
28
+ "x": 3.4,
29
+ "y": 3.4,
30
+ "fill": "currentColor",
31
+ "rx": .35
32
+ }
33
+ },
34
+ {
35
+ "tag": "rect",
36
+ "attrs": {
37
+ "width": 1.8,
38
+ "height": 1.8,
39
+ "x": 7,
40
+ "y": 3.4,
41
+ "fill": "currentColor",
42
+ "rx": .35
43
+ }
44
+ },
45
+ {
46
+ "tag": "rect",
47
+ "attrs": {
48
+ "width": 1.8,
49
+ "height": 1.8,
50
+ "x": 3.4,
51
+ "y": 7,
52
+ "fill": "currentColor",
53
+ "rx": .35
54
+ }
55
+ },
56
+ {
57
+ "tag": "circle",
58
+ "attrs": {
59
+ "cx": 10.1,
60
+ "cy": 10.1,
61
+ "r": 2.9,
62
+ "stroke": "currentColor",
63
+ "strokeWidth": 1.2
64
+ }
65
+ },
66
+ {
67
+ "tag": "path",
68
+ "attrs": {
69
+ "stroke": "currentColor",
70
+ "d": "M12.15 12.15 14.35 14.35",
71
+ "strokeLinecap": "round",
72
+ "strokeWidth": 1.2
73
+ }
74
+ }
75
+ ]
76
+ };
77
+ const FeatureSearchIcon = forwardRef(function FeatureSearchIcon(props, ref) {
78
+ return createElement(IconBase, Object.assign({}, props, {
79
+ id: "feature-search-icon",
80
+ ref,
81
+ icon: element
82
+ }));
83
+ });
84
+ FeatureSearchIcon.displayName = "FeatureSearchIcon";
85
+ //#endregion
86
+ export { FeatureSearchIcon, FeatureSearchIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const GaugeChartIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default GaugeChartIcon;
@@ -0,0 +1,41 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/gauge-chart-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "stroke": "currentColor",
17
+ "d": "M.7 12.7a7.3 7.6 0 0 1 14.6 0h-2.5a4.8 5 0 0 0-9.6 0H.7ZM2.9 7.1 4.6 8.9M8 4.9v2.5M13.1 7.1 11.4 8.9M8 12.7 11.2 7.7",
18
+ "strokeLinecap": "round",
19
+ "strokeLinejoin": "round",
20
+ "strokeWidth": 1.2
21
+ }
22
+ }, {
23
+ "tag": "circle",
24
+ "attrs": {
25
+ "cx": 8,
26
+ "cy": 12.7,
27
+ "r": .7,
28
+ "fill": "currentColor"
29
+ }
30
+ }]
31
+ };
32
+ const GaugeChartIcon = forwardRef(function GaugeChartIcon(props, ref) {
33
+ return createElement(IconBase, Object.assign({}, props, {
34
+ id: "gauge-chart-icon",
35
+ ref,
36
+ icon: element
37
+ }));
38
+ });
39
+ GaugeChartIcon.displayName = "GaugeChartIcon";
40
+ //#endregion
41
+ export { GaugeChartIcon, GaugeChartIcon as default };
@@ -37,6 +37,7 @@ export { CatalogueIcon } from './catalogue-icon.js';
37
37
  export { ChartIcon } from './chart-icon.js';
38
38
  export { CheckMarkIcon } from './check-mark-icon.js';
39
39
  export { CheckboxIcon } from './checkbox-icon.js';
40
+ export { ChordChartIcon } from './chord-chart-icon.js';
40
41
  export { ClassDiagramClassIcon } from './class-diagram-class-icon.js';
41
42
  export { ClassDiagramDashedFilledArrowConnectorIcon } from './class-diagram-dashed-filled-arrow-connector-icon.js';
42
43
  export { ClassDiagramDashedOpenArrowConnectorIcon } from './class-diagram-dashed-open-arrow-connector-icon.js';
@@ -111,6 +112,7 @@ export { DividerIcon } from './divider-icon.js';
111
112
  export { DocSettingIcon } from './doc-setting-icon.js';
112
113
  export { DocsAppIcon } from './docs-app-icon.js';
113
114
  export { DollarIcon } from './dollar-icon.js';
115
+ export { DongIcon } from './dong-icon.js';
114
116
  export { DownIcon } from './down-icon.js';
115
117
  export { DownloadIcon } from './download-icon.js';
116
118
  export { DownloadImageIcon } from './download-image-icon.js';
@@ -130,6 +132,7 @@ export { ExponentialIcon } from './exponential-icon.js';
130
132
  export { ExportIcon } from './export-icon.js';
131
133
  export { EyeIcon } from './eye-icon.js';
132
134
  export { EyelashIcon } from './eyelash-icon.js';
135
+ export { FeatureSearchIcon } from './feature-search-icon.js';
133
136
  export { FilterIcon } from './filter-icon.js';
134
137
  export { FinancialFunctionIcon } from './financial-function-icon.js';
135
138
  export { FirstTabIcon } from './first-tab-icon.js';
@@ -158,6 +161,7 @@ export { FreezeToSelectedIcon } from './freeze-to-selected-icon.js';
158
161
  export { FunctionIcon } from './function-icon.js';
159
162
  export { FunnelIcon } from './funnel-icon.js';
160
163
  export { FxIcon } from './fx-icon.js';
164
+ export { GaugeChartIcon } from './gauge-chart-icon.js';
161
165
  export { GraphIcon } from './graph-icon.js';
162
166
  export { GridIcon } from './grid-icon.js';
163
167
  export { GridOutlineIcon } from './grid-outline-icon.js';
@@ -264,6 +268,7 @@ export { ReplyToCommentIcon } from './reply-to-comment-icon.js';
264
268
  export { ResourcesIcon } from './resources-icon.js';
265
269
  export { RestoreIcon } from './restore-icon.js';
266
270
  export { RhomboidIcon } from './rhomboid-icon.js';
271
+ export { RialIcon } from './rial-icon.js';
267
272
  export { RightJustifyingIcon } from './right-justifying-icon.js';
268
273
  export { RightRotationFortyFiveDegreesIcon } from './right-rotation-forty-five-degrees-icon.js';
269
274
  export { RightRotationNinetyDegreesIcon } from './right-rotation-ninety-degrees-icon.js';
@@ -276,6 +281,7 @@ export { RowHeightShortIcon } from './row-height-short-icon.js';
276
281
  export { RowHeightTallIcon } from './row-height-tall-icon.js';
277
282
  export { RowIcon } from './row-icon.js';
278
283
  export { RulerIcon } from './ruler-icon.js';
284
+ export { RupiahIcon } from './rupiah-icon.js';
279
285
  export { SankeyIcon } from './sankey-icon.js';
280
286
  export { ScatterChartIcon } from './scatter-chart-icon.js';
281
287
  export { SearchIcon } from './search-icon.js';
@@ -508,6 +514,7 @@ export { SubscriptIcon } from './subscript-icon.js';
508
514
  export { SuccessIcon } from './success-icon.js';
509
515
  export { SuccessOutlineIcon } from './success-outline-icon.js';
510
516
  export { SumIcon } from './sum-icon.js';
517
+ export { SunburstChartIcon } from './sunburst-chart-icon.js';
511
518
  export { SuperscriptIcon } from './superscript-icon.js';
512
519
  export { SymbolsIcon } from './symbols-icon.js';
513
520
  export { TableBorderStyleDashedIcon } from './table-border-style-dashed-icon.js';
@@ -541,7 +548,9 @@ export { VerticalTextIcon } from './vertical-text-icon.js';
541
548
  export { WarningIcon } from './warning-icon.js';
542
549
  export { WaterfallChartIcon } from './waterfall-chart-icon.js';
543
550
  export { WinlossSparklineIcon } from './winloss-sparkline-icon.js';
551
+ export { WonIcon } from './won-icon.js';
544
552
  export { WriteIcon } from './write-icon.js';
553
+ export { ZlotyIcon } from './zloty-icon.js';
545
554
  export { ZoomInIcon } from './zoom-in-icon.js';
546
555
  export { ZoomOutIcon } from './zoom-out-icon.js';
547
556
  export { AiAssistantMultiIcon } from './ai-assistant-multi-icon.js';
package/dist/esm/index.js CHANGED
@@ -37,6 +37,7 @@ import { CatalogueIcon } from "./catalogue-icon.js";
37
37
  import { ChartIcon } from "./chart-icon.js";
38
38
  import { CheckMarkIcon } from "./check-mark-icon.js";
39
39
  import { CheckboxIcon } from "./checkbox-icon.js";
40
+ import { ChordChartIcon } from "./chord-chart-icon.js";
40
41
  import { ClassDiagramClassIcon } from "./class-diagram-class-icon.js";
41
42
  import { ClassDiagramDashedFilledArrowConnectorIcon } from "./class-diagram-dashed-filled-arrow-connector-icon.js";
42
43
  import { ClassDiagramDashedOpenArrowConnectorIcon } from "./class-diagram-dashed-open-arrow-connector-icon.js";
@@ -111,6 +112,7 @@ import { DividerIcon } from "./divider-icon.js";
111
112
  import { DocSettingIcon } from "./doc-setting-icon.js";
112
113
  import { DocsAppIcon } from "./docs-app-icon.js";
113
114
  import { DollarIcon } from "./dollar-icon.js";
115
+ import { DongIcon } from "./dong-icon.js";
114
116
  import { DownIcon } from "./down-icon.js";
115
117
  import { DownloadIcon } from "./download-icon.js";
116
118
  import { DownloadImageIcon } from "./download-image-icon.js";
@@ -130,6 +132,7 @@ import { ExponentialIcon } from "./exponential-icon.js";
130
132
  import { ExportIcon } from "./export-icon.js";
131
133
  import { EyeIcon } from "./eye-icon.js";
132
134
  import { EyelashIcon } from "./eyelash-icon.js";
135
+ import { FeatureSearchIcon } from "./feature-search-icon.js";
133
136
  import { FilterIcon } from "./filter-icon.js";
134
137
  import { FinancialFunctionIcon } from "./financial-function-icon.js";
135
138
  import { FirstTabIcon } from "./first-tab-icon.js";
@@ -158,6 +161,7 @@ import { FreezeToSelectedIcon } from "./freeze-to-selected-icon.js";
158
161
  import { FunctionIcon } from "./function-icon.js";
159
162
  import { FunnelIcon } from "./funnel-icon.js";
160
163
  import { FxIcon } from "./fx-icon.js";
164
+ import { GaugeChartIcon } from "./gauge-chart-icon.js";
161
165
  import { GraphIcon } from "./graph-icon.js";
162
166
  import { GridIcon } from "./grid-icon.js";
163
167
  import { GridOutlineIcon } from "./grid-outline-icon.js";
@@ -264,6 +268,7 @@ import { ReplyToCommentIcon } from "./reply-to-comment-icon.js";
264
268
  import { ResourcesIcon } from "./resources-icon.js";
265
269
  import { RestoreIcon } from "./restore-icon.js";
266
270
  import { RhomboidIcon } from "./rhomboid-icon.js";
271
+ import { RialIcon } from "./rial-icon.js";
267
272
  import { RightJustifyingIcon } from "./right-justifying-icon.js";
268
273
  import { RightRotationFortyFiveDegreesIcon } from "./right-rotation-forty-five-degrees-icon.js";
269
274
  import { RightRotationNinetyDegreesIcon } from "./right-rotation-ninety-degrees-icon.js";
@@ -276,6 +281,7 @@ import { RowHeightShortIcon } from "./row-height-short-icon.js";
276
281
  import { RowHeightTallIcon } from "./row-height-tall-icon.js";
277
282
  import { RowIcon } from "./row-icon.js";
278
283
  import { RulerIcon } from "./ruler-icon.js";
284
+ import { RupiahIcon } from "./rupiah-icon.js";
279
285
  import { SankeyIcon } from "./sankey-icon.js";
280
286
  import { ScatterChartIcon } from "./scatter-chart-icon.js";
281
287
  import { SearchIcon } from "./search-icon.js";
@@ -508,6 +514,7 @@ import { SubscriptIcon } from "./subscript-icon.js";
508
514
  import { SuccessIcon } from "./success-icon.js";
509
515
  import { SuccessOutlineIcon } from "./success-outline-icon.js";
510
516
  import { SumIcon } from "./sum-icon.js";
517
+ import { SunburstChartIcon } from "./sunburst-chart-icon.js";
511
518
  import { SuperscriptIcon } from "./superscript-icon.js";
512
519
  import { SymbolsIcon } from "./symbols-icon.js";
513
520
  import { TableBorderStyleDashedIcon } from "./table-border-style-dashed-icon.js";
@@ -541,7 +548,9 @@ import { VerticalTextIcon } from "./vertical-text-icon.js";
541
548
  import { WarningIcon } from "./warning-icon.js";
542
549
  import { WaterfallChartIcon } from "./waterfall-chart-icon.js";
543
550
  import { WinlossSparklineIcon } from "./winloss-sparkline-icon.js";
551
+ import { WonIcon } from "./won-icon.js";
544
552
  import { WriteIcon } from "./write-icon.js";
553
+ import { ZlotyIcon } from "./zloty-icon.js";
545
554
  import { ZoomInIcon } from "./zoom-in-icon.js";
546
555
  import { ZoomOutIcon } from "./zoom-out-icon.js";
547
556
  import { AiAssistantMultiIcon } from "./ai-assistant-multi-icon.js";
@@ -628,4 +637,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
628
637
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
629
638
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
630
639
  import { WarnDoubleIcon } from "./warn-double-icon.js";
631
- export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, AvgIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CandlestickChartIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataBarIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DatePickerIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesIcon, HideNoteIcon, HistogramChartIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MaxIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MinIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectLayersIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, PasteSpecialDoubleIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RatingIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TreemapChartIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnlockIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, ZoomInIcon, ZoomOutIcon };
640
+ export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, AvgIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CandlestickChartIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ChordChartIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataBarIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DatePickerIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DongIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FeatureSearchIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GaugeChartIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesIcon, HideNoteIcon, HistogramChartIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MaxIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MinIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectLayersIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, PasteSpecialDoubleIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RatingIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RialIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, RupiahIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SumIcon, SunburstChartIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TreemapChartIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnlockIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WonIcon, WriteIcon, ZlotyIcon, ZoomInIcon, ZoomOutIcon };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const RialIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default RialIcon;
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/rial-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "fill": "currentColor",
17
+ "d": "M6.7937 8.6977Q6.7937 9.5729 6.7228 9.9277Q6.6045 10.8264 5.7057 11.3704Q4.8543 11.8908 3.577 12.0327H3.4115Q2.6783 12.0327 2.2052 11.3468Q1.7795 10.7555 1.7795 9.9277Q1.7795 9.5965 1.945 8.887Q2.1343 8.0828 2.3944 7.8226Q2.4417 7.7517 2.5127 7.7517Q2.6546 7.7517 2.6546 7.9172Q2.6546 7.9882 2.489 8.4139Q2.3235 8.8397 2.3235 9.0762Q2.3235 9.904 2.7256 10.2588Q3.1277 10.6136 3.9791 10.6136Q4.9016 10.6136 5.6111 10.1878Q6.4863 9.6911 6.4153 8.8397Q6.2261 8.1774 5.8713 6.4271Q5.4456 4.2038 5.1617 3.0449Q4.9489 2.6191 4.807 2.4536Q4.9489 2.1934 5.0198 1.8859Q5.1617 1.2 5.28 1.2Q5.351 1.2 5.4456 1.4602Q5.5638 1.744 5.6821 1.8623Q6.1078 2.217 6.1551 2.288Q6.1551 2.3353 6.1788 2.3826Q6.2261 2.6191 5.9186 3.2577Q6.2024 4.535 6.4863 6.4271Q6.6991 7.8463 6.7937 8.6977ZM11.3586 8.9816Q11.3823 9.6911 11.0748 10.3061Q10.8856 10.7082 10.0577 10.7082Q9.3009 10.7082 8.8751 9.9277Q8.5677 9.4073 8.4021 7.8226Q8.1656 5.8122 7.9054 4.0146Q7.7398 3.0922 7.6452 2.6428L7.7871 1.9332Q7.8581 1.4602 7.929 1.4602Q7.9763 1.4602 8 1.5784Q8.2365 2.2407 8.4257 3.8963Q8.7096 6.167 8.8042 6.6637Q9.0643 8.5795 9.2299 8.9106Q9.3245 9.1235 9.5729 9.3127Q9.8212 9.5019 10.0577 9.5019Q10.72 9.5019 10.791 9.1471Q10.7437 8.9816 10.4835 8.6268Q10.2706 8.2957 10.247 8.0355L10.3889 7.657Q10.4598 7.4442 10.5781 7.2077Q10.6017 7.184 10.6254 7.184Q10.8383 7.184 11.0275 7.6334Q11.335 8.272 11.3586 8.9816ZM14.2205 10.7318Q14.2205 12.2219 13.511 13.3099Q13.1325 13.8776 12.2574 14.6108Q11.9736 14.8 11.4532 14.8Q10.9329 14.8 9.3245 14.4689Q9.2536 14.4689 9.1471 14.3624Q9.0407 14.256 9.0407 14.2087Q9.0643 14.185 9.0643 14.185L9.088 14.1614Q9.703 14.1141 10.0577 14.1141Q10.72 14.0904 11.0038 13.9722Q13.1089 13.1917 13.7475 11.2995Q13.6765 11.1339 13.2035 10.3061Q12.825 9.6438 12.825 9.3363Q12.825 9.289 12.9197 9.1471Q12.9433 9.1235 13.0379 8.7923Q13.1089 8.5558 13.1798 8.5558Q13.4637 8.5558 13.8657 9.3363Q14.2205 10.0459 14.2205 10.377V10.7318ZM10.6017 12.1273Q10.6254 12.1983 10.4243 12.6122Q10.2233 13.0261 10.105 13.0261Q9.9631 13.0261 9.6793 12.7777Q9.3955 12.5294 9.3245 12.3638Q9.632 11.536 9.7976 11.465Q9.8685 11.465 10.1997 11.7607Q10.5308 12.0563 10.6017 12.1273ZM9.1353 12.4584Q9.159 12.6003 8.9579 12.967Q8.7569 13.3336 8.6386 13.3336Q8.4967 13.3336 8.201 13.097Q7.9054 12.8605 7.9054 12.7423Q7.8344 12.553 8.3075 11.8198Q8.6386 11.9617 9.1353 12.4584Z"
18
+ }
19
+ }]
20
+ };
21
+ const RialIcon = forwardRef(function RialIcon(props, ref) {
22
+ return createElement(IconBase, Object.assign({}, props, {
23
+ id: "rial-icon",
24
+ ref,
25
+ icon: element
26
+ }));
27
+ });
28
+ RialIcon.displayName = "RialIcon";
29
+ //#endregion
30
+ export { RialIcon, RialIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const RupiahIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default RupiahIcon;
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/rupiah-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "fill": "currentColor",
17
+ "d": "M8.5953 11.0279H7.1987Q5.9451 9.0475 5.6418 8.5953Q5.3384 8.1431 5.0035 7.8197Q4.6687 7.4963 4.3739 7.4104Q4.0791 7.3246 3.5926 7.3246H2.3104V11.0279H1.2V2.6367H4.9148Q5.6761 2.6367 6.1912 2.734Q6.7064 2.8313 7.0956 3.1433Q7.4848 3.4552 7.6938 3.9303Q7.9027 4.4054 7.9027 4.932Q7.9027 5.8822 7.3017 6.4603Q6.7007 7.0384 5.5502 7.1929V7.2158Q6.3916 7.5879 7.13 8.7441L8.5953 11.0279ZM2.3104 6.3286H4.6916Q5.4128 6.3286 5.8335 6.2056Q6.2542 6.0825 6.5061 5.7276Q6.7579 5.3727 6.7579 4.932Q6.7579 4.3596 6.3401 3.9589Q5.9222 3.5582 4.9606 3.5582H2.3104V6.3286ZM10.4842 5.7391Q11.0623 4.8175 12.2185 4.8175Q13.4148 4.8175 14.1074 5.6847Q14.8 6.5519 14.8 7.9428Q14.8 9.4253 14.033 10.2981Q13.266 11.171 12.1498 11.171Q11.171 11.171 10.5815 10.3926H10.5529V13.3633H9.5226V4.9549H10.4613V5.7391H10.4842ZM12.0811 10.3239Q12.8024 10.3239 13.2746 9.7258Q13.7468 9.1276 13.7468 7.9428Q13.7468 6.8266 13.2918 6.2256Q12.8367 5.6246 12.1269 5.6246Q11.3943 5.6246 10.9221 6.2943Q10.4498 6.964 10.4498 8.0286Q10.4498 9.1562 10.902 9.7401Q11.3542 10.3239 12.0811 10.3239Z"
18
+ }
19
+ }]
20
+ };
21
+ const RupiahIcon = forwardRef(function RupiahIcon(props, ref) {
22
+ return createElement(IconBase, Object.assign({}, props, {
23
+ id: "rupiah-icon",
24
+ ref,
25
+ icon: element
26
+ }));
27
+ });
28
+ RupiahIcon.displayName = "RupiahIcon";
29
+ //#endregion
30
+ export { RupiahIcon, RupiahIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const SunburstChartIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default SunburstChartIcon;
@@ -0,0 +1,51 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/sunburst-chart-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "circle",
16
+ "attrs": {
17
+ "cx": 8,
18
+ "cy": 7.5,
19
+ "r": 1.6,
20
+ "stroke": "currentColor",
21
+ "strokeWidth": 1.4
22
+ }
23
+ },
24
+ {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "d": "M8 3.5a4 4 0 0 1 3.9 3M12 7.8a4 4 0 0 1-3 3.6M8 11.5a4 4 0 0 1-4-3.7M4.1 6.8a4 4 0 0 1 2.9-3.2",
29
+ "strokeWidth": 1.7
30
+ }
31
+ },
32
+ {
33
+ "tag": "path",
34
+ "attrs": {
35
+ "stroke": "currentColor",
36
+ "d": "M9.1 1.1a6.5 6.5 0 0 1 5.4 7M9.4 13.9a6.5 6.5 0 0 1-7.7-4.7M1.5 8a6.5 6.5 0 0 1 5.4-6.9",
37
+ "strokeWidth": 1.9
38
+ }
39
+ }
40
+ ]
41
+ };
42
+ const SunburstChartIcon = forwardRef(function SunburstChartIcon(props, ref) {
43
+ return createElement(IconBase, Object.assign({}, props, {
44
+ id: "sunburst-chart-icon",
45
+ ref,
46
+ icon: element
47
+ }));
48
+ });
49
+ SunburstChartIcon.displayName = "SunburstChartIcon";
50
+ //#endregion
51
+ export { SunburstChartIcon, SunburstChartIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const WonIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default WonIcon;
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/won-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "fill": "currentColor",
17
+ "d": "M14.8 9.4486H12.955L11.8883 13.2829H10.5477L9.4811 9.4486H6.5189L5.4378 13.2829H4.0108L2.9874 9.4486H1.2V8.4685H2.7351L2.4541 7.409H1.2V6.436H2.1946L1.2 2.7171H2.6342L3.4919 6.436H6.1153L7.182 2.7171H8.8613L9.9135 6.436H12.4649L13.3802 2.7171H14.8L13.7622 6.436H14.8V7.409H13.5099L13.2144 8.4685H14.8V9.4486ZM8.645 6.436Q8.0757 4.3676 7.9892 4Q7.8667 4.6342 7.3261 6.436H8.645ZM12.2414 7.409H10.209L10.5045 8.4685H11.9748L12.2414 7.409ZM9.2144 8.4685L8.9189 7.409H7.0739L6.7856 8.4685H9.2144ZM5.8559 7.409H3.7297L3.9748 8.4685H5.5604L5.8559 7.409ZM11.7586 9.4486H10.7351Q11.0955 11.1063 11.1964 11.8054L11.7586 9.4486ZM5.2937 9.4486H4.1838Q4.573 11.1063 4.7027 11.8054Q4.955 10.7315 5.2937 9.4486Z"
18
+ }
19
+ }]
20
+ };
21
+ const WonIcon = forwardRef(function WonIcon(props, ref) {
22
+ return createElement(IconBase, Object.assign({}, props, {
23
+ id: "won-icon",
24
+ ref,
25
+ icon: element
26
+ }));
27
+ });
28
+ WonIcon.displayName = "WonIcon";
29
+ //#endregion
30
+ export { WonIcon, WonIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const ZlotyIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default ZlotyIcon;