@univerjs/icons-vue 1.8.0 → 1.10.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.
@@ -12,12 +12,15 @@ const element = {
12
12
  },
13
13
  "children": [
14
14
  {
15
- "tag": "path",
15
+ "tag": "rect",
16
16
  "attrs": {
17
+ "width": 11.4,
18
+ "height": 6.6,
19
+ "x": 2.3,
20
+ "y": 3.2,
17
21
  "stroke": "currentColor",
18
- "stroke-linejoin": "round",
19
22
  "stroke-width": 1.3,
20
- "d": "M3.2 3.9H12.8C13.6 3.9 14.2 4.5 14.2 5.3V10.1C14.2 10.9 13.6 11.5 12.8 11.5H9.2L6.4 13.7V11.5H3.2C2.4 11.5 1.8 10.9 1.8 10.1V5.3C1.8 4.5 2.4 3.9 3.2 3.9Z"
23
+ "rx": .9
21
24
  }
22
25
  },
23
26
  {
@@ -26,7 +29,7 @@ const element = {
26
29
  "stroke": "currentColor",
27
30
  "stroke-linecap": "round",
28
31
  "stroke-width": 1.3,
29
- "d": "M4.8 5.7V9.7"
32
+ "d": "M4.9 12H11.1"
30
33
  }
31
34
  },
32
35
  {
@@ -35,16 +38,7 @@ const element = {
35
38
  "stroke": "currentColor",
36
39
  "stroke-linecap": "round",
37
40
  "stroke-width": 1.3,
38
- "d": "M8.4 5.7V8"
39
- }
40
- },
41
- {
42
- "tag": "path",
43
- "attrs": {
44
- "stroke": "currentColor",
45
- "stroke-linecap": "round",
46
- "stroke-width": 1.6,
47
- "d": "M8.4 9.8H8.5"
41
+ "d": "M6.3 14H9.7"
48
42
  }
49
43
  }
50
44
  ]
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const FlipHorizontalIcon: 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 FlipHorizontalIcon;
@@ -0,0 +1,89 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/flip-horizontal-icon.ts
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "stroke": "currentColor",
18
+ "stroke-linecap": "round",
19
+ "stroke-linejoin": "round",
20
+ "stroke-width": 1.3,
21
+ "d": "M2.6 3.3L6.2 8L2.6 12.7V3.3Z"
22
+ }
23
+ },
24
+ {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.3,
31
+ "d": "M13.4 3.3L9.8 8L13.4 12.7V3.3Z"
32
+ }
33
+ },
34
+ {
35
+ "tag": "path",
36
+ "attrs": {
37
+ "stroke": "currentColor",
38
+ "stroke-linecap": "round",
39
+ "stroke-width": 1.2,
40
+ "d": "M8 2.2V3.8"
41
+ }
42
+ },
43
+ {
44
+ "tag": "path",
45
+ "attrs": {
46
+ "stroke": "currentColor",
47
+ "stroke-linecap": "round",
48
+ "stroke-width": 1.2,
49
+ "d": "M8 6.2V7.8"
50
+ }
51
+ },
52
+ {
53
+ "tag": "path",
54
+ "attrs": {
55
+ "stroke": "currentColor",
56
+ "stroke-linecap": "round",
57
+ "stroke-width": 1.2,
58
+ "d": "M8 10.2V11.8"
59
+ }
60
+ },
61
+ {
62
+ "tag": "path",
63
+ "attrs": {
64
+ "stroke": "currentColor",
65
+ "stroke-linecap": "round",
66
+ "stroke-width": 1.2,
67
+ "d": "M8 14V14.2"
68
+ }
69
+ }
70
+ ]
71
+ };
72
+ const FlipHorizontalIcon = defineComponent({
73
+ name: "FlipHorizontalIcon",
74
+ inheritAttrs: false,
75
+ props: { extend: {
76
+ type: Object,
77
+ default: void 0
78
+ } },
79
+ setup(props, { attrs }) {
80
+ return () => h(IconBase, {
81
+ ...attrs,
82
+ extend: props.extend,
83
+ id: "flip-horizontal-icon",
84
+ icon: element
85
+ });
86
+ }
87
+ });
88
+ //#endregion
89
+ export { FlipHorizontalIcon, FlipHorizontalIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const FlipVerticalIcon: 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 FlipVerticalIcon;
@@ -0,0 +1,89 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/flip-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 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "stroke": "currentColor",
18
+ "stroke-linecap": "round",
19
+ "stroke-linejoin": "round",
20
+ "stroke-width": 1.3,
21
+ "d": "M3.3 2.6L8 6.2L12.7 2.6H3.3Z"
22
+ }
23
+ },
24
+ {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.3,
31
+ "d": "M3.3 13.4L8 9.8L12.7 13.4H3.3Z"
32
+ }
33
+ },
34
+ {
35
+ "tag": "path",
36
+ "attrs": {
37
+ "stroke": "currentColor",
38
+ "stroke-linecap": "round",
39
+ "stroke-width": 1.2,
40
+ "d": "M2.2 8H3.8"
41
+ }
42
+ },
43
+ {
44
+ "tag": "path",
45
+ "attrs": {
46
+ "stroke": "currentColor",
47
+ "stroke-linecap": "round",
48
+ "stroke-width": 1.2,
49
+ "d": "M6.2 8H7.8"
50
+ }
51
+ },
52
+ {
53
+ "tag": "path",
54
+ "attrs": {
55
+ "stroke": "currentColor",
56
+ "stroke-linecap": "round",
57
+ "stroke-width": 1.2,
58
+ "d": "M10.2 8H11.8"
59
+ }
60
+ },
61
+ {
62
+ "tag": "path",
63
+ "attrs": {
64
+ "stroke": "currentColor",
65
+ "stroke-linecap": "round",
66
+ "stroke-width": 1.2,
67
+ "d": "M14 8H14.2"
68
+ }
69
+ }
70
+ ]
71
+ };
72
+ const FlipVerticalIcon = defineComponent({
73
+ name: "FlipVerticalIcon",
74
+ inheritAttrs: false,
75
+ props: { extend: {
76
+ type: Object,
77
+ default: void 0
78
+ } },
79
+ setup(props, { attrs }) {
80
+ return () => h(IconBase, {
81
+ ...attrs,
82
+ extend: props.extend,
83
+ id: "flip-vertical-icon",
84
+ icon: element
85
+ });
86
+ }
87
+ });
88
+ //#endregion
89
+ export { FlipVerticalIcon, FlipVerticalIcon as default };
@@ -77,6 +77,8 @@ export { EyeOutlineIcon } from './eye-outline-icon.js';
77
77
  export { EyelashIcon } from './eyelash-icon.js';
78
78
  export { FilterIcon } from './filter-icon.js';
79
79
  export { FlagIcon } from './flag-icon.js';
80
+ export { FlipHorizontalIcon } from './flip-horizontal-icon.js';
81
+ export { FlipVerticalIcon } from './flip-vertical-icon.js';
80
82
  export { FolderIcon } from './folder-icon.js';
81
83
  export { FontSizeIncreaseIcon } from './font-size-increase-icon.js';
82
84
  export { FontSizeReduceIcon } from './font-size-reduce-icon.js';
@@ -285,6 +287,7 @@ export { ShapeFlowChartSortIcon } from './shape-flow-chart-sort-icon.js';
285
287
  export { ShapeFlowChartSummingJunctionIcon } from './shape-flow-chart-summing-junction-icon.js';
286
288
  export { ShapeFlowChartTerminatorIcon } from './shape-flow-chart-terminator-icon.js';
287
289
  export { ShapeFolderCornerIcon } from './shape-folder-corner-icon.js';
290
+ export { ShapeFormatSettingIcon } from './shape-format-setting-icon.js';
288
291
  export { ShapeFrameIcon } from './shape-frame-icon.js';
289
292
  export { ShapeFunnelIcon } from './shape-funnel-icon.js';
290
293
  export { ShapeGear6Icon } from './shape-gear6-icon.js';
@@ -384,6 +387,8 @@ export { ShareIcon } from './share-icon.js';
384
387
  export { ShareRangeIcon } from './share-range-icon.js';
385
388
  export { SheetIcon } from './sheet-icon.js';
386
389
  export { ShortcutIcon } from './shortcut-icon.js';
390
+ export { SlideshowPlayIcon } from './slideshow-play-icon.js';
391
+ export { SlideshowThemeIcon } from './slideshow-theme-icon.js';
387
392
  export { SolveIcon } from './solve-icon.js';
388
393
  export { StrikethroughIcon } from './strikethrough-icon.js';
389
394
  export { SubscriptIcon } from './subscript-icon.js';
@@ -397,6 +402,7 @@ export { TextTypeIcon } from './text-type-icon.js';
397
402
  export { TopmostIcon } from './topmost-icon.js';
398
403
  export { TriangleIcon } from './triangle-icon.js';
399
404
  export { TruncationIcon } from './truncation-icon.js';
405
+ export { TypographyIcon } from './typography-icon.js';
400
406
  export { UnderlineIcon } from './underline-icon.js';
401
407
  export { UndoIcon } from './undo-icon.js';
402
408
  export { UngroupIcon } from './ungroup-icon.js';
package/dist/esm/index.js CHANGED
@@ -77,6 +77,8 @@ import { EyeOutlineIcon } from "./eye-outline-icon.js";
77
77
  import { EyelashIcon } from "./eyelash-icon.js";
78
78
  import { FilterIcon } from "./filter-icon.js";
79
79
  import { FlagIcon } from "./flag-icon.js";
80
+ import { FlipHorizontalIcon } from "./flip-horizontal-icon.js";
81
+ import { FlipVerticalIcon } from "./flip-vertical-icon.js";
80
82
  import { FolderIcon } from "./folder-icon.js";
81
83
  import { FontSizeIncreaseIcon } from "./font-size-increase-icon.js";
82
84
  import { FontSizeReduceIcon } from "./font-size-reduce-icon.js";
@@ -285,6 +287,7 @@ import { ShapeFlowChartSortIcon } from "./shape-flow-chart-sort-icon.js";
285
287
  import { ShapeFlowChartSummingJunctionIcon } from "./shape-flow-chart-summing-junction-icon.js";
286
288
  import { ShapeFlowChartTerminatorIcon } from "./shape-flow-chart-terminator-icon.js";
287
289
  import { ShapeFolderCornerIcon } from "./shape-folder-corner-icon.js";
290
+ import { ShapeFormatSettingIcon } from "./shape-format-setting-icon.js";
288
291
  import { ShapeFrameIcon } from "./shape-frame-icon.js";
289
292
  import { ShapeFunnelIcon } from "./shape-funnel-icon.js";
290
293
  import { ShapeGear6Icon } from "./shape-gear6-icon.js";
@@ -384,6 +387,8 @@ import { ShareIcon } from "./share-icon.js";
384
387
  import { ShareRangeIcon } from "./share-range-icon.js";
385
388
  import { SheetIcon } from "./sheet-icon.js";
386
389
  import { ShortcutIcon } from "./shortcut-icon.js";
390
+ import { SlideshowPlayIcon } from "./slideshow-play-icon.js";
391
+ import { SlideshowThemeIcon } from "./slideshow-theme-icon.js";
387
392
  import { SolveIcon } from "./solve-icon.js";
388
393
  import { StrikethroughIcon } from "./strikethrough-icon.js";
389
394
  import { SubscriptIcon } from "./subscript-icon.js";
@@ -397,6 +402,7 @@ import { TextTypeIcon } from "./text-type-icon.js";
397
402
  import { TopmostIcon } from "./topmost-icon.js";
398
403
  import { TriangleIcon } from "./triangle-icon.js";
399
404
  import { TruncationIcon } from "./truncation-icon.js";
405
+ import { TypographyIcon } from "./typography-icon.js";
400
406
  import { UnderlineIcon } from "./underline-icon.js";
401
407
  import { UndoIcon } from "./undo-icon.js";
402
408
  import { UngroupIcon } from "./ungroup-icon.js";
@@ -493,4 +499,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
493
499
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
494
500
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
495
501
  import { WarnDoubleIcon } from "./warn-double-icon.js";
496
- 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, 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, 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, SmileDoubleIcon, SolveIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StrikethroughIcon, SubscriptIcon, SuccessIcon, SumIcon, SuperscriptIcon, SymbolsIcon, TableIcon, TextIcon, TextTypeIcon, TodoListDoubleIcon, TopmostIcon, TriangleIcon, TruncationIcon, 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 };
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 };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const ShapeFormatSettingIcon: 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 ShapeFormatSettingIcon;
@@ -0,0 +1,80 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/shape-format-setting-icon.ts
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "path",
16
+ "attrs": {
17
+ "stroke": "currentColor",
18
+ "stroke-linecap": "round",
19
+ "stroke-linejoin": "round",
20
+ "stroke-width": 1.3,
21
+ "d": "M10.4 5.8V3.8C10.4 3.19249 9.90751 2.7 9.3 2.7H3.1C2.49249 2.7 2 3.19249 2 3.8V8.4C2 9.00751 2.49249 9.5 3.1 9.5H6.7"
22
+ }
23
+ },
24
+ {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "stroke-linecap": "round",
29
+ "stroke-width": 1.3,
30
+ "d": "M4.2 5.1H8"
31
+ }
32
+ },
33
+ {
34
+ "tag": "path",
35
+ "attrs": {
36
+ "stroke": "currentColor",
37
+ "stroke-linecap": "round",
38
+ "stroke-width": 1.3,
39
+ "d": "M4.2 7.3H6.8"
40
+ }
41
+ },
42
+ {
43
+ "tag": "path",
44
+ "attrs": {
45
+ "stroke": "currentColor",
46
+ "stroke-linejoin": "round",
47
+ "stroke-width": 1.15,
48
+ "d": "M10.35 7.6H11.2L11.65 8.35L12.5 8.15L13.1 8.75L12.9 9.6L13.65 10.05V10.9L12.9 11.35L13.1 12.2L12.5 12.8L11.65 12.6L11.2 13.35H10.35L9.9 12.6L9.05 12.8L8.45 12.2L8.65 11.35L7.9 10.9V10.05L8.65 9.6L8.45 8.75L9.05 8.15L9.9 8.35L10.35 7.6Z"
49
+ }
50
+ },
51
+ {
52
+ "tag": "circle",
53
+ "attrs": {
54
+ "cx": 10.78,
55
+ "cy": 10.48,
56
+ "r": 1.05,
57
+ "stroke": "currentColor",
58
+ "stroke-width": 1.15
59
+ }
60
+ }
61
+ ]
62
+ };
63
+ const ShapeFormatSettingIcon = defineComponent({
64
+ name: "ShapeFormatSettingIcon",
65
+ inheritAttrs: false,
66
+ props: { extend: {
67
+ type: Object,
68
+ default: void 0
69
+ } },
70
+ setup(props, { attrs }) {
71
+ return () => h(IconBase, {
72
+ ...attrs,
73
+ extend: props.extend,
74
+ id: "shape-format-setting-icon",
75
+ icon: element
76
+ });
77
+ }
78
+ });
79
+ //#endregion
80
+ export { ShapeFormatSettingIcon, ShapeFormatSettingIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const SlideshowPlayIcon: 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 SlideshowPlayIcon;
@@ -0,0 +1,70 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/slideshow-play-icon.ts
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [
14
+ {
15
+ "tag": "rect",
16
+ "attrs": {
17
+ "width": 11.8,
18
+ "height": 8.2,
19
+ "x": 2.1,
20
+ "y": 2.6,
21
+ "stroke": "currentColor",
22
+ "stroke-width": 1.3,
23
+ "rx": 1.1
24
+ }
25
+ },
26
+ {
27
+ "tag": "path",
28
+ "attrs": {
29
+ "fill": "currentColor",
30
+ "d": "M7.1 5.7V7.9C7.1 8.34551 7.59008 8.61687 7.96748 8.37991L9.71862 7.28094C10.0717 7.05931 10.0717 6.54069 9.71862 6.31906L7.96748 5.22009C7.59008 4.98313 7.1 5.25449 7.1 5.7Z"
31
+ }
32
+ },
33
+ {
34
+ "tag": "path",
35
+ "attrs": {
36
+ "stroke": "currentColor",
37
+ "stroke-linecap": "round",
38
+ "stroke-width": 1.3,
39
+ "d": "M8 10.8V12.8"
40
+ }
41
+ },
42
+ {
43
+ "tag": "path",
44
+ "attrs": {
45
+ "stroke": "currentColor",
46
+ "stroke-linecap": "round",
47
+ "stroke-width": 1.3,
48
+ "d": "M5.5 13.4H10.5"
49
+ }
50
+ }
51
+ ]
52
+ };
53
+ const SlideshowPlayIcon = defineComponent({
54
+ name: "SlideshowPlayIcon",
55
+ inheritAttrs: false,
56
+ props: { extend: {
57
+ type: Object,
58
+ default: void 0
59
+ } },
60
+ setup(props, { attrs }) {
61
+ return () => h(IconBase, {
62
+ ...attrs,
63
+ extend: props.extend,
64
+ id: "slideshow-play-icon",
65
+ icon: element
66
+ });
67
+ }
68
+ });
69
+ //#endregion
70
+ export { SlideshowPlayIcon, SlideshowPlayIcon as default };
@@ -0,0 +1,18 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const SlideshowThemeIcon: 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 SlideshowThemeIcon;