@univerjs/icons-vue 1.22.0 → 1.24.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.
Files changed (40) hide show
  1. package/dist/cjs/convert-to-number-icon.cjs +54 -0
  2. package/dist/cjs/database-function-icon.cjs +57 -0
  3. package/dist/cjs/date-function-icon.cjs +79 -0
  4. package/dist/cjs/delete-table-double-icon.cjs +54 -0
  5. package/dist/cjs/engineering-function-icon.cjs +57 -0
  6. package/dist/cjs/financial-function-icon.cjs +57 -0
  7. package/dist/cjs/index.cjs +84 -0
  8. package/dist/cjs/information-function-icon.cjs +56 -0
  9. package/dist/cjs/logical-function-icon.cjs +57 -0
  10. package/dist/cjs/lookup-function-icon.cjs +78 -0
  11. package/dist/cjs/math-function-icon.cjs +57 -0
  12. package/dist/cjs/statistical-function-icon.cjs +57 -0
  13. package/dist/cjs/text-function-icon.cjs +57 -0
  14. package/dist/esm/convert-to-number-icon.d.ts +18 -0
  15. package/dist/esm/convert-to-number-icon.js +49 -0
  16. package/dist/esm/database-function-icon.d.ts +18 -0
  17. package/dist/esm/database-function-icon.js +52 -0
  18. package/dist/esm/date-function-icon.d.ts +18 -0
  19. package/dist/esm/date-function-icon.js +74 -0
  20. package/dist/esm/delete-table-double-icon.d.ts +18 -0
  21. package/dist/esm/delete-table-double-icon.js +49 -0
  22. package/dist/esm/engineering-function-icon.d.ts +18 -0
  23. package/dist/esm/engineering-function-icon.js +52 -0
  24. package/dist/esm/financial-function-icon.d.ts +18 -0
  25. package/dist/esm/financial-function-icon.js +52 -0
  26. package/dist/esm/index.d.ts +12 -0
  27. package/dist/esm/index.js +13 -1
  28. package/dist/esm/information-function-icon.d.ts +18 -0
  29. package/dist/esm/information-function-icon.js +51 -0
  30. package/dist/esm/logical-function-icon.d.ts +18 -0
  31. package/dist/esm/logical-function-icon.js +52 -0
  32. package/dist/esm/lookup-function-icon.d.ts +18 -0
  33. package/dist/esm/lookup-function-icon.js +73 -0
  34. package/dist/esm/math-function-icon.d.ts +18 -0
  35. package/dist/esm/math-function-icon.js +52 -0
  36. package/dist/esm/statistical-function-icon.d.ts +18 -0
  37. package/dist/esm/statistical-function-icon.js +52 -0
  38. package/dist/esm/text-function-icon.d.ts +18 -0
  39. package/dist/esm/text-function-icon.js +52 -0
  40. package/package.json +2 -2
@@ -0,0 +1,52 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/financial-function-icon.ts
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": "rect",
15
+ "attrs": {
16
+ "width": 11.2,
17
+ "height": 13.2,
18
+ "x": 2.4,
19
+ "y": 1.4,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.6
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.2,
31
+ "d": "M5 12H11M8 3.9V10M9.7 5.1C9.25 4.72 8.65 4.52 8 4.52C6.98 4.52 6.32 4.95 6.32 5.6C6.32 7.28 9.8 6.3 9.8 7.98C9.8 8.7 9.1 9.18 8 9.18C7.27 9.18 6.58 8.98 6.02 8.6"
32
+ }
33
+ }]
34
+ };
35
+ const FinancialFunctionIcon = defineComponent({
36
+ name: "FinancialFunctionIcon",
37
+ inheritAttrs: false,
38
+ props: { extend: {
39
+ type: Object,
40
+ default: void 0
41
+ } },
42
+ setup(props, { attrs }) {
43
+ return () => h(IconBase, {
44
+ ...attrs,
45
+ extend: props.extend,
46
+ id: "financial-function-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ export { FinancialFunctionIcon, FinancialFunctionIcon as default };
@@ -79,6 +79,7 @@ export { ConnectorRoundedElbowIcon } from './connector-rounded-elbow-icon.js';
79
79
  export { ConnectorSwapMarkersIcon } from './connector-swap-markers-icon.js';
80
80
  export { ConnectorXMarkerIcon } from './connector-x-marker-icon.js';
81
81
  export { ConvertIcon } from './convert-icon.js';
82
+ export { ConvertToNumberIcon } from './convert-to-number-icon.js';
82
83
  export { CopyIcon } from './copy-icon.js';
83
84
  export { CreateCopyIcon } from './create-copy-icon.js';
84
85
  export { CropIcon } from './crop-icon.js';
@@ -94,7 +95,9 @@ export { DataFlowDataStorage3Icon } from './data-flow-data-storage3-icon.js';
94
95
  export { DataFlowRoundedRectangleIcon } from './data-flow-rounded-rectangle-icon.js';
95
96
  export { DataFlowRoundedSquareIcon } from './data-flow-rounded-square-icon.js';
96
97
  export { DataValidationIcon } from './data-validation-icon.js';
98
+ export { DatabaseFunctionIcon } from './database-function-icon.js';
97
99
  export { DatabaseIcon } from './database-icon.js';
100
+ export { DateFunctionIcon } from './date-function-icon.js';
98
101
  export { DeleteEmptyIcon } from './delete-empty-icon.js';
99
102
  export { DeleteIcon } from './delete-icon.js';
100
103
  export { DeleteNoteIcon } from './delete-note-icon.js';
@@ -107,6 +110,7 @@ export { DollarIcon } from './dollar-icon.js';
107
110
  export { DownIcon } from './down-icon.js';
108
111
  export { DownloadIcon } from './download-icon.js';
109
112
  export { DownloadImageIcon } from './download-image-icon.js';
113
+ export { EngineeringFunctionIcon } from './engineering-function-icon.js';
110
114
  export { EntityRelationshipEntityIcon } from './entity-relationship-entity-icon.js';
111
115
  export { EntityRelationshipFieldTypeIcon } from './entity-relationship-field-type-icon.js';
112
116
  export { EntityRelationshipFullIcon } from './entity-relationship-full-icon.js';
@@ -121,6 +125,7 @@ export { ExportIcon } from './export-icon.js';
121
125
  export { EyeIcon } from './eye-icon.js';
122
126
  export { EyelashIcon } from './eyelash-icon.js';
123
127
  export { FilterIcon } from './filter-icon.js';
128
+ export { FinancialFunctionIcon } from './financial-function-icon.js';
124
129
  export { FirstTabIcon } from './first-tab-icon.js';
125
130
  export { FlagIcon } from './flag-icon.js';
126
131
  export { FlipHorizontalIcon } from './flip-horizontal-icon.js';
@@ -173,6 +178,7 @@ export { HorizontallyIcon } from './horizontally-icon.js';
173
178
  export { ImportIcon } from './import-icon.js';
174
179
  export { IncreaseIcon } from './increase-icon.js';
175
180
  export { InfoIcon } from './info-icon.js';
181
+ export { InformationFunctionIcon } from './information-function-icon.js';
176
182
  export { InsertIcon } from './insert-icon.js';
177
183
  export { ItalicIcon } from './italic-icon.js';
178
184
  export { KeyboardIcon } from './keyboard-icon.js';
@@ -193,6 +199,9 @@ export { LiveShareIcon } from './live-share-icon.js';
193
199
  export { LocateFixedIcon } from './locate-fixed-icon.js';
194
200
  export { LockIcon } from './lock-icon.js';
195
201
  export { LogarithmicIcon } from './logarithmic-icon.js';
202
+ export { LogicalFunctionIcon } from './logical-function-icon.js';
203
+ export { LookupFunctionIcon } from './lookup-function-icon.js';
204
+ export { MathFunctionIcon } from './math-function-icon.js';
196
205
  export { MaxIcon } from './max-icon.js';
197
206
  export { MenuIcon } from './menu-icon.js';
198
207
  export { MergeAllIcon } from './merge-all-icon.js';
@@ -474,6 +483,7 @@ export { ShrinkToFitIcon } from './shrink-to-fit-icon.js';
474
483
  export { SlidesAppIcon } from './slides-app-icon.js';
475
484
  export { SlideshowPlayIcon } from './slideshow-play-icon.js';
476
485
  export { SlideshowThemeIcon } from './slideshow-theme-icon.js';
486
+ export { StatisticalFunctionIcon } from './statistical-function-icon.js';
477
487
  export { StatusDiagramFinalStateIcon } from './status-diagram-final-state-icon.js';
478
488
  export { StatusDiagramInitialStateIcon } from './status-diagram-initial-state-icon.js';
479
489
  export { StatusDiagramStateBarIcon } from './status-diagram-state-bar-icon.js';
@@ -496,6 +506,7 @@ export { TableBorderStyleIcon } from './table-border-style-icon.js';
496
506
  export { TableBorderStyleSolidIcon } from './table-border-style-solid-icon.js';
497
507
  export { TableBorderWidthIcon } from './table-border-width-icon.js';
498
508
  export { TableIcon } from './table-icon.js';
509
+ export { TextFunctionIcon } from './text-function-icon.js';
499
510
  export { TextIcon } from './text-icon.js';
500
511
  export { TextTypeIcon } from './text-type-icon.js';
501
512
  export { TextWrapShapeIcon } from './text-wrap-shape-icon.js';
@@ -551,6 +562,7 @@ export { DeleteCellShiftRightDoubleIcon } from './delete-cell-shift-right-double
551
562
  export { DeleteCellShiftUpDoubleIcon } from './delete-cell-shift-up-double-icon.js';
552
563
  export { DeleteColumnDoubleIcon } from './delete-column-double-icon.js';
553
564
  export { DeleteRowDoubleIcon } from './delete-row-double-icon.js';
565
+ export { DeleteTableDoubleIcon } from './delete-table-double-icon.js';
554
566
  export { DissatisfiedDoubleIcon } from './dissatisfied-double-icon.js';
555
567
  export { DownBorderDoubleIcon } from './down-border-double-icon.js';
556
568
  export { FontColorDoubleIcon } from './font-color-double-icon.js';
package/dist/esm/index.js CHANGED
@@ -79,6 +79,7 @@ import { ConnectorRoundedElbowIcon } from "./connector-rounded-elbow-icon.js";
79
79
  import { ConnectorSwapMarkersIcon } from "./connector-swap-markers-icon.js";
80
80
  import { ConnectorXMarkerIcon } from "./connector-x-marker-icon.js";
81
81
  import { ConvertIcon } from "./convert-icon.js";
82
+ import { ConvertToNumberIcon } from "./convert-to-number-icon.js";
82
83
  import { CopyIcon } from "./copy-icon.js";
83
84
  import { CreateCopyIcon } from "./create-copy-icon.js";
84
85
  import { CropIcon } from "./crop-icon.js";
@@ -94,7 +95,9 @@ import { DataFlowDataStorage3Icon } from "./data-flow-data-storage3-icon.js";
94
95
  import { DataFlowRoundedRectangleIcon } from "./data-flow-rounded-rectangle-icon.js";
95
96
  import { DataFlowRoundedSquareIcon } from "./data-flow-rounded-square-icon.js";
96
97
  import { DataValidationIcon } from "./data-validation-icon.js";
98
+ import { DatabaseFunctionIcon } from "./database-function-icon.js";
97
99
  import { DatabaseIcon } from "./database-icon.js";
100
+ import { DateFunctionIcon } from "./date-function-icon.js";
98
101
  import { DeleteEmptyIcon } from "./delete-empty-icon.js";
99
102
  import { DeleteIcon } from "./delete-icon.js";
100
103
  import { DeleteNoteIcon } from "./delete-note-icon.js";
@@ -107,6 +110,7 @@ import { DollarIcon } from "./dollar-icon.js";
107
110
  import { DownIcon } from "./down-icon.js";
108
111
  import { DownloadIcon } from "./download-icon.js";
109
112
  import { DownloadImageIcon } from "./download-image-icon.js";
113
+ import { EngineeringFunctionIcon } from "./engineering-function-icon.js";
110
114
  import { EntityRelationshipEntityIcon } from "./entity-relationship-entity-icon.js";
111
115
  import { EntityRelationshipFieldTypeIcon } from "./entity-relationship-field-type-icon.js";
112
116
  import { EntityRelationshipFullIcon } from "./entity-relationship-full-icon.js";
@@ -121,6 +125,7 @@ import { ExportIcon } from "./export-icon.js";
121
125
  import { EyeIcon } from "./eye-icon.js";
122
126
  import { EyelashIcon } from "./eyelash-icon.js";
123
127
  import { FilterIcon } from "./filter-icon.js";
128
+ import { FinancialFunctionIcon } from "./financial-function-icon.js";
124
129
  import { FirstTabIcon } from "./first-tab-icon.js";
125
130
  import { FlagIcon } from "./flag-icon.js";
126
131
  import { FlipHorizontalIcon } from "./flip-horizontal-icon.js";
@@ -173,6 +178,7 @@ import { HorizontallyIcon } from "./horizontally-icon.js";
173
178
  import { ImportIcon } from "./import-icon.js";
174
179
  import { IncreaseIcon } from "./increase-icon.js";
175
180
  import { InfoIcon } from "./info-icon.js";
181
+ import { InformationFunctionIcon } from "./information-function-icon.js";
176
182
  import { InsertIcon } from "./insert-icon.js";
177
183
  import { ItalicIcon } from "./italic-icon.js";
178
184
  import { KeyboardIcon } from "./keyboard-icon.js";
@@ -193,6 +199,9 @@ import { LiveShareIcon } from "./live-share-icon.js";
193
199
  import { LocateFixedIcon } from "./locate-fixed-icon.js";
194
200
  import { LockIcon } from "./lock-icon.js";
195
201
  import { LogarithmicIcon } from "./logarithmic-icon.js";
202
+ import { LogicalFunctionIcon } from "./logical-function-icon.js";
203
+ import { LookupFunctionIcon } from "./lookup-function-icon.js";
204
+ import { MathFunctionIcon } from "./math-function-icon.js";
196
205
  import { MaxIcon } from "./max-icon.js";
197
206
  import { MenuIcon } from "./menu-icon.js";
198
207
  import { MergeAllIcon } from "./merge-all-icon.js";
@@ -474,6 +483,7 @@ import { ShrinkToFitIcon } from "./shrink-to-fit-icon.js";
474
483
  import { SlidesAppIcon } from "./slides-app-icon.js";
475
484
  import { SlideshowPlayIcon } from "./slideshow-play-icon.js";
476
485
  import { SlideshowThemeIcon } from "./slideshow-theme-icon.js";
486
+ import { StatisticalFunctionIcon } from "./statistical-function-icon.js";
477
487
  import { StatusDiagramFinalStateIcon } from "./status-diagram-final-state-icon.js";
478
488
  import { StatusDiagramInitialStateIcon } from "./status-diagram-initial-state-icon.js";
479
489
  import { StatusDiagramStateBarIcon } from "./status-diagram-state-bar-icon.js";
@@ -496,6 +506,7 @@ import { TableBorderStyleIcon } from "./table-border-style-icon.js";
496
506
  import { TableBorderStyleSolidIcon } from "./table-border-style-solid-icon.js";
497
507
  import { TableBorderWidthIcon } from "./table-border-width-icon.js";
498
508
  import { TableIcon } from "./table-icon.js";
509
+ import { TextFunctionIcon } from "./text-function-icon.js";
499
510
  import { TextIcon } from "./text-icon.js";
500
511
  import { TextTypeIcon } from "./text-type-icon.js";
501
512
  import { TextWrapShapeIcon } from "./text-wrap-shape-icon.js";
@@ -551,6 +562,7 @@ import { DeleteCellShiftRightDoubleIcon } from "./delete-cell-shift-right-double
551
562
  import { DeleteCellShiftUpDoubleIcon } from "./delete-cell-shift-up-double-icon.js";
552
563
  import { DeleteColumnDoubleIcon } from "./delete-column-double-icon.js";
553
564
  import { DeleteRowDoubleIcon } from "./delete-row-double-icon.js";
565
+ import { DeleteTableDoubleIcon } from "./delete-table-double-icon.js";
554
566
  import { DissatisfiedDoubleIcon } from "./dissatisfied-double-icon.js";
555
567
  import { DownBorderDoubleIcon } from "./down-border-double-icon.js";
556
568
  import { FontColorDoubleIcon } from "./font-color-double-icon.js";
@@ -605,4 +617,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
605
617
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
606
618
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
607
619
  import { WarnDoubleIcon } from "./warn-double-icon.js";
608
- 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, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, 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, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FilterIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FullscreenIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesDoubleIcon, HideNoteIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, 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, MaxIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MinIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, 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, 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, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, ZoomInIcon, ZoomOutIcon };
620
+ 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, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, 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, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, 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, FullscreenIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesDoubleIcon, HideNoteIcon, 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, 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, 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, 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, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, ZoomInIcon, ZoomOutIcon };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const InformationFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default InformationFunctionIcon;
@@ -0,0 +1,51 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/information-function-icon.ts
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": "rect",
15
+ "attrs": {
16
+ "width": 11.2,
17
+ "height": 13.2,
18
+ "x": 2.4,
19
+ "y": 1.4,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.6
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-width": 1.2,
30
+ "d": "M5 12H11M8 6.5V9.5M8 4.7H8.01"
31
+ }
32
+ }]
33
+ };
34
+ const InformationFunctionIcon = defineComponent({
35
+ name: "InformationFunctionIcon",
36
+ inheritAttrs: false,
37
+ props: { extend: {
38
+ type: Object,
39
+ default: void 0
40
+ } },
41
+ setup(props, { attrs }) {
42
+ return () => h(IconBase, {
43
+ ...attrs,
44
+ extend: props.extend,
45
+ id: "information-function-icon",
46
+ icon: element
47
+ });
48
+ }
49
+ });
50
+ //#endregion
51
+ export { InformationFunctionIcon, InformationFunctionIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const LogicalFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default LogicalFunctionIcon;
@@ -0,0 +1,52 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/logical-function-icon.ts
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": "rect",
15
+ "attrs": {
16
+ "width": 11.2,
17
+ "height": 13.2,
18
+ "x": 2.4,
19
+ "y": 1.4,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.6
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.2,
31
+ "d": "M5 12H11M6.35 5.45C6.35 4.4 7.05 3.78 8.05 3.78C9.05 3.78 9.75 4.4 9.75 5.3C9.75 6.08 9.28 6.48 8.68 6.88C8.2 7.2 8 7.6 8 8.18M8 9.75H8.01"
32
+ }
33
+ }]
34
+ };
35
+ const LogicalFunctionIcon = defineComponent({
36
+ name: "LogicalFunctionIcon",
37
+ inheritAttrs: false,
38
+ props: { extend: {
39
+ type: Object,
40
+ default: void 0
41
+ } },
42
+ setup(props, { attrs }) {
43
+ return () => h(IconBase, {
44
+ ...attrs,
45
+ extend: props.extend,
46
+ id: "logical-function-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ export { LogicalFunctionIcon, LogicalFunctionIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const LookupFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default LookupFunctionIcon;
@@ -0,0 +1,73 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/lookup-function-icon.ts
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": "rect",
16
+ "attrs": {
17
+ "width": 11.2,
18
+ "height": 13.2,
19
+ "x": 2.4,
20
+ "y": 1.4,
21
+ "stroke": "currentColor",
22
+ "stroke-width": 1.2,
23
+ "rx": 1.6
24
+ }
25
+ },
26
+ {
27
+ "tag": "path",
28
+ "attrs": {
29
+ "stroke": "currentColor",
30
+ "stroke-linecap": "round",
31
+ "stroke-width": 1.2,
32
+ "d": "M5 12H11"
33
+ }
34
+ },
35
+ {
36
+ "tag": "circle",
37
+ "attrs": {
38
+ "cx": 7.35,
39
+ "cy": 6.8,
40
+ "r": 2.25,
41
+ "stroke": "currentColor",
42
+ "stroke-width": 1.2
43
+ }
44
+ },
45
+ {
46
+ "tag": "path",
47
+ "attrs": {
48
+ "stroke": "currentColor",
49
+ "stroke-linecap": "round",
50
+ "stroke-width": 1.2,
51
+ "d": "M9 8.45L10.65 10.1"
52
+ }
53
+ }
54
+ ]
55
+ };
56
+ const LookupFunctionIcon = defineComponent({
57
+ name: "LookupFunctionIcon",
58
+ inheritAttrs: false,
59
+ props: { extend: {
60
+ type: Object,
61
+ default: void 0
62
+ } },
63
+ setup(props, { attrs }) {
64
+ return () => h(IconBase, {
65
+ ...attrs,
66
+ extend: props.extend,
67
+ id: "lookup-function-icon",
68
+ icon: element
69
+ });
70
+ }
71
+ });
72
+ //#endregion
73
+ export { LookupFunctionIcon, LookupFunctionIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const MathFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default MathFunctionIcon;
@@ -0,0 +1,52 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/math-function-icon.ts
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": "rect",
15
+ "attrs": {
16
+ "width": 11.2,
17
+ "height": 13.2,
18
+ "x": 2.4,
19
+ "y": 1.4,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.6
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.2,
31
+ "d": "M5 12H11M5.1 7.6H6.1L7 9.7L8.35 4.9H10.9"
32
+ }
33
+ }]
34
+ };
35
+ const MathFunctionIcon = defineComponent({
36
+ name: "MathFunctionIcon",
37
+ inheritAttrs: false,
38
+ props: { extend: {
39
+ type: Object,
40
+ default: void 0
41
+ } },
42
+ setup(props, { attrs }) {
43
+ return () => h(IconBase, {
44
+ ...attrs,
45
+ extend: props.extend,
46
+ id: "math-function-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ export { MathFunctionIcon, MathFunctionIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const StatisticalFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default StatisticalFunctionIcon;
@@ -0,0 +1,52 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/statistical-function-icon.ts
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": "rect",
15
+ "attrs": {
16
+ "width": 11.2,
17
+ "height": 13.2,
18
+ "x": 2.4,
19
+ "y": 1.4,
20
+ "stroke": "currentColor",
21
+ "stroke-width": 1.2,
22
+ "rx": 1.6
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.2,
31
+ "d": "M5 12H11M5.5 9.7V7.8M8 9.7V5M10.5 9.7V6.5M5 9.7H11"
32
+ }
33
+ }]
34
+ };
35
+ const StatisticalFunctionIcon = defineComponent({
36
+ name: "StatisticalFunctionIcon",
37
+ inheritAttrs: false,
38
+ props: { extend: {
39
+ type: Object,
40
+ default: void 0
41
+ } },
42
+ setup(props, { attrs }) {
43
+ return () => h(IconBase, {
44
+ ...attrs,
45
+ extend: props.extend,
46
+ id: "statistical-function-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ export { StatisticalFunctionIcon, StatisticalFunctionIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const TextFunctionIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default TextFunctionIcon;