@univerjs/icons 1.10.0 → 1.12.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 (36) hide show
  1. package/dist/cjs/crop-icon.cjs +56 -0
  2. package/dist/cjs/grip-vertical-icon.cjs +84 -0
  3. package/dist/cjs/index.cjs +36 -22
  4. package/dist/cjs/{progress-0-icon.cjs → progress-0-double-icon.cjs} +6 -6
  5. package/dist/cjs/{progress-100-icon.cjs → progress-100-double-icon.cjs} +6 -6
  6. package/dist/cjs/{progress-25-icon.cjs → progress-25-double-icon.cjs} +6 -6
  7. package/dist/cjs/{progress-50-icon.cjs → progress-50-double-icon.cjs} +6 -6
  8. package/dist/cjs/{progress-75-icon.cjs → progress-75-double-icon.cjs} +6 -6
  9. package/dist/cjs/text-wrap-shape-icon.cjs +127 -0
  10. package/dist/esm/crop-icon.d.ts +3 -0
  11. package/dist/esm/crop-icon.js +51 -0
  12. package/dist/esm/grip-vertical-icon.d.ts +3 -0
  13. package/dist/esm/grip-vertical-icon.js +79 -0
  14. package/dist/esm/index.d.ts +8 -6
  15. package/dist/esm/index.js +9 -7
  16. package/dist/esm/progress-0-double-icon.d.ts +3 -0
  17. package/dist/esm/{progress-0-icon.js → progress-0-double-icon.js} +5 -5
  18. package/dist/esm/progress-100-double-icon.d.ts +3 -0
  19. package/dist/esm/{progress-100-icon.js → progress-100-double-icon.js} +5 -5
  20. package/dist/esm/progress-25-double-icon.d.ts +3 -0
  21. package/dist/esm/{progress-25-icon.js → progress-25-double-icon.js} +5 -5
  22. package/dist/esm/progress-50-double-icon.d.ts +3 -0
  23. package/dist/esm/{progress-50-icon.js → progress-50-double-icon.js} +5 -5
  24. package/dist/esm/progress-75-double-icon.d.ts +3 -0
  25. package/dist/esm/{progress-75-icon.js → progress-75-double-icon.js} +5 -5
  26. package/dist/esm/text-wrap-shape-icon.d.ts +3 -0
  27. package/dist/esm/text-wrap-shape-icon.js +122 -0
  28. package/package.json +4 -3
  29. package/dist/cjs/sequence-icon.cjs +0 -72
  30. package/dist/esm/progress-0-icon.d.ts +0 -3
  31. package/dist/esm/progress-100-icon.d.ts +0 -3
  32. package/dist/esm/progress-25-icon.d.ts +0 -3
  33. package/dist/esm/progress-50-icon.d.ts +0 -3
  34. package/dist/esm/progress-75-icon.d.ts +0 -3
  35. package/dist/esm/sequence-icon.d.ts +0 -3
  36. package/dist/esm/sequence-icon.js +0 -67
@@ -0,0 +1,79 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/grip-vertical-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": "circle",
16
+ "attrs": {
17
+ "cx": 7,
18
+ "cy": 5,
19
+ "r": 1.1,
20
+ "fill": "currentColor"
21
+ }
22
+ },
23
+ {
24
+ "tag": "circle",
25
+ "attrs": {
26
+ "cx": 13,
27
+ "cy": 5,
28
+ "r": 1.1,
29
+ "fill": "currentColor"
30
+ }
31
+ },
32
+ {
33
+ "tag": "circle",
34
+ "attrs": {
35
+ "cx": 7,
36
+ "cy": 10,
37
+ "r": 1.1,
38
+ "fill": "currentColor"
39
+ }
40
+ },
41
+ {
42
+ "tag": "circle",
43
+ "attrs": {
44
+ "cx": 13,
45
+ "cy": 10,
46
+ "r": 1.1,
47
+ "fill": "currentColor"
48
+ }
49
+ },
50
+ {
51
+ "tag": "circle",
52
+ "attrs": {
53
+ "cx": 7,
54
+ "cy": 15,
55
+ "r": 1.1,
56
+ "fill": "currentColor"
57
+ }
58
+ },
59
+ {
60
+ "tag": "circle",
61
+ "attrs": {
62
+ "cx": 13,
63
+ "cy": 15,
64
+ "r": 1.1,
65
+ "fill": "currentColor"
66
+ }
67
+ }
68
+ ]
69
+ };
70
+ const GripVerticalIcon = forwardRef(function GripVerticalIcon(props, ref) {
71
+ return createElement(IconBase, Object.assign({}, props, {
72
+ id: "grip-vertical-icon",
73
+ ref,
74
+ icon: element
75
+ }));
76
+ });
77
+ GripVerticalIcon.displayName = "GripVerticalIcon";
78
+ //#endregion
79
+ export { GripVerticalIcon, GripVerticalIcon as default };
@@ -48,6 +48,7 @@ export { ConvertIcon } from './convert-icon.js';
48
48
  export { CopyIcon } from './copy-icon.js';
49
49
  export { CorrectIcon } from './correct-icon.js';
50
50
  export { CreateCopyIcon } from './create-copy-icon.js';
51
+ export { CropIcon } from './crop-icon.js';
51
52
  export { CrossHighlightingIcon } from './cross-highlighting-icon.js';
52
53
  export { CrossIcon } from './cross-icon.js';
53
54
  export { CustomSortIcon } from './custom-sort-icon.js';
@@ -93,6 +94,7 @@ export { FxIcon } from './fx-icon.js';
93
94
  export { GraphIcon } from './graph-icon.js';
94
95
  export { GridIcon } from './grid-icon.js';
95
96
  export { GridOutlineIcon } from './grid-outline-icon.js';
97
+ export { GripVerticalIcon } from './grip-vertical-icon.js';
96
98
  export { GroupIcon } from './group-icon.js';
97
99
  export { GroupSparklineIcon } from './group-sparkline-icon.js';
98
100
  export { GuideIcon } from './guide-icon.js';
@@ -161,11 +163,6 @@ export { PlacesIcon } from './places-icon.js';
161
163
  export { PolynomialIcon } from './polynomial-icon.js';
162
164
  export { PowerLineIcon } from './power-line-icon.js';
163
165
  export { PrintIcon } from './print-icon.js';
164
- export { Progress0Icon } from './progress-0-icon.js';
165
- export { Progress100Icon } from './progress-100-icon.js';
166
- export { Progress25Icon } from './progress-25-icon.js';
167
- export { Progress50Icon } from './progress-50-icon.js';
168
- export { Progress75Icon } from './progress-75-icon.js';
169
166
  export { ProtectIcon } from './protect-icon.js';
170
167
  export { QuoteIcon } from './quote-icon.js';
171
168
  export { RadarChartIcon } from './radar-chart-icon.js';
@@ -192,7 +189,6 @@ export { SankeyIcon } from './sankey-icon.js';
192
189
  export { ScatterChartIcon } from './scatter-chart-icon.js';
193
190
  export { SearchIcon } from './search-icon.js';
194
191
  export { SelectRangeIcon } from './select-range-icon.js';
195
- export { SequenceIcon } from './sequence-icon.js';
196
192
  export { ShapeAccentBorderCallout1Icon } from './shape-accent-border-callout1-icon.js';
197
193
  export { ShapeAccentBorderCallout2Icon } from './shape-accent-border-callout2-icon.js';
198
194
  export { ShapeAccentBorderCallout3Icon } from './shape-accent-border-callout3-icon.js';
@@ -399,6 +395,7 @@ export { SymbolsIcon } from './symbols-icon.js';
399
395
  export { TableIcon } from './table-icon.js';
400
396
  export { TextIcon } from './text-icon.js';
401
397
  export { TextTypeIcon } from './text-type-icon.js';
398
+ export { TextWrapShapeIcon } from './text-wrap-shape-icon.js';
402
399
  export { TopmostIcon } from './topmost-icon.js';
403
400
  export { TriangleIcon } from './triangle-icon.js';
404
401
  export { TruncationIcon } from './truncation-icon.js';
@@ -479,6 +476,11 @@ export { OuterBorderDoubleIcon } from './outer-border-double-icon.js';
479
476
  export { PaintBucketDoubleIcon } from './paint-bucket-double-icon.js';
480
477
  export { PasteSpecialDoubleIcon } from './paste-special-double-icon.js';
481
478
  export { PointColorDoubleIcon } from './point-color-double-icon.js';
479
+ export { Progress0DoubleIcon } from './progress-0-double-icon.js';
480
+ export { Progress100DoubleIcon } from './progress-100-double-icon.js';
481
+ export { Progress25DoubleIcon } from './progress-25-double-icon.js';
482
+ export { Progress50DoubleIcon } from './progress-50-double-icon.js';
483
+ export { Progress75DoubleIcon } from './progress-75-double-icon.js';
482
484
  export { ReduceDoubleIcon } from './reduce-double-icon.js';
483
485
  export { RightBorderDoubleIcon } from './right-border-double-icon.js';
484
486
  export { RightDoubleDiagonalDoubleIcon } from './right-double-diagonal-double-icon.js';
package/dist/esm/index.js CHANGED
@@ -48,6 +48,7 @@ import { ConvertIcon } from "./convert-icon.js";
48
48
  import { CopyIcon } from "./copy-icon.js";
49
49
  import { CorrectIcon } from "./correct-icon.js";
50
50
  import { CreateCopyIcon } from "./create-copy-icon.js";
51
+ import { CropIcon } from "./crop-icon.js";
51
52
  import { CrossHighlightingIcon } from "./cross-highlighting-icon.js";
52
53
  import { CrossIcon } from "./cross-icon.js";
53
54
  import { CustomSortIcon } from "./custom-sort-icon.js";
@@ -93,6 +94,7 @@ import { FxIcon } from "./fx-icon.js";
93
94
  import { GraphIcon } from "./graph-icon.js";
94
95
  import { GridIcon } from "./grid-icon.js";
95
96
  import { GridOutlineIcon } from "./grid-outline-icon.js";
97
+ import { GripVerticalIcon } from "./grip-vertical-icon.js";
96
98
  import { GroupIcon } from "./group-icon.js";
97
99
  import { GroupSparklineIcon } from "./group-sparkline-icon.js";
98
100
  import { GuideIcon } from "./guide-icon.js";
@@ -161,11 +163,6 @@ import { PlacesIcon } from "./places-icon.js";
161
163
  import { PolynomialIcon } from "./polynomial-icon.js";
162
164
  import { PowerLineIcon } from "./power-line-icon.js";
163
165
  import { PrintIcon } from "./print-icon.js";
164
- import { Progress0Icon } from "./progress-0-icon.js";
165
- import { Progress100Icon } from "./progress-100-icon.js";
166
- import { Progress25Icon } from "./progress-25-icon.js";
167
- import { Progress50Icon } from "./progress-50-icon.js";
168
- import { Progress75Icon } from "./progress-75-icon.js";
169
166
  import { ProtectIcon } from "./protect-icon.js";
170
167
  import { QuoteIcon } from "./quote-icon.js";
171
168
  import { RadarChartIcon } from "./radar-chart-icon.js";
@@ -192,7 +189,6 @@ import { SankeyIcon } from "./sankey-icon.js";
192
189
  import { ScatterChartIcon } from "./scatter-chart-icon.js";
193
190
  import { SearchIcon } from "./search-icon.js";
194
191
  import { SelectRangeIcon } from "./select-range-icon.js";
195
- import { SequenceIcon } from "./sequence-icon.js";
196
192
  import { ShapeAccentBorderCallout1Icon } from "./shape-accent-border-callout1-icon.js";
197
193
  import { ShapeAccentBorderCallout2Icon } from "./shape-accent-border-callout2-icon.js";
198
194
  import { ShapeAccentBorderCallout3Icon } from "./shape-accent-border-callout3-icon.js";
@@ -399,6 +395,7 @@ import { SymbolsIcon } from "./symbols-icon.js";
399
395
  import { TableIcon } from "./table-icon.js";
400
396
  import { TextIcon } from "./text-icon.js";
401
397
  import { TextTypeIcon } from "./text-type-icon.js";
398
+ import { TextWrapShapeIcon } from "./text-wrap-shape-icon.js";
402
399
  import { TopmostIcon } from "./topmost-icon.js";
403
400
  import { TriangleIcon } from "./triangle-icon.js";
404
401
  import { TruncationIcon } from "./truncation-icon.js";
@@ -479,6 +476,11 @@ import { OuterBorderDoubleIcon } from "./outer-border-double-icon.js";
479
476
  import { PaintBucketDoubleIcon } from "./paint-bucket-double-icon.js";
480
477
  import { PasteSpecialDoubleIcon } from "./paste-special-double-icon.js";
481
478
  import { PointColorDoubleIcon } from "./point-color-double-icon.js";
479
+ import { Progress0DoubleIcon } from "./progress-0-double-icon.js";
480
+ import { Progress100DoubleIcon } from "./progress-100-double-icon.js";
481
+ import { Progress25DoubleIcon } from "./progress-25-double-icon.js";
482
+ import { Progress50DoubleIcon } from "./progress-50-double-icon.js";
483
+ import { Progress75DoubleIcon } from "./progress-75-double-icon.js";
482
484
  import { ReduceDoubleIcon } from "./reduce-double-icon.js";
483
485
  import { RightBorderDoubleIcon } from "./right-border-double-icon.js";
484
486
  import { RightDoubleDiagonalDoubleIcon } from "./right-double-diagonal-double-icon.js";
@@ -499,4 +501,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
499
501
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
500
502
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
501
503
  import { WarnDoubleIcon } from "./warn-double-icon.js";
502
- export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, AvgIcon, BackIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, CodeBlockIcon, CodeIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ConditionsDoubleIcon, ConvertIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CorrectIcon, CreateCopyIcon, CrossHighlightingIcon, CrossIcon, CustomSortIcon, CutIcon, DataValidationIcon, DatabaseIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocMultiIcon, DocSettingIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownIcon, ErrorIcon, EuroIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExponentialIcon, ExportIcon, EyeIcon, EyeOutlineIcon, EyelashIcon, FilterIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FullscreenIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, GuideIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesDoubleIcon, HideNoteIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LockIcon, LogarithmicIcon, MaxIcon, MenuIcon, MergeAllIcon, MinIcon, MistakeDoubleIcon, MistakeIcon, MoreDownIcon, MoreFunctionIcon, MoreHorizontalIcon, MoreIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PasteSpecialDoubleIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PrintIcon, Progress0Icon, Progress100Icon, Progress25Icon, Progress50Icon, Progress75Icon, ProtectIcon, QuoteIcon, RadarChartIcon, RandomIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResolvedIcon, RestoreIcon, RhomboidIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, SequenceIcon, 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, ShortcutIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlideMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, SolveIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StrikethroughIcon, SubscriptIcon, SuccessIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableIcon, TextIcon, TextTypeIcon, TodoListDoubleIcon, TopmostIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarnIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, XlsxMultiIcon, ZenIcon, ZoomInIcon, ZoomIncreaseIcon, ZoomOutIcon, ZoomReduceIcon };
504
+ export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, AvgIcon, BackIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, CodeBlockIcon, CodeIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ConditionsDoubleIcon, ConvertIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CorrectIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CustomSortIcon, CutIcon, DataValidationIcon, DatabaseIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocMultiIcon, DocSettingIcon, DollarIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownIcon, ErrorIcon, EuroIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExponentialIcon, ExportIcon, EyeIcon, EyeOutlineIcon, EyelashIcon, FilterIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FullscreenIcon, FunctionIcon, FunnelIcon, FxIcon, GraphIcon, GridIcon, GridOutlineIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, GuideIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesDoubleIcon, HideNoteIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LockIcon, LogarithmicIcon, MaxIcon, MenuIcon, MergeAllIcon, MinIcon, MistakeDoubleIcon, MistakeIcon, MoreDownIcon, MoreFunctionIcon, MoreHorizontalIcon, MoreIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PasteSpecialDoubleIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuoteIcon, RadarChartIcon, RandomIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResolvedIcon, RestoreIcon, RhomboidIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SelectRangeIcon, 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, ShortcutIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlideMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmileDoubleIcon, SolveIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StrikethroughIcon, SubscriptIcon, SuccessIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarnIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WriteIcon, XlsxMultiIcon, ZenIcon, ZoomInIcon, ZoomIncreaseIcon, ZoomOutIcon, ZoomReduceIcon };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const Progress0DoubleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default Progress0DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { createElement, forwardRef } from "react";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-0-icon.tsx
3
+ //#region ts/progress-0-double-icon.tsx
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -29,13 +29,13 @@ const element = {
29
29
  }
30
30
  }]
31
31
  };
32
- const Progress0Icon = forwardRef(function Progress0Icon(props, ref) {
32
+ const Progress0DoubleIcon = forwardRef(function Progress0DoubleIcon(props, ref) {
33
33
  return createElement(IconBase, Object.assign({}, props, {
34
- id: "progress-0-icon",
34
+ id: "progress-0-double-icon",
35
35
  ref,
36
36
  icon: element
37
37
  }));
38
38
  });
39
- Progress0Icon.displayName = "Progress0Icon";
39
+ Progress0DoubleIcon.displayName = "Progress0DoubleIcon";
40
40
  //#endregion
41
- export { Progress0Icon, Progress0Icon as default };
41
+ export { Progress0DoubleIcon, Progress0DoubleIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const Progress100DoubleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default Progress100DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { createElement, forwardRef } from "react";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-100-icon.tsx
3
+ //#region ts/progress-100-double-icon.tsx
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -29,13 +29,13 @@ const element = {
29
29
  }
30
30
  }]
31
31
  };
32
- const Progress100Icon = forwardRef(function Progress100Icon(props, ref) {
32
+ const Progress100DoubleIcon = forwardRef(function Progress100DoubleIcon(props, ref) {
33
33
  return createElement(IconBase, Object.assign({}, props, {
34
- id: "progress-100-icon",
34
+ id: "progress-100-double-icon",
35
35
  ref,
36
36
  icon: element
37
37
  }));
38
38
  });
39
- Progress100Icon.displayName = "Progress100Icon";
39
+ Progress100DoubleIcon.displayName = "Progress100DoubleIcon";
40
40
  //#endregion
41
- export { Progress100Icon, Progress100Icon as default };
41
+ export { Progress100DoubleIcon, Progress100DoubleIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const Progress25DoubleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default Progress25DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { createElement, forwardRef } from "react";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-25-icon.tsx
3
+ //#region ts/progress-25-double-icon.tsx
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -39,13 +39,13 @@ const element = {
39
39
  }
40
40
  ]
41
41
  };
42
- const Progress25Icon = forwardRef(function Progress25Icon(props, ref) {
42
+ const Progress25DoubleIcon = forwardRef(function Progress25DoubleIcon(props, ref) {
43
43
  return createElement(IconBase, Object.assign({}, props, {
44
- id: "progress-25-icon",
44
+ id: "progress-25-double-icon",
45
45
  ref,
46
46
  icon: element
47
47
  }));
48
48
  });
49
- Progress25Icon.displayName = "Progress25Icon";
49
+ Progress25DoubleIcon.displayName = "Progress25DoubleIcon";
50
50
  //#endregion
51
- export { Progress25Icon, Progress25Icon as default };
51
+ export { Progress25DoubleIcon, Progress25DoubleIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const Progress50DoubleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default Progress50DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { createElement, forwardRef } from "react";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-50-icon.tsx
3
+ //#region ts/progress-50-double-icon.tsx
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -39,13 +39,13 @@ const element = {
39
39
  }
40
40
  ]
41
41
  };
42
- const Progress50Icon = forwardRef(function Progress50Icon(props, ref) {
42
+ const Progress50DoubleIcon = forwardRef(function Progress50DoubleIcon(props, ref) {
43
43
  return createElement(IconBase, Object.assign({}, props, {
44
- id: "progress-50-icon",
44
+ id: "progress-50-double-icon",
45
45
  ref,
46
46
  icon: element
47
47
  }));
48
48
  });
49
- Progress50Icon.displayName = "Progress50Icon";
49
+ Progress50DoubleIcon.displayName = "Progress50DoubleIcon";
50
50
  //#endregion
51
- export { Progress50Icon, Progress50Icon as default };
51
+ export { Progress50DoubleIcon, Progress50DoubleIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const Progress75DoubleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default Progress75DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { createElement, forwardRef } from "react";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-75-icon.tsx
3
+ //#region ts/progress-75-double-icon.tsx
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -39,13 +39,13 @@ const element = {
39
39
  }
40
40
  ]
41
41
  };
42
- const Progress75Icon = forwardRef(function Progress75Icon(props, ref) {
42
+ const Progress75DoubleIcon = forwardRef(function Progress75DoubleIcon(props, ref) {
43
43
  return createElement(IconBase, Object.assign({}, props, {
44
- id: "progress-75-icon",
44
+ id: "progress-75-double-icon",
45
45
  ref,
46
46
  icon: element
47
47
  }));
48
48
  });
49
- Progress75Icon.displayName = "Progress75Icon";
49
+ Progress75DoubleIcon.displayName = "Progress75DoubleIcon";
50
50
  //#endregion
51
- export { Progress75Icon, Progress75Icon as default };
51
+ export { Progress75DoubleIcon, Progress75DoubleIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const TextWrapShapeIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default TextWrapShapeIcon;
@@ -0,0 +1,122 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/text-wrap-shape-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": 17,
18
+ "height": 1.2,
19
+ "x": 1.5,
20
+ "y": 2.45,
21
+ "fill": "currentColor",
22
+ "rx": .6
23
+ }
24
+ },
25
+ {
26
+ "tag": "rect",
27
+ "attrs": {
28
+ "width": 3.25,
29
+ "height": 1.2,
30
+ "x": 1.5,
31
+ "y": 6.1,
32
+ "fill": "currentColor",
33
+ "rx": .6
34
+ }
35
+ },
36
+ {
37
+ "tag": "rect",
38
+ "attrs": {
39
+ "width": 3.25,
40
+ "height": 1.2,
41
+ "x": 15.25,
42
+ "y": 6.1,
43
+ "fill": "currentColor",
44
+ "rx": .6
45
+ }
46
+ },
47
+ {
48
+ "tag": "rect",
49
+ "attrs": {
50
+ "width": 3.25,
51
+ "height": 1.2,
52
+ "x": 1.5,
53
+ "y": 9.4,
54
+ "fill": "currentColor",
55
+ "rx": .6
56
+ }
57
+ },
58
+ {
59
+ "tag": "rect",
60
+ "attrs": {
61
+ "width": 3.25,
62
+ "height": 1.2,
63
+ "x": 15.25,
64
+ "y": 9.4,
65
+ "fill": "currentColor",
66
+ "rx": .6
67
+ }
68
+ },
69
+ {
70
+ "tag": "rect",
71
+ "attrs": {
72
+ "width": 3.25,
73
+ "height": 1.2,
74
+ "x": 1.5,
75
+ "y": 12.7,
76
+ "fill": "currentColor",
77
+ "rx": .6
78
+ }
79
+ },
80
+ {
81
+ "tag": "rect",
82
+ "attrs": {
83
+ "width": 3.25,
84
+ "height": 1.2,
85
+ "x": 15.25,
86
+ "y": 12.7,
87
+ "fill": "currentColor",
88
+ "rx": .6
89
+ }
90
+ },
91
+ {
92
+ "tag": "rect",
93
+ "attrs": {
94
+ "width": 17,
95
+ "height": 1.2,
96
+ "x": 1.5,
97
+ "y": 16.35,
98
+ "fill": "currentColor",
99
+ "rx": .6
100
+ }
101
+ },
102
+ {
103
+ "tag": "path",
104
+ "attrs": {
105
+ "fill": "currentColor",
106
+ "d": "M7.55 5.45C6.50066 5.45 5.65 6.30066 5.65 7.35V12.65C5.65 13.6993 6.50066 14.55 7.55 14.55H12.45C13.4993 14.55 14.35 13.6993 14.35 12.65V7.35C14.35 6.30066 13.4993 5.45 12.45 5.45H7.55ZM7.8 6.75C7.24772 6.75 6.8 7.19772 6.8 7.75V12.25C6.8 12.8023 7.24772 13.25 7.8 13.25H12.2C12.7523 13.25 13.2 12.8023 13.2 12.25V7.75C13.2 7.19772 12.7523 6.75 12.2 6.75H7.8Z",
107
+ "fillRule": "evenodd",
108
+ "clipRule": "evenodd"
109
+ }
110
+ }
111
+ ]
112
+ };
113
+ const TextWrapShapeIcon = forwardRef(function TextWrapShapeIcon(props, ref) {
114
+ return createElement(IconBase, Object.assign({}, props, {
115
+ id: "text-wrap-shape-icon",
116
+ ref,
117
+ icon: element
118
+ }));
119
+ });
120
+ TextWrapShapeIcon.displayName = "TextWrapShapeIcon";
121
+ //#endregion
122
+ export { TextWrapShapeIcon, TextWrapShapeIcon as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/icons",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "description": "React icons for Univer.",
5
5
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
6
6
  "license": "MIT",
@@ -26,8 +26,9 @@
26
26
  },
27
27
  "exports": {
28
28
  ".": {
29
+ "types": "./dist/esm/index.d.ts",
29
30
  "import": "./dist/esm/index.js",
30
- "require": "./dist/cjs/index.js"
31
+ "require": "./dist/cjs/index.cjs"
31
32
  }
32
33
  },
33
34
  "main": "dist/esm/index.js",
@@ -45,7 +46,7 @@
45
46
  "svg-parser": "^2.0.4",
46
47
  "svgo": "^4.0.1",
47
48
  "typescript": "^6.0.3",
48
- "@univerjs/icons-svg": "1.10.0"
49
+ "@univerjs/icons-svg": "1.12.0"
49
50
  },
50
51
  "scripts": {
51
52
  "build": "node --experimental-strip-types ./scripts/build/index.ts && tsc"
@@ -1,72 +0,0 @@
1
- Object.defineProperties(exports, {
2
- __esModule: { value: true },
3
- [Symbol.toStringTag]: { value: "Module" }
4
- });
5
- let react = require("react");
6
- let ts_base_js = require("./base.js");
7
- //#region ts/sequence-icon.tsx
8
- const element = {
9
- "tag": "svg",
10
- "attrs": {
11
- "xmlns": "http://www.w3.org/2000/svg",
12
- "fill": "none",
13
- "viewBox": "0 0 16 16",
14
- "width": "1em",
15
- "height": "1em"
16
- },
17
- "children": [
18
- {
19
- "tag": "path",
20
- "attrs": {
21
- "fill": "currentColor",
22
- "d": "M6 5C6.55228 5 7 4.55228 7 4C7 3.44772 6.55228 3 6 3C5.44772 3 5 3.44772 5 4C5 4.55228 5.44772 5 6 5Z"
23
- }
24
- },
25
- {
26
- "tag": "path",
27
- "attrs": {
28
- "fill": "currentColor",
29
- "d": "M6 9C6.55228 9 7 8.55229 7 8C7 7.44772 6.55228 7 6 7C5.44772 7 5 7.44772 5 8C5 8.55229 5.44772 9 6 9Z"
30
- }
31
- },
32
- {
33
- "tag": "path",
34
- "attrs": {
35
- "fill": "currentColor",
36
- "d": "M7 12C7 12.5523 6.55228 13 6 13C5.44772 13 5 12.5523 5 12C5 11.4477 5.44772 11 6 11C6.55228 11 7 11.4477 7 12Z"
37
- }
38
- },
39
- {
40
- "tag": "path",
41
- "attrs": {
42
- "fill": "currentColor",
43
- "d": "M10 5C10.5523 5 11 4.55228 11 4C11 3.44772 10.5523 3 10 3C9.44771 3 9 3.44772 9 4C9 4.55228 9.44771 5 10 5Z"
44
- }
45
- },
46
- {
47
- "tag": "path",
48
- "attrs": {
49
- "fill": "currentColor",
50
- "d": "M11 8C11 8.55229 10.5523 9 10 9C9.44771 9 9 8.55229 9 8C9 7.44772 9.44771 7 10 7C10.5523 7 11 7.44772 11 8Z"
51
- }
52
- },
53
- {
54
- "tag": "path",
55
- "attrs": {
56
- "fill": "currentColor",
57
- "d": "M10 13C10.5523 13 11 12.5523 11 12C11 11.4477 10.5523 11 10 11C9.44771 11 9 11.4477 9 12C9 12.5523 9.44771 13 10 13Z"
58
- }
59
- }
60
- ]
61
- };
62
- const SequenceIcon = (0, react.forwardRef)(function SequenceIcon(props, ref) {
63
- return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
64
- id: "sequence-icon",
65
- ref,
66
- icon: element
67
- }));
68
- });
69
- SequenceIcon.displayName = "SequenceIcon";
70
- //#endregion
71
- exports.SequenceIcon = SequenceIcon;
72
- exports.default = SequenceIcon;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from './base.js';
2
- export declare const Progress0Icon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
- export default Progress0Icon;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from './base.js';
2
- export declare const Progress100Icon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
- export default Progress100Icon;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from './base.js';
2
- export declare const Progress25Icon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
- export default Progress25Icon;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from './base.js';
2
- export declare const Progress50Icon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
- export default Progress50Icon;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from './base.js';
2
- export declare const Progress75Icon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
- export default Progress75Icon;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from './base.js';
2
- export declare const SequenceIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
- export default SequenceIcon;