@univerjs/icons-vue 1.40.0 → 1.41.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.
@@ -515,6 +515,7 @@ let ts_stroke_size3_icon_js = require("./stroke-size3-icon.cjs");
515
515
  let ts_stroke_size4_icon_js = require("./stroke-size4-icon.cjs");
516
516
  let ts_stroke_size5_icon_js = require("./stroke-size5-icon.cjs");
517
517
  let ts_subscript_icon_js = require("./subscript-icon.cjs");
518
+ let ts_subtitle_type_icon_js = require("./subtitle-type-icon.cjs");
518
519
  let ts_success_icon_js = require("./success-icon.cjs");
519
520
  let ts_success_outline_icon_js = require("./success-outline-icon.cjs");
520
521
  let ts_sunburst_chart_icon_js = require("./sunburst-chart-icon.cjs");
@@ -530,6 +531,7 @@ let ts_text_function_icon_js = require("./text-function-icon.cjs");
530
531
  let ts_text_icon_js = require("./text-icon.cjs");
531
532
  let ts_text_type_icon_js = require("./text-type-icon.cjs");
532
533
  let ts_text_wrap_shape_icon_js = require("./text-wrap-shape-icon.cjs");
534
+ let ts_title_type_icon_js = require("./title-type-icon.cjs");
533
535
  let ts_topmost_icon_js = require("./topmost-icon.cjs");
534
536
  let ts_transitions_icon_js = require("./transitions-icon.cjs");
535
537
  let ts_treemap_chart_icon_js = require("./treemap-chart-icon.cjs");
@@ -637,6 +639,7 @@ let ts_smile_double_icon_js = require("./smile-double-icon.cjs");
637
639
  let ts_star_empty_double_icon_js = require("./star-empty-double-icon.cjs");
638
640
  let ts_star_full_double_icon_js = require("./star-full-double-icon.cjs");
639
641
  let ts_star_incomplete_double_icon_js = require("./star-incomplete-double-icon.cjs");
642
+ let ts_text_color_swatch_double_icon_js = require("./text-color-swatch-double-icon.cjs");
640
643
  let ts_todo_list_double_icon_js = require("./todo-list-double-icon.cjs");
641
644
  let ts_up_border_double_icon_js = require("./up-border-double-icon.cjs");
642
645
  let ts_vertical_border_double_icon_js = require("./vertical-border-double-icon.cjs");
@@ -4217,6 +4220,12 @@ Object.defineProperty(exports, "SubscriptIcon", {
4217
4220
  return ts_subscript_icon_js.SubscriptIcon;
4218
4221
  }
4219
4222
  });
4223
+ Object.defineProperty(exports, "SubtitleTypeIcon", {
4224
+ enumerable: true,
4225
+ get: function() {
4226
+ return ts_subtitle_type_icon_js.SubtitleTypeIcon;
4227
+ }
4228
+ });
4220
4229
  Object.defineProperty(exports, "SuccessIcon", {
4221
4230
  enumerable: true,
4222
4231
  get: function() {
@@ -4283,6 +4292,12 @@ Object.defineProperty(exports, "TableIcon", {
4283
4292
  return ts_table_icon_js.TableIcon;
4284
4293
  }
4285
4294
  });
4295
+ Object.defineProperty(exports, "TextColorSwatchDoubleIcon", {
4296
+ enumerable: true,
4297
+ get: function() {
4298
+ return ts_text_color_swatch_double_icon_js.TextColorSwatchDoubleIcon;
4299
+ }
4300
+ });
4286
4301
  Object.defineProperty(exports, "TextFunctionIcon", {
4287
4302
  enumerable: true,
4288
4303
  get: function() {
@@ -4307,6 +4322,12 @@ Object.defineProperty(exports, "TextWrapShapeIcon", {
4307
4322
  return ts_text_wrap_shape_icon_js.TextWrapShapeIcon;
4308
4323
  }
4309
4324
  });
4325
+ Object.defineProperty(exports, "TitleTypeIcon", {
4326
+ enumerable: true,
4327
+ get: function() {
4328
+ return ts_title_type_icon_js.TitleTypeIcon;
4329
+ }
4330
+ });
4310
4331
  Object.defineProperty(exports, "TodoListDoubleIcon", {
4311
4332
  enumerable: true,
4312
4333
  get: function() {
@@ -0,0 +1,53 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/subtitle-type-icon.ts
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
+ "tag": "path",
19
+ "attrs": {
20
+ "stroke": "currentColor",
21
+ "stroke-linecap": "round",
22
+ "stroke-linejoin": "round",
23
+ "stroke-width": 1.33,
24
+ "d": "M11.5 4.5C10.75 3.5 9.5 3 8 3C6 3 4.5 4 4.5 5.5C4.5 9 11.5 7 11.5 10.5C11.5 12 10 13 8 13C6.5 13 5.25 12.5 4.5 11.5"
25
+ }
26
+ }]
27
+ };
28
+ const SubtitleTypeIcon = (0, vue.defineComponent)({
29
+ name: "SubtitleTypeIcon",
30
+ inheritAttrs: false,
31
+ props: {
32
+ preserveStrokeWidth: {
33
+ type: Boolean,
34
+ default: false
35
+ },
36
+ extend: {
37
+ type: Object,
38
+ default: void 0
39
+ }
40
+ },
41
+ setup(props, { attrs }) {
42
+ return () => (0, vue.h)(ts_base_js.IconBase, {
43
+ ...attrs,
44
+ preserveStrokeWidth: props.preserveStrokeWidth,
45
+ extend: props.extend,
46
+ id: "subtitle-type-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ exports.SubtitleTypeIcon = SubtitleTypeIcon;
53
+ exports.default = SubtitleTypeIcon;
@@ -0,0 +1,64 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/text-color-swatch-double-icon.ts
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
+ "tag": "rect",
19
+ "attrs": {
20
+ "width": 14,
21
+ "height": 14,
22
+ "x": 1,
23
+ "y": 1,
24
+ "stroke": "currentColor",
25
+ "stroke-opacity": .12,
26
+ "rx": 1.75
27
+ }
28
+ }, {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "colorChannel1",
32
+ "stroke-linecap": "round",
33
+ "stroke-linejoin": "round",
34
+ "stroke-width": 1.33,
35
+ "d": "M4.75 11.5L8 4.5L11.25 11.5M6 9H10"
36
+ }
37
+ }]
38
+ };
39
+ const TextColorSwatchDoubleIcon = (0, vue.defineComponent)({
40
+ name: "TextColorSwatchDoubleIcon",
41
+ inheritAttrs: false,
42
+ props: {
43
+ preserveStrokeWidth: {
44
+ type: Boolean,
45
+ default: false
46
+ },
47
+ extend: {
48
+ type: Object,
49
+ default: void 0
50
+ }
51
+ },
52
+ setup(props, { attrs }) {
53
+ return () => (0, vue.h)(ts_base_js.IconBase, {
54
+ ...attrs,
55
+ preserveStrokeWidth: props.preserveStrokeWidth,
56
+ extend: props.extend,
57
+ id: "text-color-swatch-double-icon",
58
+ icon: element
59
+ });
60
+ }
61
+ });
62
+ //#endregion
63
+ exports.TextColorSwatchDoubleIcon = TextColorSwatchDoubleIcon;
64
+ exports.default = TextColorSwatchDoubleIcon;
@@ -0,0 +1,53 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/title-type-icon.ts
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
+ "tag": "path",
19
+ "attrs": {
20
+ "stroke": "currentColor",
21
+ "stroke-linecap": "round",
22
+ "stroke-linejoin": "round",
23
+ "stroke-width": 1.33,
24
+ "d": "M1.75 4H9.25M5.5 4V12.5M10.25 7.5H14.25M11.75 5.5V11C11.75 12 12.25 12.5 13.25 12.5H14.25"
25
+ }
26
+ }]
27
+ };
28
+ const TitleTypeIcon = (0, vue.defineComponent)({
29
+ name: "TitleTypeIcon",
30
+ inheritAttrs: false,
31
+ props: {
32
+ preserveStrokeWidth: {
33
+ type: Boolean,
34
+ default: false
35
+ },
36
+ extend: {
37
+ type: Object,
38
+ default: void 0
39
+ }
40
+ },
41
+ setup(props, { attrs }) {
42
+ return () => (0, vue.h)(ts_base_js.IconBase, {
43
+ ...attrs,
44
+ preserveStrokeWidth: props.preserveStrokeWidth,
45
+ extend: props.extend,
46
+ id: "title-type-icon",
47
+ icon: element
48
+ });
49
+ }
50
+ });
51
+ //#endregion
52
+ exports.TitleTypeIcon = TitleTypeIcon;
53
+ exports.default = TitleTypeIcon;
@@ -514,6 +514,7 @@ export { StrokeSize3Icon } from './stroke-size3-icon.js';
514
514
  export { StrokeSize4Icon } from './stroke-size4-icon.js';
515
515
  export { StrokeSize5Icon } from './stroke-size5-icon.js';
516
516
  export { SubscriptIcon } from './subscript-icon.js';
517
+ export { SubtitleTypeIcon } from './subtitle-type-icon.js';
517
518
  export { SuccessIcon } from './success-icon.js';
518
519
  export { SuccessOutlineIcon } from './success-outline-icon.js';
519
520
  export { SunburstChartIcon } from './sunburst-chart-icon.js';
@@ -529,6 +530,7 @@ export { TextFunctionIcon } from './text-function-icon.js';
529
530
  export { TextIcon } from './text-icon.js';
530
531
  export { TextTypeIcon } from './text-type-icon.js';
531
532
  export { TextWrapShapeIcon } from './text-wrap-shape-icon.js';
533
+ export { TitleTypeIcon } from './title-type-icon.js';
532
534
  export { TopmostIcon } from './topmost-icon.js';
533
535
  export { TransitionsIcon } from './transitions-icon.js';
534
536
  export { TreemapChartIcon } from './treemap-chart-icon.js';
@@ -636,6 +638,7 @@ export { SmileDoubleIcon } from './smile-double-icon.js';
636
638
  export { StarEmptyDoubleIcon } from './star-empty-double-icon.js';
637
639
  export { StarFullDoubleIcon } from './star-full-double-icon.js';
638
640
  export { StarIncompleteDoubleIcon } from './star-incomplete-double-icon.js';
641
+ export { TextColorSwatchDoubleIcon } from './text-color-swatch-double-icon.js';
639
642
  export { TodoListDoubleIcon } from './todo-list-double-icon.js';
640
643
  export { UpBorderDoubleIcon } from './up-border-double-icon.js';
641
644
  export { VerticalBorderDoubleIcon } from './vertical-border-double-icon.js';
package/dist/esm/index.js CHANGED
@@ -514,6 +514,7 @@ import { StrokeSize3Icon } from "./stroke-size3-icon.js";
514
514
  import { StrokeSize4Icon } from "./stroke-size4-icon.js";
515
515
  import { StrokeSize5Icon } from "./stroke-size5-icon.js";
516
516
  import { SubscriptIcon } from "./subscript-icon.js";
517
+ import { SubtitleTypeIcon } from "./subtitle-type-icon.js";
517
518
  import { SuccessIcon } from "./success-icon.js";
518
519
  import { SuccessOutlineIcon } from "./success-outline-icon.js";
519
520
  import { SunburstChartIcon } from "./sunburst-chart-icon.js";
@@ -529,6 +530,7 @@ import { TextFunctionIcon } from "./text-function-icon.js";
529
530
  import { TextIcon } from "./text-icon.js";
530
531
  import { TextTypeIcon } from "./text-type-icon.js";
531
532
  import { TextWrapShapeIcon } from "./text-wrap-shape-icon.js";
533
+ import { TitleTypeIcon } from "./title-type-icon.js";
532
534
  import { TopmostIcon } from "./topmost-icon.js";
533
535
  import { TransitionsIcon } from "./transitions-icon.js";
534
536
  import { TreemapChartIcon } from "./treemap-chart-icon.js";
@@ -636,8 +638,9 @@ import { SmileDoubleIcon } from "./smile-double-icon.js";
636
638
  import { StarEmptyDoubleIcon } from "./star-empty-double-icon.js";
637
639
  import { StarFullDoubleIcon } from "./star-full-double-icon.js";
638
640
  import { StarIncompleteDoubleIcon } from "./star-incomplete-double-icon.js";
641
+ import { TextColorSwatchDoubleIcon } from "./text-color-swatch-double-icon.js";
639
642
  import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
640
643
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
641
644
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
642
645
  import { WarnDoubleIcon } from "./warn-double-icon.js";
643
- export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CandlestickChartIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ChordChartIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataBarIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DatePickerIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocPasteOptionsIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DongIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FeatureSearchIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GaugeChartIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesIcon, HideNoteIcon, HistogramChartIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectLayersIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, ParagraphSettingIcon, PasteSpecialDoubleIcon, PdfAppIcon, PdfHighlightIcon, PdfMultiIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RatingIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RialIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, RupiahIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SectionSettingIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmartArtIcon, SmileDoubleIcon, SmileIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SuccessIcon, SuccessOutlineIcon, SunburstChartIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TreemapChartIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnlockIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WonIcon, WriteIcon, ZlotyIcon, ZoomInIcon, ZoomOutIcon };
646
+ export { AIcon, ActivityIcon, AddDigitsIcon, AddImageIcon, AddNoteIcon, AdditionAndSubtractionIcon, AdjustHeightDoubleIcon, AdjustWidthDoubleIcon, AiAssistantMultiIcon, AlignBottomIcon, AlignTextBothIcon, AlignTopIcon, AllBorderIcon, AmplifyIcon, AreaChartIcon, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowTiltDownIcon, ArrowTiltUpIcon, ArrowUpIcon, AscendingIcon, AutoHeightDoubleIcon, AutoWidthDoubleIcon, AutofillDoubleIcon, AutowrapIcon, BackSlashDoubleIcon, BanIcon, BarChartIcon, BasesAppIcon, BasesMultiIcon, BoardsAppIcon, BoardsMultiIcon, BoldIcon, BottomIcon, BoxplotIcon, BrushIcon, BubbleIcon, CalendarIcon, CalloutIcon, CancelFreezeIcon, CancelMergeIcon, CandlestickChartIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, CheckboxIcon, ChordChartIcon, ClassDiagramClassIcon, ClassDiagramDashedFilledArrowConnectorIcon, ClassDiagramDashedOpenArrowConnectorIcon, ClassDiagramFilledArrowConnectorIcon, ClassDiagramFilledDiamondConnectorIcon, ClassDiagramHollowDiamondConnectorIcon, ClassDiagramInterfaceIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CodeBlockIcon, CodeIcon, ColorWheelMultiIcon, ColumnChartIcon, ColumnIcon, ColumnSparklineIcon, ComboChartIcon, CommentIcon, ComponentDiagramAssemblyConnectorIcon, ComponentDiagramComponentBoxIcon, ComponentDiagramComponentIcon, ComponentDiagramProvidedInterfaceIcon, ComponentDiagramRequiredInterfaceIcon, ConditionalColorIcon, ConditionsDoubleIcon, ConfigureTabIcon, ConnectionLineIcon, ConnectorBarCrowsFootMarkerIcon, ConnectorBarMarkerIcon, ConnectorCircleBarMarkerIcon, ConnectorCircleCrowsFootMarkerIcon, ConnectorCircleMarkerIcon, ConnectorCrossMarkerIcon, ConnectorCrowsFootMarkerIcon, ConnectorFilledArrowMarkerIcon, ConnectorFilledCircleMarkerIcon, ConnectorFilledDiamondMarkerIcon, ConnectorHollowDiamondMarkerIcon, ConnectorHollowTriangleMarkerIcon, ConnectorNoneMarkerIcon, ConnectorOpenArrowMarkerIcon, ConnectorRoundedElbowIcon, ConnectorSwapMarkersIcon, ConnectorXMarkerIcon, ConvertIcon, ConvertToNumberIcon, CopyDoubleIcon, CopyIcon, CorrectDoubleIcon, CreateCopyIcon, CropIcon, CrossHighlightingIcon, CrossIcon, CursorsIcon, CustomSortIcon, CutIcon, DataBarIcon, DataFlowCircleIcon, DataFlowDataStorage1Icon, DataFlowDataStorage2Icon, DataFlowDataStorage3Icon, DataFlowRoundedRectangleIcon, DataFlowRoundedSquareIcon, DataValidationIcon, DatabaseFunctionIcon, DatabaseIcon, DateFunctionIcon, DatePickerIcon, DeleteCellMoveDownDoubleIcon, DeleteCellShiftLeftDoubleIcon, DeleteCellShiftRightDoubleIcon, DeleteCellShiftUpDoubleIcon, DeleteColumnDoubleIcon, DeleteEmptyIcon, DeleteIcon, DeleteNoteIcon, DeleteRowDoubleIcon, DeleteTableDoubleIcon, DescendingIcon, DirectExportIcon, DissatisfiedDoubleIcon, DividerIcon, DocPasteOptionsIcon, DocSettingIcon, DocsAppIcon, DocsMultiIcon, DollarIcon, DongIcon, DownBorderDoubleIcon, DownIcon, DownloadIcon, DownloadImageIcon, DropdownListIcon, EngineeringFunctionIcon, EntityRelationshipEntityIcon, EntityRelationshipFieldTypeIcon, EntityRelationshipFullIcon, EntityRelationshipKeyFieldIcon, ErrorIcon, EuroIcon, ExclamationIcon, ExpandAscendingIcon, ExpandDescendingIcon, ExpandIcon, ExponentialIcon, ExportIcon, EyeIcon, EyelashIcon, FeatureSearchIcon, FilterIcon, FinancialFunctionIcon, FirstTabIcon, FlagIcon, FlipHorizontalIcon, FlipVerticalIcon, FolderIcon, FontColorDoubleIcon, FontSizeIncreaseIcon, FontSizeReduceIcon, FoodsIcon, FormulaAccentIcon, FormulaBracketIcon, FormulaFractionIcon, FormulaFunctionIcon, FormulaIntegralIcon, FormulaLargeOperatorIcon, FormulaLimitLogarithmIcon, FormulaMatrixIcon, FormulaOperatorIcon, FormulaRadicalIcon, FormulaScriptIcon, FountainPenIcon, FreezeColumnIcon, FreezeRowIcon, FreezeToSelectedIcon, FunctionIcon, FunnelIcon, FxIcon, GaugeChartIcon, GraphIcon, GridIcon, GridOutlineIcon, GripHorizontalIcon, GripVerticalIcon, GroupIcon, GroupSparklineIcon, GroupingDoubleIcon, GuffawDoubleIcon, H1Icon, H2Icon, H3Icon, H4Icon, H5Icon, H6Icon, HandIcon, HeaderFooterIcon, HeatmapIcon, HelpIcon, HideDoubleIcon, HideGridlinesIcon, HideNoteIcon, HistogramChartIcon, HistoryIcon, HomeIcon, HorizontalBorderDoubleIcon, HorizontalMergeIcon, HorizontallyIcon, ImpatientDoubleIcon, ImportIcon, IncreaseIcon, IndicateDoubleIcon, InfoIcon, InformationFunctionIcon, InnerBorderDoubleIcon, InsertCellDownDoubleIcon, InsertCellShiftRightDoubleIcon, InsertCommentDoubleIcon, InsertDoubleIcon, InsertIcon, InsertLinkDoubleIcon, InsertRowAboveDoubleIcon, InsertRowBelowDoubleIcon, ItalicIcon, KeyboardIcon, LeftBorderDoubleIcon, LeftDoubleDiagonalDoubleIcon, LeftInsertColumnDoubleIcon, LeftJustifyingIcon, LeftRotationFortyFiveDegreesIcon, LeftRotationNinetyDegreesIcon, LeftTridiagonalDoubleIcon, LineChartIcon, LineDashedNoneIcon, LineDoubleOpenArrowIcon, LineIndentDecreaseIcon, LineIndentIncreaseIcon, LineNoneIcon, LineOpenArrowIcon, LineSparklineIcon, LinearIcon, LinkIcon, LiveShareIcon, LoadingMultiIcon, LocateFixedIcon, LockIcon, LogarithmicIcon, LogicalFunctionIcon, LookupFunctionIcon, MathFunctionIcon, MenuIcon, MergeAllIcon, MermaidDiagramIcon, MindMapIcon, MistakeDoubleIcon, MoreDownIcon, MoreHorizontalIcon, MoreLeftIcon, MoreRightIcon, MoreUpIcon, MoreVerticalIcon, MoveDownIcon, MoveUpIcon, MovingAverageIcon, NatureIcon, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, ObjectLayersIcon, ObjectsIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PaintIcon, ParagraphSettingIcon, PasteSpecialDoubleIcon, PdfAppIcon, PdfHighlightIcon, PdfMultiIcon, PenIcon, PeopleIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PlacesIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PreciseSelectionIcon, PrintIcon, Progress0DoubleIcon, Progress100DoubleIcon, Progress25DoubleIcon, Progress50DoubleIcon, Progress75DoubleIcon, ProtectIcon, QuickAddIcon, QuoteIcon, RadarChartIcon, RandomIcon, RatingIcon, RecentIcon, RecordIcon, RedoIcon, ReduceDigitsIcon, ReduceDoubleIcon, ReduceIcon, RelationshipIcon, RenameIcon, ReplyToCommentIcon, ResourcesIcon, RestoreIcon, RhomboidIcon, RialIcon, RightBorderDoubleIcon, RightDoubleDiagonalDoubleIcon, RightInsertColumnDoubleIcon, RightJustifyingIcon, RightRotationFortyFiveDegreesIcon, RightRotationNinetyDegreesIcon, RmbIcon, RoubleIcon, RoundnessIcon, RowHeightExtraTallIcon, RowHeightMediumIcon, RowHeightShortIcon, RowHeightTallIcon, RowIcon, RulerIcon, RupiahIcon, SankeyIcon, ScatterChartIcon, SearchIcon, SectionSettingIcon, SelectRangeIcon, SequenceActivationBarIcon, SequenceActorLifelineIcon, SequenceAlternativeFragmentIcon, SequenceBoundaryLifelineIcon, SequenceCollectionLifelineIcon, SequenceControlLifelineIcon, SequenceDirectAccessStorageLifelineIcon, SequenceEntityLifelineIcon, SequenceFragmentIcon, SequenceMagneticDiskLifelineIcon, SequenceObjectLifelineIcon, ShapeAccentBorderCallout1Icon, ShapeAccentBorderCallout2Icon, ShapeAccentBorderCallout3Icon, ShapeAccentCallout1Icon, ShapeAccentCallout2Icon, ShapeAccentCallout3Icon, ShapeActionButtonBackPreviousIcon, ShapeActionButtonBeginningIcon, ShapeActionButtonBlankIcon, ShapeActionButtonDocumentIcon, ShapeActionButtonEndIcon, ShapeActionButtonForwardNextIcon, ShapeActionButtonHelpIcon, ShapeActionButtonHomeIcon, ShapeActionButtonInformationIcon, ShapeActionButtonMovieIcon, ShapeActionButtonReturnIcon, ShapeActionButtonSoundIcon, ShapeArcIcon, ShapeBackgroundColorDoubleIcon, ShapeBentArrowIcon, ShapeBentConnector3Arrow1Icon, ShapeBentConnector3Arrow2Icon, ShapeBentConnector3Icon, ShapeBentUpArrowIcon, ShapeBevelIcon, ShapeBlockArcIcon, ShapeBorderCallout1Icon, ShapeBorderCallout2Icon, ShapeBorderCallout3Icon, ShapeBracePairIcon, ShapeBracketPairIcon, ShapeCallout1Icon, ShapeCallout2Icon, ShapeCallout3Icon, ShapeCanIcon, ShapeChartPlusIcon, ShapeChartStarIcon, ShapeChartXIcon, ShapeChevronIcon, ShapeChordIcon, ShapeCircularArrowIcon, ShapeCloudCalloutIcon, ShapeCloudIcon, ShapeCornerIcon, ShapeCornerTabsIcon, ShapeCubeIcon, ShapeCurvedConnector3Arrow1Icon, ShapeCurvedConnector3Arrow2Icon, ShapeCurvedConnector3Icon, ShapeCurvedDownArrowIcon, ShapeCurvedLeftArrowIcon, ShapeCurvedRightArrowIcon, ShapeCurvedUpArrowIcon, ShapeDecagonIcon, ShapeDiagStripeIcon, ShapeDiamondIcon, ShapeDodecagonIcon, ShapeDonutIcon, ShapeDoubleWaveIcon, ShapeDownArrowCalloutIcon, ShapeDownArrowIcon, ShapeEllipseIcon, ShapeEllipseRibbon2Icon, ShapeEllipseRibbonIcon, ShapeFlowChartAlternateProcessIcon, ShapeFlowChartCollateIcon, ShapeFlowChartConnectorIcon, ShapeFlowChartDecisionIcon, ShapeFlowChartDelayIcon, ShapeFlowChartDisplayIcon, ShapeFlowChartDocumentIcon, ShapeFlowChartExtractIcon, ShapeFlowChartInputOutputIcon, ShapeFlowChartInternalStorageIcon, ShapeFlowChartMagneticDiskIcon, ShapeFlowChartMagneticDrumIcon, ShapeFlowChartMagneticTapeIcon, ShapeFlowChartManualInputIcon, ShapeFlowChartManualOperationIcon, ShapeFlowChartMergeIcon, ShapeFlowChartMultidocumentIcon, ShapeFlowChartOfflineStorageIcon, ShapeFlowChartOffpageConnectorIcon, ShapeFlowChartOnlineStorageIcon, ShapeFlowChartOrIcon, ShapeFlowChartPredefinedProcessIcon, ShapeFlowChartPreparationIcon, ShapeFlowChartProcessIcon, ShapeFlowChartPunchedCardIcon, ShapeFlowChartPunchedTapeIcon, ShapeFlowChartSortIcon, ShapeFlowChartSummingJunctionIcon, ShapeFlowChartTerminatorIcon, ShapeFolderCornerIcon, ShapeFormatSettingIcon, ShapeFrameIcon, ShapeFunnelIcon, ShapeGear6Icon, ShapeGear9Icon, ShapeHalfFrameIcon, ShapeHeartIcon, ShapeHeptagonIcon, ShapeHexagonIcon, ShapeHomePlateIcon, ShapeHorizontalScrollIcon, ShapeIcon, ShapeIrregularSeal1Icon, ShapeIrregularSeal2Icon, ShapeLeftArrowCalloutIcon, ShapeLeftArrowIcon, ShapeLeftBraceIcon, ShapeLeftBracketIcon, ShapeLeftCircularArrowIcon, ShapeLeftRightArrowCalloutIcon, ShapeLeftRightArrowIcon, ShapeLeftRightCircularArrowIcon, ShapeLeftRightRibbonIcon, ShapeLeftRightUpArrowIcon, ShapeLeftUpArrowIcon, ShapeLightningBoltIcon, ShapeLineIcon, ShapeLineInvIcon, ShapeMathDivideIcon, ShapeMathEqualIcon, ShapeMathMinusIcon, ShapeMathMultiplyIcon, ShapeMathNotEqualIcon, ShapeMathPlusIcon, ShapeMoonIcon, ShapeNoSmokingIcon, ShapeNonIsoscelesTrapezoidIcon, ShapeNotchedRightArrowIcon, ShapeOctagonIcon, ShapeParallelogramIcon, ShapePentagonIcon, ShapePieIcon, ShapePieWedgeIcon, ShapePlaqueIcon, ShapePlaqueTabsIcon, ShapePlusIcon, ShapeQuadArrowCalloutIcon, ShapeQuadArrowIcon, ShapeRectIcon, ShapeRectTextboxHorizontalIcon, ShapeRectTextboxVerticalIcon, ShapeRibbon2Icon, ShapeRibbonIcon, ShapeRightArrowCalloutIcon, ShapeRightArrowIcon, ShapeRightBraceIcon, ShapeRightBracketIcon, ShapeRound1RectIcon, ShapeRound2DiagRectIcon, ShapeRound2SameRectIcon, ShapeRoundRectIcon, ShapeRtTriangleIcon, ShapeSmileyFaceIcon, ShapeSnip1RectIcon, ShapeSnip2DiagRectIcon, ShapeSnip2SameRectIcon, ShapeSnipRoundRectIcon, ShapeSquareTabsIcon, ShapeStar10Icon, ShapeStar12Icon, ShapeStar16Icon, ShapeStar24Icon, ShapeStar32Icon, ShapeStar4Icon, ShapeStar5Icon, ShapeStar6Icon, ShapeStar7Icon, ShapeStar8Icon, ShapeStraightConnector1Icon, ShapeStraightConnector2Icon, ShapeStripedRightArrowIcon, ShapeStrokeColorDoubleIcon, ShapeSunIcon, ShapeSwooshArrowIcon, ShapeTeardropIcon, ShapeTrapezoidIcon, ShapeTriangleIcon, ShapeUpArrowCalloutIcon, ShapeUpArrowIcon, ShapeUpDownArrowCalloutIcon, ShapeUpDownArrowIcon, ShapeUturnArrowIcon, ShapeVerticalScrollIcon, ShapeWaveIcon, ShapeWedgeEllipseCalloutIcon, ShapeWedgeRectCalloutIcon, ShapeWedgeRoundRectCalloutIcon, ShareIcon, ShareRangeIcon, SheetIcon, SheetsAppIcon, SheetsMultiIcon, ShortcutIcon, ShowDimensionsIcon, ShowToolbarIcon, ShrinkIcon, ShrinkToFitIcon, Signal0DoubleIcon, Signal100DoubleIcon, Signal25DoubleIcon, Signal50DoubleIcon, Signal75DoubleIcon, SlashDoubleIcon, SlidesAppIcon, SlidesMultiIcon, SlideshowPlayIcon, SlideshowThemeIcon, SmartArtIcon, SmileDoubleIcon, SmileIcon, StarEmptyDoubleIcon, StarFullDoubleIcon, StarIncompleteDoubleIcon, StatisticalFunctionIcon, StatusDiagramFinalStateIcon, StatusDiagramInitialStateIcon, StatusDiagramStateBarIcon, StickyNoteIcon, StrikethroughIcon, StrokeSize1Icon, StrokeSize2Icon, StrokeSize3Icon, StrokeSize4Icon, StrokeSize5Icon, SubscriptIcon, SubtitleTypeIcon, SuccessIcon, SuccessOutlineIcon, SunburstChartIcon, SuperscriptIcon, SymbolsIcon, TableBorderStyleDashedIcon, TableBorderStyleDottedIcon, TableBorderStyleIcon, TableBorderStyleSolidIcon, TableBorderWidthIcon, TableIcon, TextColorSwatchDoubleIcon, TextFunctionIcon, TextIcon, TextTypeIcon, TextWrapShapeIcon, TitleTypeIcon, TodoListDoubleIcon, TopmostIcon, TransitionsIcon, TreemapChartIcon, TriangleIcon, TruncationIcon, TypographyIcon, UnderlineIcon, UndoIcon, UngroupIcon, UngroupSparklineIcon, UniverCliIcon, UniverSdkMultiIcon, UnlinkIcon, UnlockIcon, UnorderIcon, UpBorderDoubleIcon, UpIcon, VerticalBorderDoubleIcon, VerticalCenterIcon, VerticalIntegrationIcon, VerticalTextIcon, WarnDoubleIcon, WarningIcon, WaterfallChartIcon, WinlossSparklineIcon, WonIcon, WriteIcon, ZlotyIcon, ZoomInIcon, ZoomOutIcon };
@@ -0,0 +1,27 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const SubtitleTypeIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ preserveStrokeWidth: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ extend: {
9
+ type: PropType<IExtendProps>;
10
+ default: undefined;
11
+ };
12
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
+ [key: string]: any;
14
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ preserveStrokeWidth: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ extend: {
20
+ type: PropType<IExtendProps>;
21
+ default: undefined;
22
+ };
23
+ }>> & Readonly<{}>, {
24
+ preserveStrokeWidth: boolean;
25
+ extend: IExtendProps;
26
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
+ export default SubtitleTypeIcon;
@@ -0,0 +1,48 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/subtitle-type-icon.ts
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "stroke": "currentColor",
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round",
19
+ "stroke-width": 1.33,
20
+ "d": "M11.5 4.5C10.75 3.5 9.5 3 8 3C6 3 4.5 4 4.5 5.5C4.5 9 11.5 7 11.5 10.5C11.5 12 10 13 8 13C6.5 13 5.25 12.5 4.5 11.5"
21
+ }
22
+ }]
23
+ };
24
+ const SubtitleTypeIcon = defineComponent({
25
+ name: "SubtitleTypeIcon",
26
+ inheritAttrs: false,
27
+ props: {
28
+ preserveStrokeWidth: {
29
+ type: Boolean,
30
+ default: false
31
+ },
32
+ extend: {
33
+ type: Object,
34
+ default: void 0
35
+ }
36
+ },
37
+ setup(props, { attrs }) {
38
+ return () => h(IconBase, {
39
+ ...attrs,
40
+ preserveStrokeWidth: props.preserveStrokeWidth,
41
+ extend: props.extend,
42
+ id: "subtitle-type-icon",
43
+ icon: element
44
+ });
45
+ }
46
+ });
47
+ //#endregion
48
+ export { SubtitleTypeIcon, SubtitleTypeIcon as default };
@@ -0,0 +1,27 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const TextColorSwatchDoubleIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ preserveStrokeWidth: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ extend: {
9
+ type: PropType<IExtendProps>;
10
+ default: undefined;
11
+ };
12
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
+ [key: string]: any;
14
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ preserveStrokeWidth: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ extend: {
20
+ type: PropType<IExtendProps>;
21
+ default: undefined;
22
+ };
23
+ }>> & Readonly<{}>, {
24
+ preserveStrokeWidth: boolean;
25
+ extend: IExtendProps;
26
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
+ export default TextColorSwatchDoubleIcon;
@@ -0,0 +1,59 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/text-color-swatch-double-icon.ts
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "rect",
15
+ "attrs": {
16
+ "width": 14,
17
+ "height": 14,
18
+ "x": 1,
19
+ "y": 1,
20
+ "stroke": "currentColor",
21
+ "stroke-opacity": .12,
22
+ "rx": 1.75
23
+ }
24
+ }, {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "colorChannel1",
28
+ "stroke-linecap": "round",
29
+ "stroke-linejoin": "round",
30
+ "stroke-width": 1.33,
31
+ "d": "M4.75 11.5L8 4.5L11.25 11.5M6 9H10"
32
+ }
33
+ }]
34
+ };
35
+ const TextColorSwatchDoubleIcon = defineComponent({
36
+ name: "TextColorSwatchDoubleIcon",
37
+ inheritAttrs: false,
38
+ props: {
39
+ preserveStrokeWidth: {
40
+ type: Boolean,
41
+ default: false
42
+ },
43
+ extend: {
44
+ type: Object,
45
+ default: void 0
46
+ }
47
+ },
48
+ setup(props, { attrs }) {
49
+ return () => h(IconBase, {
50
+ ...attrs,
51
+ preserveStrokeWidth: props.preserveStrokeWidth,
52
+ extend: props.extend,
53
+ id: "text-color-swatch-double-icon",
54
+ icon: element
55
+ });
56
+ }
57
+ });
58
+ //#endregion
59
+ export { TextColorSwatchDoubleIcon, TextColorSwatchDoubleIcon as default };
@@ -0,0 +1,27 @@
1
+ import type { PropType } from 'vue';
2
+ import type { IExtendProps } from './base.js';
3
+ export declare const TitleTypeIcon: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ preserveStrokeWidth: {
5
+ type: BooleanConstructor;
6
+ default: boolean;
7
+ };
8
+ extend: {
9
+ type: PropType<IExtendProps>;
10
+ default: undefined;
11
+ };
12
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
13
+ [key: string]: any;
14
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
15
+ preserveStrokeWidth: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ extend: {
20
+ type: PropType<IExtendProps>;
21
+ default: undefined;
22
+ };
23
+ }>> & Readonly<{}>, {
24
+ preserveStrokeWidth: boolean;
25
+ extend: IExtendProps;
26
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
27
+ export default TitleTypeIcon;
@@ -0,0 +1,48 @@
1
+ import { defineComponent, h } from "vue";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/title-type-icon.ts
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "fill": "none",
9
+ "viewBox": "0 0 16 16",
10
+ "width": "1em",
11
+ "height": "1em"
12
+ },
13
+ "children": [{
14
+ "tag": "path",
15
+ "attrs": {
16
+ "stroke": "currentColor",
17
+ "stroke-linecap": "round",
18
+ "stroke-linejoin": "round",
19
+ "stroke-width": 1.33,
20
+ "d": "M1.75 4H9.25M5.5 4V12.5M10.25 7.5H14.25M11.75 5.5V11C11.75 12 12.25 12.5 13.25 12.5H14.25"
21
+ }
22
+ }]
23
+ };
24
+ const TitleTypeIcon = defineComponent({
25
+ name: "TitleTypeIcon",
26
+ inheritAttrs: false,
27
+ props: {
28
+ preserveStrokeWidth: {
29
+ type: Boolean,
30
+ default: false
31
+ },
32
+ extend: {
33
+ type: Object,
34
+ default: void 0
35
+ }
36
+ },
37
+ setup(props, { attrs }) {
38
+ return () => h(IconBase, {
39
+ ...attrs,
40
+ preserveStrokeWidth: props.preserveStrokeWidth,
41
+ extend: props.extend,
42
+ id: "title-type-icon",
43
+ icon: element
44
+ });
45
+ }
46
+ });
47
+ //#endregion
48
+ export { TitleTypeIcon, TitleTypeIcon as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/icons-vue",
3
- "version": "1.40.0",
3
+ "version": "1.41.0",
4
4
  "description": "Vue icons for Univer.",
5
5
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
6
6
  "license": "MIT",
@@ -42,7 +42,7 @@
42
42
  "devDependencies": {
43
43
  "@types/node": "^26.6.2",
44
44
  "@types/svg-parser": "^2.0.6",
45
- "@univerjs/icons-svg": "1.40.0",
45
+ "@univerjs/icons-svg": "1.41.0",
46
46
  "rolldown": "1.2.9",
47
47
  "svg-parser": "^2.1.0",
48
48
  "svgo": "^4.1.0",