@univerjs/icons 1.17.0 → 1.18.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 (48) hide show
  1. package/dist/cjs/ai-assistant-multi-icon.cjs +87 -0
  2. package/dist/cjs/configure-tab-icon.cjs +49 -0
  3. package/dist/cjs/first-tab-icon.cjs +60 -0
  4. package/dist/cjs/index.cjs +98 -7
  5. package/dist/cjs/locate-fixed-icon.cjs +58 -0
  6. package/dist/cjs/quick-add-icon.cjs +38 -0
  7. package/dist/cjs/row-height-extra-tall-icon.cjs +70 -0
  8. package/dist/cjs/row-height-medium-icon.cjs +81 -0
  9. package/dist/cjs/row-height-short-icon.cjs +92 -0
  10. package/dist/cjs/row-height-tall-icon.cjs +81 -0
  11. package/dist/cjs/table-border-style-dashed-icon.cjs +38 -0
  12. package/dist/cjs/table-border-style-dotted-icon.cjs +38 -0
  13. package/dist/cjs/table-border-style-icon.cjs +61 -0
  14. package/dist/cjs/table-border-style-solid-icon.cjs +37 -0
  15. package/dist/cjs/table-border-width-icon.cjs +69 -0
  16. package/dist/esm/ai-assistant-multi-icon.d.ts +3 -0
  17. package/dist/esm/ai-assistant-multi-icon.js +82 -0
  18. package/dist/esm/configure-tab-icon.d.ts +3 -0
  19. package/dist/esm/configure-tab-icon.js +44 -0
  20. package/dist/esm/{dropdown-icon.d.ts → first-tab-icon.d.ts} +2 -2
  21. package/dist/esm/first-tab-icon.js +55 -0
  22. package/dist/esm/index.d.ts +14 -1
  23. package/dist/esm/index.js +15 -2
  24. package/dist/esm/locate-fixed-icon.d.ts +3 -0
  25. package/dist/esm/locate-fixed-icon.js +53 -0
  26. package/dist/esm/quick-add-icon.d.ts +3 -0
  27. package/dist/esm/quick-add-icon.js +33 -0
  28. package/dist/esm/row-height-extra-tall-icon.d.ts +3 -0
  29. package/dist/esm/row-height-extra-tall-icon.js +65 -0
  30. package/dist/esm/row-height-medium-icon.d.ts +3 -0
  31. package/dist/esm/row-height-medium-icon.js +76 -0
  32. package/dist/esm/row-height-short-icon.d.ts +3 -0
  33. package/dist/esm/row-height-short-icon.js +87 -0
  34. package/dist/esm/row-height-tall-icon.d.ts +3 -0
  35. package/dist/esm/row-height-tall-icon.js +76 -0
  36. package/dist/esm/table-border-style-dashed-icon.d.ts +3 -0
  37. package/dist/esm/table-border-style-dashed-icon.js +33 -0
  38. package/dist/esm/table-border-style-dotted-icon.d.ts +3 -0
  39. package/dist/esm/table-border-style-dotted-icon.js +33 -0
  40. package/dist/esm/table-border-style-icon.d.ts +3 -0
  41. package/dist/esm/table-border-style-icon.js +56 -0
  42. package/dist/esm/table-border-style-solid-icon.d.ts +3 -0
  43. package/dist/esm/table-border-style-solid-icon.js +32 -0
  44. package/dist/esm/table-border-width-icon.d.ts +3 -0
  45. package/dist/esm/table-border-width-icon.js +64 -0
  46. package/package.json +2 -2
  47. package/dist/cjs/dropdown-icon.cjs +0 -35
  48. package/dist/esm/dropdown-icon.js +0 -30
@@ -59,6 +59,7 @@ export { ComponentDiagramComponentIcon } from './component-diagram-component-ico
59
59
  export { ComponentDiagramProvidedInterfaceIcon } from './component-diagram-provided-interface-icon.js';
60
60
  export { ComponentDiagramRequiredInterfaceIcon } from './component-diagram-required-interface-icon.js';
61
61
  export { ConditionalColorIcon } from './conditional-color-icon.js';
62
+ export { ConfigureTabIcon } from './configure-tab-icon.js';
62
63
  export { ConnectionLineIcon } from './connection-line-icon.js';
63
64
  export { ConnectorBarCrowsFootMarkerIcon } from './connector-bar-crows-foot-marker-icon.js';
64
65
  export { ConnectorBarMarkerIcon } from './connector-bar-marker-icon.js';
@@ -106,7 +107,6 @@ export { DollarIcon } from './dollar-icon.js';
106
107
  export { DownIcon } from './down-icon.js';
107
108
  export { DownloadIcon } from './download-icon.js';
108
109
  export { DownloadImageIcon } from './download-image-icon.js';
109
- export { DropdownIcon } from './dropdown-icon.js';
110
110
  export { EntityRelationshipEntityIcon } from './entity-relationship-entity-icon.js';
111
111
  export { EntityRelationshipFieldTypeIcon } from './entity-relationship-field-type-icon.js';
112
112
  export { EntityRelationshipFullIcon } from './entity-relationship-full-icon.js';
@@ -121,6 +121,7 @@ export { ExportIcon } from './export-icon.js';
121
121
  export { EyeIcon } from './eye-icon.js';
122
122
  export { EyelashIcon } from './eyelash-icon.js';
123
123
  export { FilterIcon } from './filter-icon.js';
124
+ export { FirstTabIcon } from './first-tab-icon.js';
124
125
  export { FlagIcon } from './flag-icon.js';
125
126
  export { FlipHorizontalIcon } from './flip-horizontal-icon.js';
126
127
  export { FlipVerticalIcon } from './flip-vertical-icon.js';
@@ -176,6 +177,7 @@ export { LineSparklineIcon } from './line-sparkline-icon.js';
176
177
  export { LinearIcon } from './linear-icon.js';
177
178
  export { LinkIcon } from './link-icon.js';
178
179
  export { LiveShareIcon } from './live-share-icon.js';
180
+ export { LocateFixedIcon } from './locate-fixed-icon.js';
179
181
  export { LockIcon } from './lock-icon.js';
180
182
  export { LogarithmicIcon } from './logarithmic-icon.js';
181
183
  export { MaxIcon } from './max-icon.js';
@@ -216,6 +218,7 @@ export { PowerLineIcon } from './power-line-icon.js';
216
218
  export { PreciseSelectionIcon } from './precise-selection-icon.js';
217
219
  export { PrintIcon } from './print-icon.js';
218
220
  export { ProtectIcon } from './protect-icon.js';
221
+ export { QuickAddIcon } from './quick-add-icon.js';
219
222
  export { QuoteIcon } from './quote-icon.js';
220
223
  export { RadarChartIcon } from './radar-chart-icon.js';
221
224
  export { RandomIcon } from './random-icon.js';
@@ -236,6 +239,10 @@ export { RightRotationNinetyDegreesIcon } from './right-rotation-ninety-degrees-
236
239
  export { RmbIcon } from './rmb-icon.js';
237
240
  export { RoubleIcon } from './rouble-icon.js';
238
241
  export { RoundnessIcon } from './roundness-icon.js';
242
+ export { RowHeightExtraTallIcon } from './row-height-extra-tall-icon.js';
243
+ export { RowHeightMediumIcon } from './row-height-medium-icon.js';
244
+ export { RowHeightShortIcon } from './row-height-short-icon.js';
245
+ export { RowHeightTallIcon } from './row-height-tall-icon.js';
239
246
  export { RowIcon } from './row-icon.js';
240
247
  export { RulerIcon } from './ruler-icon.js';
241
248
  export { SankeyIcon } from './sankey-icon.js';
@@ -464,6 +471,11 @@ export { SuccessOutlineIcon } from './success-outline-icon.js';
464
471
  export { SumIcon } from './sum-icon.js';
465
472
  export { SuperscriptIcon } from './superscript-icon.js';
466
473
  export { SymbolsIcon } from './symbols-icon.js';
474
+ export { TableBorderStyleDashedIcon } from './table-border-style-dashed-icon.js';
475
+ export { TableBorderStyleDottedIcon } from './table-border-style-dotted-icon.js';
476
+ export { TableBorderStyleIcon } from './table-border-style-icon.js';
477
+ export { TableBorderStyleSolidIcon } from './table-border-style-solid-icon.js';
478
+ export { TableBorderWidthIcon } from './table-border-width-icon.js';
467
479
  export { TableIcon } from './table-icon.js';
468
480
  export { TextIcon } from './text-icon.js';
469
481
  export { TextTypeIcon } from './text-type-icon.js';
@@ -490,6 +502,7 @@ export { WinlossSparklineIcon } from './winloss-sparkline-icon.js';
490
502
  export { WriteIcon } from './write-icon.js';
491
503
  export { ZoomInIcon } from './zoom-in-icon.js';
492
504
  export { ZoomOutIcon } from './zoom-out-icon.js';
505
+ export { AiAssistantMultiIcon } from './ai-assistant-multi-icon.js';
493
506
  export { BasesMultiIcon } from './bases-multi-icon.js';
494
507
  export { BoardsMultiIcon } from './boards-multi-icon.js';
495
508
  export { DocsMultiIcon } from './docs-multi-icon.js';
package/dist/esm/index.js CHANGED
@@ -59,6 +59,7 @@ import { ComponentDiagramComponentIcon } from "./component-diagram-component-ico
59
59
  import { ComponentDiagramProvidedInterfaceIcon } from "./component-diagram-provided-interface-icon.js";
60
60
  import { ComponentDiagramRequiredInterfaceIcon } from "./component-diagram-required-interface-icon.js";
61
61
  import { ConditionalColorIcon } from "./conditional-color-icon.js";
62
+ import { ConfigureTabIcon } from "./configure-tab-icon.js";
62
63
  import { ConnectionLineIcon } from "./connection-line-icon.js";
63
64
  import { ConnectorBarCrowsFootMarkerIcon } from "./connector-bar-crows-foot-marker-icon.js";
64
65
  import { ConnectorBarMarkerIcon } from "./connector-bar-marker-icon.js";
@@ -106,7 +107,6 @@ import { DollarIcon } from "./dollar-icon.js";
106
107
  import { DownIcon } from "./down-icon.js";
107
108
  import { DownloadIcon } from "./download-icon.js";
108
109
  import { DownloadImageIcon } from "./download-image-icon.js";
109
- import { DropdownIcon } from "./dropdown-icon.js";
110
110
  import { EntityRelationshipEntityIcon } from "./entity-relationship-entity-icon.js";
111
111
  import { EntityRelationshipFieldTypeIcon } from "./entity-relationship-field-type-icon.js";
112
112
  import { EntityRelationshipFullIcon } from "./entity-relationship-full-icon.js";
@@ -121,6 +121,7 @@ import { ExportIcon } from "./export-icon.js";
121
121
  import { EyeIcon } from "./eye-icon.js";
122
122
  import { EyelashIcon } from "./eyelash-icon.js";
123
123
  import { FilterIcon } from "./filter-icon.js";
124
+ import { FirstTabIcon } from "./first-tab-icon.js";
124
125
  import { FlagIcon } from "./flag-icon.js";
125
126
  import { FlipHorizontalIcon } from "./flip-horizontal-icon.js";
126
127
  import { FlipVerticalIcon } from "./flip-vertical-icon.js";
@@ -176,6 +177,7 @@ import { LineSparklineIcon } from "./line-sparkline-icon.js";
176
177
  import { LinearIcon } from "./linear-icon.js";
177
178
  import { LinkIcon } from "./link-icon.js";
178
179
  import { LiveShareIcon } from "./live-share-icon.js";
180
+ import { LocateFixedIcon } from "./locate-fixed-icon.js";
179
181
  import { LockIcon } from "./lock-icon.js";
180
182
  import { LogarithmicIcon } from "./logarithmic-icon.js";
181
183
  import { MaxIcon } from "./max-icon.js";
@@ -216,6 +218,7 @@ import { PowerLineIcon } from "./power-line-icon.js";
216
218
  import { PreciseSelectionIcon } from "./precise-selection-icon.js";
217
219
  import { PrintIcon } from "./print-icon.js";
218
220
  import { ProtectIcon } from "./protect-icon.js";
221
+ import { QuickAddIcon } from "./quick-add-icon.js";
219
222
  import { QuoteIcon } from "./quote-icon.js";
220
223
  import { RadarChartIcon } from "./radar-chart-icon.js";
221
224
  import { RandomIcon } from "./random-icon.js";
@@ -236,6 +239,10 @@ import { RightRotationNinetyDegreesIcon } from "./right-rotation-ninety-degrees-
236
239
  import { RmbIcon } from "./rmb-icon.js";
237
240
  import { RoubleIcon } from "./rouble-icon.js";
238
241
  import { RoundnessIcon } from "./roundness-icon.js";
242
+ import { RowHeightExtraTallIcon } from "./row-height-extra-tall-icon.js";
243
+ import { RowHeightMediumIcon } from "./row-height-medium-icon.js";
244
+ import { RowHeightShortIcon } from "./row-height-short-icon.js";
245
+ import { RowHeightTallIcon } from "./row-height-tall-icon.js";
239
246
  import { RowIcon } from "./row-icon.js";
240
247
  import { RulerIcon } from "./ruler-icon.js";
241
248
  import { SankeyIcon } from "./sankey-icon.js";
@@ -464,6 +471,11 @@ import { SuccessOutlineIcon } from "./success-outline-icon.js";
464
471
  import { SumIcon } from "./sum-icon.js";
465
472
  import { SuperscriptIcon } from "./superscript-icon.js";
466
473
  import { SymbolsIcon } from "./symbols-icon.js";
474
+ import { TableBorderStyleDashedIcon } from "./table-border-style-dashed-icon.js";
475
+ import { TableBorderStyleDottedIcon } from "./table-border-style-dotted-icon.js";
476
+ import { TableBorderStyleIcon } from "./table-border-style-icon.js";
477
+ import { TableBorderStyleSolidIcon } from "./table-border-style-solid-icon.js";
478
+ import { TableBorderWidthIcon } from "./table-border-width-icon.js";
467
479
  import { TableIcon } from "./table-icon.js";
468
480
  import { TextIcon } from "./text-icon.js";
469
481
  import { TextTypeIcon } from "./text-type-icon.js";
@@ -490,6 +502,7 @@ import { WinlossSparklineIcon } from "./winloss-sparkline-icon.js";
490
502
  import { WriteIcon } from "./write-icon.js";
491
503
  import { ZoomInIcon } from "./zoom-in-icon.js";
492
504
  import { ZoomOutIcon } from "./zoom-out-icon.js";
505
+ import { AiAssistantMultiIcon } from "./ai-assistant-multi-icon.js";
493
506
  import { BasesMultiIcon } from "./bases-multi-icon.js";
494
507
  import { BoardsMultiIcon } from "./boards-multi-icon.js";
495
508
  import { DocsMultiIcon } from "./docs-multi-icon.js";
@@ -572,4 +585,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
572
585
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
573
586
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
574
587
  import { WarnDoubleIcon } from "./warn-double-icon.js";
575
- export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, 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, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, 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, DropdownIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FilterIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, 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, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, 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, QuoteIcon, RadarChartIcon, RandomIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, 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, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SumIcon, SuperscriptIcon, SymbolsIcon, 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 };
588
+ 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, 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, 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, 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, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, 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 };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const LocateFixedIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default LocateFixedIcon;
@@ -0,0 +1,53 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/locate-fixed-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 20 20",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "stroke": "currentColor",
18
+ "d": "M10 2.8v2.5M10 14.7v2.5M2.8 10h2.5M14.7 10h2.5",
19
+ "strokeLinecap": "round",
20
+ "strokeWidth": 1.6
21
+ }
22
+ },
23
+ {
24
+ "tag": "circle",
25
+ "attrs": {
26
+ "cx": 10,
27
+ "cy": 10,
28
+ "r": 4.2,
29
+ "stroke": "currentColor",
30
+ "strokeWidth": 1.6
31
+ }
32
+ },
33
+ {
34
+ "tag": "circle",
35
+ "attrs": {
36
+ "cx": 10,
37
+ "cy": 10,
38
+ "r": 1.35,
39
+ "fill": "currentColor"
40
+ }
41
+ }
42
+ ]
43
+ };
44
+ const LocateFixedIcon = forwardRef(function LocateFixedIcon(props, ref) {
45
+ return createElement(IconBase, Object.assign({}, props, {
46
+ id: "locate-fixed-icon",
47
+ ref,
48
+ icon: element
49
+ }));
50
+ });
51
+ LocateFixedIcon.displayName = "LocateFixedIcon";
52
+ //#endregion
53
+ export { LocateFixedIcon, LocateFixedIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const QuickAddIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default QuickAddIcon;
@@ -0,0 +1,33 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/quick-add-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 20 20",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "fill": "currentColor",
17
+ "d": "M13.518 3.816a.51.51 0 0 1 0 .72l-.798.797.797.798a.51.51 0 0 1-.72.72L12 6.054l-.797.797a.51.51 0 0 1-.72-.72l.797-.798-.798-.797a.51.51 0 0 1 .72-.72l.798.797.797-.797a.51.51 0 0 1 .72 0M9.25 8.25a1 1 0 0 0-1 1v5.5a1 1 0 0 0 1 1h5.5a1 1 0 0 0 1-1v-5.5a1 1 0 0 0-1-1zm4.268 9.62a.51.51 0 0 0-.72-.72l-.798.797-.797-.798a.51.51 0 0 0-.72.72l.797.798-.798.797a.51.51 0 0 0 .72.72l.798-.797.797.797a.51.51 0 0 0 .72-.72l-.797-.797zM6.85 10.482a.51.51 0 0 1 0 .72L6.053 12l.798.797a.51.51 0 0 1-.72.72l-.798-.797-.797.798a.51.51 0 1 1-.72-.72L4.613 12l-.797-.797a.51.51 0 1 1 .72-.72l.797.797.798-.797a.51.51 0 0 1 .72 0m13.333.72a.51.51 0 1 0-.72-.72l-.797.797-.798-.797a.51.51 0 1 0-.72.72l.797.797-.797.797a.51.51 0 1 0 .72.72l.798-.797.797.798a.51.51 0 1 0 .72-.72L19.387 12zM9.75 9.75v4.5h4.5v-4.5z",
18
+ "transform": "scale(.83333)",
19
+ "fillRule": "evenodd",
20
+ "clipRule": "evenodd"
21
+ }
22
+ }]
23
+ };
24
+ const QuickAddIcon = forwardRef(function QuickAddIcon(props, ref) {
25
+ return createElement(IconBase, Object.assign({}, props, {
26
+ id: "quick-add-icon",
27
+ ref,
28
+ icon: element
29
+ }));
30
+ });
31
+ QuickAddIcon.displayName = "QuickAddIcon";
32
+ //#endregion
33
+ export { QuickAddIcon, QuickAddIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const RowHeightExtraTallIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default RowHeightExtraTallIcon;
@@ -0,0 +1,65 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/row-height-extra-tall-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 20 20",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "rect",
16
+ "attrs": {
17
+ "width": 8.3,
18
+ "height": 11.6,
19
+ "x": 1.5,
20
+ "y": 4.2,
21
+ "fill": "currentColor",
22
+ "rx": 1.8
23
+ }
24
+ },
25
+ {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "stroke": "currentColor",
29
+ "d": "M14.2 4.2v11.6",
30
+ "strokeLinecap": "round",
31
+ "strokeWidth": 1.6
32
+ }
33
+ },
34
+ {
35
+ "tag": "path",
36
+ "attrs": {
37
+ "stroke": "currentColor",
38
+ "d": "m12 6.5 2.2-2.3 2.2 2.3",
39
+ "strokeLinecap": "round",
40
+ "strokeLinejoin": "round",
41
+ "strokeWidth": 1.6
42
+ }
43
+ },
44
+ {
45
+ "tag": "path",
46
+ "attrs": {
47
+ "stroke": "currentColor",
48
+ "d": "m12 13.5 2.2 2.3 2.2-2.3",
49
+ "strokeLinecap": "round",
50
+ "strokeLinejoin": "round",
51
+ "strokeWidth": 1.6
52
+ }
53
+ }
54
+ ]
55
+ };
56
+ const RowHeightExtraTallIcon = forwardRef(function RowHeightExtraTallIcon(props, ref) {
57
+ return createElement(IconBase, Object.assign({}, props, {
58
+ id: "row-height-extra-tall-icon",
59
+ ref,
60
+ icon: element
61
+ }));
62
+ });
63
+ RowHeightExtraTallIcon.displayName = "RowHeightExtraTallIcon";
64
+ //#endregion
65
+ export { RowHeightExtraTallIcon, RowHeightExtraTallIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const RowHeightMediumIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default RowHeightMediumIcon;
@@ -0,0 +1,76 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/row-height-medium-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 20 20",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "rect",
16
+ "attrs": {
17
+ "width": 8.3,
18
+ "height": 2.2,
19
+ "x": 1.5,
20
+ "y": 5,
21
+ "fill": "currentColor",
22
+ "rx": 1.1
23
+ }
24
+ },
25
+ {
26
+ "tag": "rect",
27
+ "attrs": {
28
+ "width": 8.3,
29
+ "height": 2.2,
30
+ "x": 1.5,
31
+ "y": 13,
32
+ "fill": "currentColor",
33
+ "rx": 1.1
34
+ }
35
+ },
36
+ {
37
+ "tag": "path",
38
+ "attrs": {
39
+ "stroke": "currentColor",
40
+ "d": "M14.2 4.2v11.6",
41
+ "strokeLinecap": "round",
42
+ "strokeWidth": 1.6
43
+ }
44
+ },
45
+ {
46
+ "tag": "path",
47
+ "attrs": {
48
+ "stroke": "currentColor",
49
+ "d": "m12 6.5 2.2-2.3 2.2 2.3",
50
+ "strokeLinecap": "round",
51
+ "strokeLinejoin": "round",
52
+ "strokeWidth": 1.6
53
+ }
54
+ },
55
+ {
56
+ "tag": "path",
57
+ "attrs": {
58
+ "stroke": "currentColor",
59
+ "d": "m12 13.5 2.2 2.3 2.2-2.3",
60
+ "strokeLinecap": "round",
61
+ "strokeLinejoin": "round",
62
+ "strokeWidth": 1.6
63
+ }
64
+ }
65
+ ]
66
+ };
67
+ const RowHeightMediumIcon = forwardRef(function RowHeightMediumIcon(props, ref) {
68
+ return createElement(IconBase, Object.assign({}, props, {
69
+ id: "row-height-medium-icon",
70
+ ref,
71
+ icon: element
72
+ }));
73
+ });
74
+ RowHeightMediumIcon.displayName = "RowHeightMediumIcon";
75
+ //#endregion
76
+ export { RowHeightMediumIcon, RowHeightMediumIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const RowHeightShortIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default RowHeightShortIcon;
@@ -0,0 +1,87 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/row-height-short-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 20 20",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "rect",
16
+ "attrs": {
17
+ "width": 8.3,
18
+ "height": 1.7,
19
+ "x": 1.5,
20
+ "y": 5,
21
+ "fill": "currentColor",
22
+ "rx": .85
23
+ }
24
+ },
25
+ {
26
+ "tag": "rect",
27
+ "attrs": {
28
+ "width": 6,
29
+ "height": 1.7,
30
+ "x": 1.5,
31
+ "y": 10,
32
+ "fill": "currentColor",
33
+ "rx": .85
34
+ }
35
+ },
36
+ {
37
+ "tag": "rect",
38
+ "attrs": {
39
+ "width": 8.3,
40
+ "height": 1.7,
41
+ "x": 1.5,
42
+ "y": 15,
43
+ "fill": "currentColor",
44
+ "rx": .85
45
+ }
46
+ },
47
+ {
48
+ "tag": "path",
49
+ "attrs": {
50
+ "stroke": "currentColor",
51
+ "d": "M14.2 4.2v11.6",
52
+ "strokeLinecap": "round",
53
+ "strokeWidth": 1.6
54
+ }
55
+ },
56
+ {
57
+ "tag": "path",
58
+ "attrs": {
59
+ "stroke": "currentColor",
60
+ "d": "m12 6.5 2.2-2.3 2.2 2.3",
61
+ "strokeLinecap": "round",
62
+ "strokeLinejoin": "round",
63
+ "strokeWidth": 1.6
64
+ }
65
+ },
66
+ {
67
+ "tag": "path",
68
+ "attrs": {
69
+ "stroke": "currentColor",
70
+ "d": "m12 13.5 2.2 2.3 2.2-2.3",
71
+ "strokeLinecap": "round",
72
+ "strokeLinejoin": "round",
73
+ "strokeWidth": 1.6
74
+ }
75
+ }
76
+ ]
77
+ };
78
+ const RowHeightShortIcon = forwardRef(function RowHeightShortIcon(props, ref) {
79
+ return createElement(IconBase, Object.assign({}, props, {
80
+ id: "row-height-short-icon",
81
+ ref,
82
+ icon: element
83
+ }));
84
+ });
85
+ RowHeightShortIcon.displayName = "RowHeightShortIcon";
86
+ //#endregion
87
+ export { RowHeightShortIcon, RowHeightShortIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const RowHeightTallIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default RowHeightTallIcon;
@@ -0,0 +1,76 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/row-height-tall-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 20 20",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "rect",
16
+ "attrs": {
17
+ "width": 8.3,
18
+ "height": 3.6,
19
+ "x": 1.5,
20
+ "y": 4,
21
+ "fill": "currentColor",
22
+ "rx": 1.8
23
+ }
24
+ },
25
+ {
26
+ "tag": "rect",
27
+ "attrs": {
28
+ "width": 8.3,
29
+ "height": 3.6,
30
+ "x": 1.5,
31
+ "y": 12.4,
32
+ "fill": "currentColor",
33
+ "rx": 1.8
34
+ }
35
+ },
36
+ {
37
+ "tag": "path",
38
+ "attrs": {
39
+ "stroke": "currentColor",
40
+ "d": "M14.2 4.2v11.6",
41
+ "strokeLinecap": "round",
42
+ "strokeWidth": 1.6
43
+ }
44
+ },
45
+ {
46
+ "tag": "path",
47
+ "attrs": {
48
+ "stroke": "currentColor",
49
+ "d": "m12 6.5 2.2-2.3 2.2 2.3",
50
+ "strokeLinecap": "round",
51
+ "strokeLinejoin": "round",
52
+ "strokeWidth": 1.6
53
+ }
54
+ },
55
+ {
56
+ "tag": "path",
57
+ "attrs": {
58
+ "stroke": "currentColor",
59
+ "d": "m12 13.5 2.2 2.3 2.2-2.3",
60
+ "strokeLinecap": "round",
61
+ "strokeLinejoin": "round",
62
+ "strokeWidth": 1.6
63
+ }
64
+ }
65
+ ]
66
+ };
67
+ const RowHeightTallIcon = forwardRef(function RowHeightTallIcon(props, ref) {
68
+ return createElement(IconBase, Object.assign({}, props, {
69
+ id: "row-height-tall-icon",
70
+ ref,
71
+ icon: element
72
+ }));
73
+ });
74
+ RowHeightTallIcon.displayName = "RowHeightTallIcon";
75
+ //#endregion
76
+ export { RowHeightTallIcon, RowHeightTallIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const TableBorderStyleDashedIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default TableBorderStyleDashedIcon;
@@ -0,0 +1,33 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/table-border-style-dashed-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 20 20",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "stroke": "currentColor",
17
+ "d": "M4.5 10h11",
18
+ "strokeDasharray": "3.2 2.2",
19
+ "strokeLinecap": "round",
20
+ "strokeWidth": 1.6
21
+ }
22
+ }]
23
+ };
24
+ const TableBorderStyleDashedIcon = forwardRef(function TableBorderStyleDashedIcon(props, ref) {
25
+ return createElement(IconBase, Object.assign({}, props, {
26
+ id: "table-border-style-dashed-icon",
27
+ ref,
28
+ icon: element
29
+ }));
30
+ });
31
+ TableBorderStyleDashedIcon.displayName = "TableBorderStyleDashedIcon";
32
+ //#endregion
33
+ export { TableBorderStyleDashedIcon, TableBorderStyleDashedIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const TableBorderStyleDottedIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default TableBorderStyleDottedIcon;