@univerjs/icons 1.5.0 → 1.6.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.
package/dist/cjs/base.cjs CHANGED
@@ -27,6 +27,7 @@ function render(node, id, runtimeProps, rootProps, extend) {
27
27
  function replaceRuntimeIdsAndExtInAttrs(node, runtimeProps, extend) {
28
28
  const attrs = { ...node.attrs };
29
29
  if (extend?.colorChannel1 && attrs.fill === "colorChannel1") attrs.fill = extend.colorChannel1;
30
+ if (extend?.colorChannel1 && attrs.stroke === "colorChannel1") attrs.stroke = extend.colorChannel1;
30
31
  if (node.tag === "mask" && attrs.id) attrs.id = attrs.id + runtimeProps.idSuffix;
31
32
  Object.entries(attrs).forEach(([key, value]) => {
32
33
  if (key === "mask" && typeof value === "string") attrs[key] = value.replace(/url\(#(.*)\)/, `url(#$1${runtimeProps.idSuffix})`);
@@ -466,6 +466,8 @@ let ts_reduce_double_icon_js = require("./reduce-double-icon.js");
466
466
  let ts_right_border_double_icon_js = require("./right-border-double-icon.js");
467
467
  let ts_right_double_diagonal_double_icon_js = require("./right-double-diagonal-double-icon.js");
468
468
  let ts_right_insert_column_double_icon_js = require("./right-insert-column-double-icon.js");
469
+ let ts_shape_background_color_double_icon_js = require("./shape-background-color-double-icon.js");
470
+ let ts_shape_stroke_color_double_icon_js = require("./shape-stroke-color-double-icon.js");
469
471
  let ts_signal_0_double_icon_js = require("./signal-0-double-icon.js");
470
472
  let ts_signal_100_double_icon_js = require("./signal-100-double-icon.js");
471
473
  let ts_signal_25_double_icon_js = require("./signal-25-double-icon.js");
@@ -2022,6 +2024,12 @@ Object.defineProperty(exports, "ShapeArcIcon", {
2022
2024
  return ts_shape_arc_icon_js.ShapeArcIcon;
2023
2025
  }
2024
2026
  });
2027
+ Object.defineProperty(exports, "ShapeBackgroundColorDoubleIcon", {
2028
+ enumerable: true,
2029
+ get: function() {
2030
+ return ts_shape_background_color_double_icon_js.ShapeBackgroundColorDoubleIcon;
2031
+ }
2032
+ });
2025
2033
  Object.defineProperty(exports, "ShapeBentArrowIcon", {
2026
2034
  enumerable: true,
2027
2035
  get: function() {
@@ -2952,6 +2960,12 @@ Object.defineProperty(exports, "ShapeStripedRightArrowIcon", {
2952
2960
  return ts_shape_striped_right_arrow_icon_js.ShapeStripedRightArrowIcon;
2953
2961
  }
2954
2962
  });
2963
+ Object.defineProperty(exports, "ShapeStrokeColorDoubleIcon", {
2964
+ enumerable: true,
2965
+ get: function() {
2966
+ return ts_shape_stroke_color_double_icon_js.ShapeStrokeColorDoubleIcon;
2967
+ }
2968
+ });
2955
2969
  Object.defineProperty(exports, "ShapeSunIcon", {
2956
2970
  enumerable: true,
2957
2971
  get: function() {
@@ -0,0 +1,38 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/shape-background-color-double-icon.tsx
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "viewBox": "0 0 16 16",
13
+ "width": "1em",
14
+ "height": "1em"
15
+ },
16
+ "children": [{
17
+ "tag": "circle",
18
+ "attrs": {
19
+ "cx": 8,
20
+ "cy": 8,
21
+ "r": 5.4,
22
+ "fill": "colorChannel1",
23
+ "stroke": "currentColor",
24
+ "strokeWidth": 1.2
25
+ }
26
+ }]
27
+ };
28
+ const ShapeBackgroundColorDoubleIcon = (0, react.forwardRef)(function ShapeBackgroundColorDoubleIcon(props, ref) {
29
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
30
+ id: "shape-background-color-double-icon",
31
+ ref,
32
+ icon: element
33
+ }));
34
+ });
35
+ ShapeBackgroundColorDoubleIcon.displayName = "ShapeBackgroundColorDoubleIcon";
36
+ //#endregion
37
+ exports.ShapeBackgroundColorDoubleIcon = ShapeBackgroundColorDoubleIcon;
38
+ exports.default = ShapeBackgroundColorDoubleIcon;
@@ -0,0 +1,38 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let react = require("react");
6
+ let ts_base_js = require("./base.js");
7
+ //#region ts/shape-stroke-color-double-icon.tsx
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "viewBox": "0 0 16 16",
13
+ "width": "1em",
14
+ "height": "1em"
15
+ },
16
+ "children": [{
17
+ "tag": "circle",
18
+ "attrs": {
19
+ "cx": 8,
20
+ "cy": 8,
21
+ "r": 5.1,
22
+ "fill": "none",
23
+ "stroke": "colorChannel1",
24
+ "strokeWidth": 1.8
25
+ }
26
+ }]
27
+ };
28
+ const ShapeStrokeColorDoubleIcon = (0, react.forwardRef)(function ShapeStrokeColorDoubleIcon(props, ref) {
29
+ return (0, react.createElement)(ts_base_js.IconBase, Object.assign({}, props, {
30
+ id: "shape-stroke-color-double-icon",
31
+ ref,
32
+ icon: element
33
+ }));
34
+ });
35
+ ShapeStrokeColorDoubleIcon.displayName = "ShapeStrokeColorDoubleIcon";
36
+ //#endregion
37
+ exports.ShapeStrokeColorDoubleIcon = ShapeStrokeColorDoubleIcon;
38
+ exports.default = ShapeStrokeColorDoubleIcon;
package/dist/esm/base.js CHANGED
@@ -26,6 +26,7 @@ function render(node, id, runtimeProps, rootProps, extend) {
26
26
  function replaceRuntimeIdsAndExtInAttrs(node, runtimeProps, extend) {
27
27
  const attrs = { ...node.attrs };
28
28
  if (extend?.colorChannel1 && attrs.fill === "colorChannel1") attrs.fill = extend.colorChannel1;
29
+ if (extend?.colorChannel1 && attrs.stroke === "colorChannel1") attrs.stroke = extend.colorChannel1;
29
30
  if (node.tag === "mask" && attrs.id) attrs.id = attrs.id + runtimeProps.idSuffix;
30
31
  Object.entries(attrs).forEach(([key, value]) => {
31
32
  if (key === "mask" && typeof value === "string") attrs[key] = value.replace(/url\(#(.*)\)/, `url(#$1${runtimeProps.idSuffix})`);
@@ -465,6 +465,8 @@ export { ReduceDoubleIcon } from './reduce-double-icon.js';
465
465
  export { RightBorderDoubleIcon } from './right-border-double-icon.js';
466
466
  export { RightDoubleDiagonalDoubleIcon } from './right-double-diagonal-double-icon.js';
467
467
  export { RightInsertColumnDoubleIcon } from './right-insert-column-double-icon.js';
468
+ export { ShapeBackgroundColorDoubleIcon } from './shape-background-color-double-icon.js';
469
+ export { ShapeStrokeColorDoubleIcon } from './shape-stroke-color-double-icon.js';
468
470
  export { Signal0DoubleIcon } from './signal-0-double-icon.js';
469
471
  export { Signal100DoubleIcon } from './signal-100-double-icon.js';
470
472
  export { Signal25DoubleIcon } from './signal-25-double-icon.js';
package/dist/esm/index.js CHANGED
@@ -465,6 +465,8 @@ import { ReduceDoubleIcon } from "./reduce-double-icon.js";
465
465
  import { RightBorderDoubleIcon } from "./right-border-double-icon.js";
466
466
  import { RightDoubleDiagonalDoubleIcon } from "./right-double-diagonal-double-icon.js";
467
467
  import { RightInsertColumnDoubleIcon } from "./right-insert-column-double-icon.js";
468
+ import { ShapeBackgroundColorDoubleIcon } from "./shape-background-color-double-icon.js";
469
+ import { ShapeStrokeColorDoubleIcon } from "./shape-stroke-color-double-icon.js";
468
470
  import { Signal0DoubleIcon } from "./signal-0-double-icon.js";
469
471
  import { Signal100DoubleIcon } from "./signal-100-double-icon.js";
470
472
  import { Signal25DoubleIcon } from "./signal-25-double-icon.js";
@@ -479,4 +481,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
479
481
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
480
482
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
481
483
  import { WarnDoubleIcon } from "./warn-double-icon.js";
482
- export { AIcon, 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, CancelFreezeIcon, CancelMergeIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, 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, 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, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PasteSpecialDoubleIcon, PenIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PrintIcon, Progress0Icon, Progress100Icon, Progress25Icon, Progress50Icon, Progress75Icon, ProtectIcon, RadarChartIcon, 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, 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, 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, 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 };
484
+ export { AIcon, 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, CancelFreezeIcon, CancelMergeIcon, CatalogueIcon, Cell0DoubleIcon, Cell100DoubleIcon, Cell25DoubleIcon, Cell50DoubleIcon, Cell75DoubleIcon, ChartIcon, CheckMarkIcon, ClearFormatDoubleIcon, ClockIcon, CloseIcon, CloudOutlineIcon, CntIcon, 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, 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, NoBorderIcon, NoColorDoubleIcon, NoRotationIcon, NoninductiveDoubleIcon, NumberIcon, OffLineIcon, OnLineIcon, OneToOneIcon, OrderIcon, OuterBorderDoubleIcon, OverflowIcon, PaintBucketDoubleIcon, PasteSpecialDoubleIcon, PenIcon, PercentIcon, PieChartIcon, PipingIcon, PivotTableIcon, PointColorDoubleIcon, PolynomialIcon, PowerLineIcon, PrintIcon, Progress0Icon, Progress100Icon, Progress25Icon, Progress50Icon, Progress75Icon, ProtectIcon, RadarChartIcon, 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, 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 };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const ShapeBackgroundColorDoubleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default ShapeBackgroundColorDoubleIcon;
@@ -0,0 +1,33 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/shape-background-color-double-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "viewBox": "0 0 16 16",
9
+ "width": "1em",
10
+ "height": "1em"
11
+ },
12
+ "children": [{
13
+ "tag": "circle",
14
+ "attrs": {
15
+ "cx": 8,
16
+ "cy": 8,
17
+ "r": 5.4,
18
+ "fill": "colorChannel1",
19
+ "stroke": "currentColor",
20
+ "strokeWidth": 1.2
21
+ }
22
+ }]
23
+ };
24
+ const ShapeBackgroundColorDoubleIcon = forwardRef(function ShapeBackgroundColorDoubleIcon(props, ref) {
25
+ return createElement(IconBase, Object.assign({}, props, {
26
+ id: "shape-background-color-double-icon",
27
+ ref,
28
+ icon: element
29
+ }));
30
+ });
31
+ ShapeBackgroundColorDoubleIcon.displayName = "ShapeBackgroundColorDoubleIcon";
32
+ //#endregion
33
+ export { ShapeBackgroundColorDoubleIcon, ShapeBackgroundColorDoubleIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const ShapeStrokeColorDoubleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default ShapeStrokeColorDoubleIcon;
@@ -0,0 +1,33 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/shape-stroke-color-double-icon.tsx
4
+ const element = {
5
+ "tag": "svg",
6
+ "attrs": {
7
+ "xmlns": "http://www.w3.org/2000/svg",
8
+ "viewBox": "0 0 16 16",
9
+ "width": "1em",
10
+ "height": "1em"
11
+ },
12
+ "children": [{
13
+ "tag": "circle",
14
+ "attrs": {
15
+ "cx": 8,
16
+ "cy": 8,
17
+ "r": 5.1,
18
+ "fill": "none",
19
+ "stroke": "colorChannel1",
20
+ "strokeWidth": 1.8
21
+ }
22
+ }]
23
+ };
24
+ const ShapeStrokeColorDoubleIcon = forwardRef(function ShapeStrokeColorDoubleIcon(props, ref) {
25
+ return createElement(IconBase, Object.assign({}, props, {
26
+ id: "shape-stroke-color-double-icon",
27
+ ref,
28
+ icon: element
29
+ }));
30
+ });
31
+ ShapeStrokeColorDoubleIcon.displayName = "ShapeStrokeColorDoubleIcon";
32
+ //#endregion
33
+ export { ShapeStrokeColorDoubleIcon, ShapeStrokeColorDoubleIcon as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/icons",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "React icons for Univer.",
5
5
  "author": "DreamNum Co., Ltd. <developer@univer.ai>",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@
45
45
  "svg-parser": "^2.0.4",
46
46
  "svgo": "^4.0.1",
47
47
  "typescript": "^6.0.3",
48
- "@univerjs/icons-svg": "1.5.0"
48
+ "@univerjs/icons-svg": "1.6.0"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "node --experimental-strip-types ./scripts/build/index.ts && tsc"