@univerjs/icons-vue 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 (31) hide show
  1. package/dist/cjs/crop-icon.cjs +64 -0
  2. package/dist/cjs/grip-vertical-icon.cjs +92 -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 +135 -0
  10. package/dist/esm/{sequence-icon.d.ts → crop-icon.d.ts} +2 -2
  11. package/dist/esm/crop-icon.js +59 -0
  12. package/dist/esm/{progress-0-icon.d.ts → grip-vertical-icon.d.ts} +2 -2
  13. package/dist/esm/grip-vertical-icon.js +87 -0
  14. package/dist/esm/index.d.ts +8 -6
  15. package/dist/esm/index.js +9 -7
  16. package/dist/esm/{progress-25-icon.d.ts → progress-0-double-icon.d.ts} +2 -2
  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 +18 -0
  19. package/dist/esm/{progress-100-icon.js → progress-100-double-icon.js} +5 -5
  20. package/dist/esm/{progress-50-icon.d.ts → progress-25-double-icon.d.ts} +2 -2
  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 +18 -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 +18 -0
  25. package/dist/esm/{progress-75-icon.js → progress-75-double-icon.js} +5 -5
  26. package/dist/esm/{progress-100-icon.d.ts → text-wrap-shape-icon.d.ts} +2 -2
  27. package/dist/esm/text-wrap-shape-icon.js +130 -0
  28. package/package.json +2 -2
  29. package/dist/cjs/sequence-icon.cjs +0 -80
  30. package/dist/esm/progress-75-icon.d.ts +0 -18
  31. package/dist/esm/sequence-icon.js +0 -75
@@ -1,6 +1,6 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { IExtendProps } from './base.js';
3
- export declare const Progress0Icon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ export declare const GripVerticalIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  extend: {
5
5
  type: PropType<IExtendProps>;
6
6
  default: undefined;
@@ -15,4 +15,4 @@ export declare const Progress0Icon: import("vue").DefineComponent<import("vue").
15
15
  }>> & Readonly<{}>, {
16
16
  extend: IExtendProps;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
- export default Progress0Icon;
18
+ export default GripVerticalIcon;
@@ -0,0 +1,87 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/grip-vertical-icon.ts
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 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 = defineComponent({
71
+ name: "GripVerticalIcon",
72
+ inheritAttrs: false,
73
+ props: { extend: {
74
+ type: Object,
75
+ default: void 0
76
+ } },
77
+ setup(props, { attrs }) {
78
+ return () => h(IconBase, {
79
+ ...attrs,
80
+ extend: props.extend,
81
+ id: "grip-vertical-icon",
82
+ icon: element
83
+ });
84
+ }
85
+ });
86
+ //#endregion
87
+ 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 };
@@ -1,6 +1,6 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { IExtendProps } from './base.js';
3
- export declare const Progress25Icon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ export declare const Progress0DoubleIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  extend: {
5
5
  type: PropType<IExtendProps>;
6
6
  default: undefined;
@@ -15,4 +15,4 @@ export declare const Progress25Icon: import("vue").DefineComponent<import("vue")
15
15
  }>> & Readonly<{}>, {
16
16
  extend: IExtendProps;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
- export default Progress25Icon;
18
+ export default Progress0DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, h } from "vue";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-0-icon.ts
3
+ //#region ts/progress-0-double-icon.ts
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -29,8 +29,8 @@ const element = {
29
29
  }
30
30
  }]
31
31
  };
32
- const Progress0Icon = defineComponent({
33
- name: "Progress0Icon",
32
+ const Progress0DoubleIcon = defineComponent({
33
+ name: "Progress0DoubleIcon",
34
34
  inheritAttrs: false,
35
35
  props: { extend: {
36
36
  type: Object,
@@ -40,10 +40,10 @@ const Progress0Icon = defineComponent({
40
40
  return () => h(IconBase, {
41
41
  ...attrs,
42
42
  extend: props.extend,
43
- id: "progress-0-icon",
43
+ id: "progress-0-double-icon",
44
44
  icon: element
45
45
  });
46
46
  }
47
47
  });
48
48
  //#endregion
49
- export { Progress0Icon, Progress0Icon as default };
49
+ export { Progress0DoubleIcon, Progress0DoubleIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const Progress100DoubleIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default Progress100DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, h } from "vue";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-100-icon.ts
3
+ //#region ts/progress-100-double-icon.ts
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -29,8 +29,8 @@ const element = {
29
29
  }
30
30
  }]
31
31
  };
32
- const Progress100Icon = defineComponent({
33
- name: "Progress100Icon",
32
+ const Progress100DoubleIcon = defineComponent({
33
+ name: "Progress100DoubleIcon",
34
34
  inheritAttrs: false,
35
35
  props: { extend: {
36
36
  type: Object,
@@ -40,10 +40,10 @@ const Progress100Icon = defineComponent({
40
40
  return () => h(IconBase, {
41
41
  ...attrs,
42
42
  extend: props.extend,
43
- id: "progress-100-icon",
43
+ id: "progress-100-double-icon",
44
44
  icon: element
45
45
  });
46
46
  }
47
47
  });
48
48
  //#endregion
49
- export { Progress100Icon, Progress100Icon as default };
49
+ export { Progress100DoubleIcon, Progress100DoubleIcon as default };
@@ -1,6 +1,6 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { IExtendProps } from './base.js';
3
- export declare const Progress50Icon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ export declare const Progress25DoubleIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  extend: {
5
5
  type: PropType<IExtendProps>;
6
6
  default: undefined;
@@ -15,4 +15,4 @@ export declare const Progress50Icon: import("vue").DefineComponent<import("vue")
15
15
  }>> & Readonly<{}>, {
16
16
  extend: IExtendProps;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
- export default Progress50Icon;
18
+ export default Progress25DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, h } from "vue";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-25-icon.ts
3
+ //#region ts/progress-25-double-icon.ts
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -39,8 +39,8 @@ const element = {
39
39
  }
40
40
  ]
41
41
  };
42
- const Progress25Icon = defineComponent({
43
- name: "Progress25Icon",
42
+ const Progress25DoubleIcon = defineComponent({
43
+ name: "Progress25DoubleIcon",
44
44
  inheritAttrs: false,
45
45
  props: { extend: {
46
46
  type: Object,
@@ -50,10 +50,10 @@ const Progress25Icon = defineComponent({
50
50
  return () => h(IconBase, {
51
51
  ...attrs,
52
52
  extend: props.extend,
53
- id: "progress-25-icon",
53
+ id: "progress-25-double-icon",
54
54
  icon: element
55
55
  });
56
56
  }
57
57
  });
58
58
  //#endregion
59
- export { Progress25Icon, Progress25Icon as default };
59
+ export { Progress25DoubleIcon, Progress25DoubleIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const Progress50DoubleIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default Progress50DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, h } from "vue";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-50-icon.ts
3
+ //#region ts/progress-50-double-icon.ts
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -39,8 +39,8 @@ const element = {
39
39
  }
40
40
  ]
41
41
  };
42
- const Progress50Icon = defineComponent({
43
- name: "Progress50Icon",
42
+ const Progress50DoubleIcon = defineComponent({
43
+ name: "Progress50DoubleIcon",
44
44
  inheritAttrs: false,
45
45
  props: { extend: {
46
46
  type: Object,
@@ -50,10 +50,10 @@ const Progress50Icon = defineComponent({
50
50
  return () => h(IconBase, {
51
51
  ...attrs,
52
52
  extend: props.extend,
53
- id: "progress-50-icon",
53
+ id: "progress-50-double-icon",
54
54
  icon: element
55
55
  });
56
56
  }
57
57
  });
58
58
  //#endregion
59
- export { Progress50Icon, Progress50Icon as default };
59
+ export { Progress50DoubleIcon, Progress50DoubleIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const Progress75DoubleIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ extend: {
5
+ type: PropType<IExtendProps>;
6
+ default: undefined;
7
+ };
8
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
9
+ [key: string]: any;
10
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
11
+ extend: {
12
+ type: PropType<IExtendProps>;
13
+ default: undefined;
14
+ };
15
+ }>> & Readonly<{}>, {
16
+ extend: IExtendProps;
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
+ export default Progress75DoubleIcon;
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, h } from "vue";
2
2
  import { IconBase } from "./base.js";
3
- //#region ts/progress-75-icon.ts
3
+ //#region ts/progress-75-double-icon.ts
4
4
  const element = {
5
5
  "tag": "svg",
6
6
  "attrs": {
@@ -39,8 +39,8 @@ const element = {
39
39
  }
40
40
  ]
41
41
  };
42
- const Progress75Icon = defineComponent({
43
- name: "Progress75Icon",
42
+ const Progress75DoubleIcon = defineComponent({
43
+ name: "Progress75DoubleIcon",
44
44
  inheritAttrs: false,
45
45
  props: { extend: {
46
46
  type: Object,
@@ -50,10 +50,10 @@ const Progress75Icon = defineComponent({
50
50
  return () => h(IconBase, {
51
51
  ...attrs,
52
52
  extend: props.extend,
53
- id: "progress-75-icon",
53
+ id: "progress-75-double-icon",
54
54
  icon: element
55
55
  });
56
56
  }
57
57
  });
58
58
  //#endregion
59
- export { Progress75Icon, Progress75Icon as default };
59
+ export { Progress75DoubleIcon, Progress75DoubleIcon as default };
@@ -1,6 +1,6 @@
1
1
  import type { PropType } from 'vue';
2
2
  import type { IExtendProps } from './base.js';
3
- export declare const Progress100Icon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ export declare const TextWrapShapeIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  extend: {
5
5
  type: PropType<IExtendProps>;
6
6
  default: undefined;
@@ -15,4 +15,4 @@ export declare const Progress100Icon: import("vue").DefineComponent<import("vue"
15
15
  }>> & Readonly<{}>, {
16
16
  extend: IExtendProps;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
18
- export default Progress100Icon;
18
+ export default TextWrapShapeIcon;
@@ -0,0 +1,130 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/text-wrap-shape-icon.ts
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 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
+ "fill-rule": "evenodd",
107
+ "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",
108
+ "clip-rule": "evenodd"
109
+ }
110
+ }
111
+ ]
112
+ };
113
+ const TextWrapShapeIcon = defineComponent({
114
+ name: "TextWrapShapeIcon",
115
+ inheritAttrs: false,
116
+ props: { extend: {
117
+ type: Object,
118
+ default: void 0
119
+ } },
120
+ setup(props, { attrs }) {
121
+ return () => h(IconBase, {
122
+ ...attrs,
123
+ extend: props.extend,
124
+ id: "text-wrap-shape-icon",
125
+ icon: element
126
+ });
127
+ }
128
+ });
129
+ //#endregion
130
+ export { TextWrapShapeIcon, TextWrapShapeIcon as default };