@univerjs/icons 1.6.0 → 1.8.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/activity-icon.cjs +67 -0
- package/dist/cjs/callout-icon.cjs +66 -0
- package/dist/cjs/code-block-icon.cjs +70 -0
- package/dist/cjs/foods-icon.cjs +58 -0
- package/dist/cjs/index.cjs +84 -0
- package/dist/cjs/nature-icon.cjs +45 -0
- package/dist/cjs/objects-icon.cjs +57 -0
- package/dist/cjs/people-icon.cjs +67 -0
- package/dist/cjs/places-icon.cjs +46 -0
- package/dist/cjs/quote-icon.cjs +41 -0
- package/dist/cjs/random-icon.cjs +70 -0
- package/dist/cjs/recent-icon.cjs +47 -0
- package/dist/cjs/symbols-icon.cjs +66 -0
- package/dist/esm/activity-icon.d.ts +3 -0
- package/dist/esm/activity-icon.js +62 -0
- package/dist/esm/callout-icon.d.ts +3 -0
- package/dist/esm/callout-icon.js +61 -0
- package/dist/esm/code-block-icon.d.ts +3 -0
- package/dist/esm/code-block-icon.js +65 -0
- package/dist/esm/foods-icon.d.ts +3 -0
- package/dist/esm/foods-icon.js +53 -0
- package/dist/esm/index.d.ts +12 -0
- package/dist/esm/index.js +13 -1
- package/dist/esm/nature-icon.d.ts +3 -0
- package/dist/esm/nature-icon.js +40 -0
- package/dist/esm/objects-icon.d.ts +3 -0
- package/dist/esm/objects-icon.js +52 -0
- package/dist/esm/people-icon.d.ts +3 -0
- package/dist/esm/people-icon.js +62 -0
- package/dist/esm/places-icon.d.ts +3 -0
- package/dist/esm/places-icon.js +41 -0
- package/dist/esm/quote-icon.d.ts +3 -0
- package/dist/esm/quote-icon.js +36 -0
- package/dist/esm/random-icon.d.ts +3 -0
- package/dist/esm/random-icon.js +65 -0
- package/dist/esm/recent-icon.d.ts +3 -0
- package/dist/esm/recent-icon.js +42 -0
- package/dist/esm/symbols-icon.d.ts +3 -0
- package/dist/esm/symbols-icon.js +61 -0
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AIcon } from "./a-icon.js";
|
|
2
|
+
import { ActivityIcon } from "./activity-icon.js";
|
|
2
3
|
import { AddDigitsIcon } from "./add-digits-icon.js";
|
|
3
4
|
import { AddImageIcon } from "./add-image-icon.js";
|
|
4
5
|
import { AddNoteIcon } from "./add-note-icon.js";
|
|
@@ -26,6 +27,7 @@ import { BoxplotIcon } from "./boxplot-icon.js";
|
|
|
26
27
|
import { BrushIcon } from "./brush-icon.js";
|
|
27
28
|
import { BubbleIcon } from "./bubble-icon.js";
|
|
28
29
|
import { CalendarIcon } from "./calendar-icon.js";
|
|
30
|
+
import { CalloutIcon } from "./callout-icon.js";
|
|
29
31
|
import { CancelFreezeIcon } from "./cancel-freeze-icon.js";
|
|
30
32
|
import { CancelMergeIcon } from "./cancel-merge-icon.js";
|
|
31
33
|
import { CatalogueIcon } from "./catalogue-icon.js";
|
|
@@ -35,6 +37,7 @@ import { ClockIcon } from "./clock-icon.js";
|
|
|
35
37
|
import { CloseIcon } from "./close-icon.js";
|
|
36
38
|
import { CloudOutlineIcon } from "./cloud-outline-icon.js";
|
|
37
39
|
import { CntIcon } from "./cnt-icon.js";
|
|
40
|
+
import { CodeBlockIcon } from "./code-block-icon.js";
|
|
38
41
|
import { CodeIcon } from "./code-icon.js";
|
|
39
42
|
import { ColumnChartIcon } from "./column-chart-icon.js";
|
|
40
43
|
import { ColumnIcon } from "./column-icon.js";
|
|
@@ -77,6 +80,7 @@ import { FlagIcon } from "./flag-icon.js";
|
|
|
77
80
|
import { FolderIcon } from "./folder-icon.js";
|
|
78
81
|
import { FontSizeIncreaseIcon } from "./font-size-increase-icon.js";
|
|
79
82
|
import { FontSizeReduceIcon } from "./font-size-reduce-icon.js";
|
|
83
|
+
import { FoodsIcon } from "./foods-icon.js";
|
|
80
84
|
import { FreezeColumnIcon } from "./freeze-column-icon.js";
|
|
81
85
|
import { FreezeRowIcon } from "./freeze-row-icon.js";
|
|
82
86
|
import { FreezeToSelectedIcon } from "./freeze-to-selected-icon.js";
|
|
@@ -135,19 +139,23 @@ import { MoreUpIcon } from "./more-up-icon.js";
|
|
|
135
139
|
import { MoveDownIcon } from "./move-down-icon.js";
|
|
136
140
|
import { MoveUpIcon } from "./move-up-icon.js";
|
|
137
141
|
import { MovingAverageIcon } from "./moving-average-icon.js";
|
|
142
|
+
import { NatureIcon } from "./nature-icon.js";
|
|
138
143
|
import { NoBorderIcon } from "./no-border-icon.js";
|
|
139
144
|
import { NoRotationIcon } from "./no-rotation-icon.js";
|
|
140
145
|
import { NumberIcon } from "./number-icon.js";
|
|
146
|
+
import { ObjectsIcon } from "./objects-icon.js";
|
|
141
147
|
import { OffLineIcon } from "./off-line-icon.js";
|
|
142
148
|
import { OnLineIcon } from "./on-line-icon.js";
|
|
143
149
|
import { OneToOneIcon } from "./one-to-one-icon.js";
|
|
144
150
|
import { OrderIcon } from "./order-icon.js";
|
|
145
151
|
import { OverflowIcon } from "./overflow-icon.js";
|
|
146
152
|
import { PenIcon } from "./pen-icon.js";
|
|
153
|
+
import { PeopleIcon } from "./people-icon.js";
|
|
147
154
|
import { PercentIcon } from "./percent-icon.js";
|
|
148
155
|
import { PieChartIcon } from "./pie-chart-icon.js";
|
|
149
156
|
import { PipingIcon } from "./piping-icon.js";
|
|
150
157
|
import { PivotTableIcon } from "./pivot-table-icon.js";
|
|
158
|
+
import { PlacesIcon } from "./places-icon.js";
|
|
151
159
|
import { PolynomialIcon } from "./polynomial-icon.js";
|
|
152
160
|
import { PowerLineIcon } from "./power-line-icon.js";
|
|
153
161
|
import { PrintIcon } from "./print-icon.js";
|
|
@@ -157,7 +165,10 @@ import { Progress25Icon } from "./progress-25-icon.js";
|
|
|
157
165
|
import { Progress50Icon } from "./progress-50-icon.js";
|
|
158
166
|
import { Progress75Icon } from "./progress-75-icon.js";
|
|
159
167
|
import { ProtectIcon } from "./protect-icon.js";
|
|
168
|
+
import { QuoteIcon } from "./quote-icon.js";
|
|
160
169
|
import { RadarChartIcon } from "./radar-chart-icon.js";
|
|
170
|
+
import { RandomIcon } from "./random-icon.js";
|
|
171
|
+
import { RecentIcon } from "./recent-icon.js";
|
|
161
172
|
import { RecordIcon } from "./record-icon.js";
|
|
162
173
|
import { RedoIcon } from "./redo-icon.js";
|
|
163
174
|
import { ReduceDigitsIcon } from "./reduce-digits-icon.js";
|
|
@@ -379,6 +390,7 @@ import { SubscriptIcon } from "./subscript-icon.js";
|
|
|
379
390
|
import { SuccessIcon } from "./success-icon.js";
|
|
380
391
|
import { SumIcon } from "./sum-icon.js";
|
|
381
392
|
import { SuperscriptIcon } from "./superscript-icon.js";
|
|
393
|
+
import { SymbolsIcon } from "./symbols-icon.js";
|
|
382
394
|
import { TableIcon } from "./table-icon.js";
|
|
383
395
|
import { TextIcon } from "./text-icon.js";
|
|
384
396
|
import { TextTypeIcon } from "./text-type-icon.js";
|
|
@@ -481,4 +493,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
|
|
|
481
493
|
import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
|
|
482
494
|
import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
|
|
483
495
|
import { WarnDoubleIcon } from "./warn-double-icon.js";
|
|
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 };
|
|
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 };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/nature-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"stroke": "currentColor",
|
|
17
|
+
"d": "M13.6 2.4C8.4 2.6 4.2 5.2 3.6 9.1C3.2 11.7 5.1 13.8 7.6 13.3C11.3 12.6 13.4 7.9 13.6 2.4Z",
|
|
18
|
+
"strokeLinejoin": "round",
|
|
19
|
+
"strokeWidth": 1.3
|
|
20
|
+
}
|
|
21
|
+
}, {
|
|
22
|
+
"tag": "path",
|
|
23
|
+
"attrs": {
|
|
24
|
+
"stroke": "currentColor",
|
|
25
|
+
"d": "M3.4 13.1C5.5 9.6 8.3 6.9 12.2 4.6",
|
|
26
|
+
"strokeLinecap": "round",
|
|
27
|
+
"strokeWidth": 1.3
|
|
28
|
+
}
|
|
29
|
+
}]
|
|
30
|
+
};
|
|
31
|
+
const NatureIcon = forwardRef(function NatureIcon(props, ref) {
|
|
32
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
33
|
+
id: "nature-icon",
|
|
34
|
+
ref,
|
|
35
|
+
icon: element
|
|
36
|
+
}));
|
|
37
|
+
});
|
|
38
|
+
NatureIcon.displayName = "NatureIcon";
|
|
39
|
+
//#endregion
|
|
40
|
+
export { NatureIcon, NatureIcon as default };
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/objects-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"d": "M5.5 10.2C4.4 9.4 3.8 8.1 3.8 6.8C3.8 4.5 5.7 2.7 8 2.7C10.3 2.7 12.2 4.5 12.2 6.8C12.2 8.1 11.6 9.4 10.5 10.2C9.9 10.7 9.7 11.1 9.7 11.8H6.3C6.3 11.1 6.1 10.7 5.5 10.2Z",
|
|
19
|
+
"strokeLinejoin": "round",
|
|
20
|
+
"strokeWidth": 1.3
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"stroke": "currentColor",
|
|
27
|
+
"d": "M6.4 13.4H9.6",
|
|
28
|
+
"strokeLinecap": "round",
|
|
29
|
+
"strokeWidth": 1.3
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "path",
|
|
34
|
+
"attrs": {
|
|
35
|
+
"stroke": "currentColor",
|
|
36
|
+
"d": "M6.7 11.8H9.3",
|
|
37
|
+
"strokeLinecap": "round",
|
|
38
|
+
"strokeWidth": 1.3
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
};
|
|
43
|
+
const ObjectsIcon = forwardRef(function ObjectsIcon(props, ref) {
|
|
44
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
45
|
+
id: "objects-icon",
|
|
46
|
+
ref,
|
|
47
|
+
icon: element
|
|
48
|
+
}));
|
|
49
|
+
});
|
|
50
|
+
ObjectsIcon.displayName = "ObjectsIcon";
|
|
51
|
+
//#endregion
|
|
52
|
+
export { ObjectsIcon, ObjectsIcon as default };
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/people-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "circle",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"cx": 8,
|
|
18
|
+
"cy": 8,
|
|
19
|
+
"r": 5.7,
|
|
20
|
+
"stroke": "currentColor",
|
|
21
|
+
"strokeWidth": 1.3
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"d": "M5.4 6.8H5.5",
|
|
29
|
+
"strokeLinecap": "round",
|
|
30
|
+
"strokeWidth": 1.6
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"tag": "path",
|
|
35
|
+
"attrs": {
|
|
36
|
+
"stroke": "currentColor",
|
|
37
|
+
"d": "M10.5 6.8H10.6",
|
|
38
|
+
"strokeLinecap": "round",
|
|
39
|
+
"strokeWidth": 1.6
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"tag": "path",
|
|
44
|
+
"attrs": {
|
|
45
|
+
"stroke": "currentColor",
|
|
46
|
+
"d": "M5.6 9.3C6.2 10.4 7 10.9 8 10.9C9 10.9 9.8 10.4 10.4 9.3",
|
|
47
|
+
"strokeLinecap": "round",
|
|
48
|
+
"strokeWidth": 1.3
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
};
|
|
53
|
+
const PeopleIcon = forwardRef(function PeopleIcon(props, ref) {
|
|
54
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
55
|
+
id: "people-icon",
|
|
56
|
+
ref,
|
|
57
|
+
icon: element
|
|
58
|
+
}));
|
|
59
|
+
});
|
|
60
|
+
PeopleIcon.displayName = "PeopleIcon";
|
|
61
|
+
//#endregion
|
|
62
|
+
export { PeopleIcon, PeopleIcon as default };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/places-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"stroke": "currentColor",
|
|
17
|
+
"d": "M12.6 6.7C12.6 10.1 8 14.1 8 14.1C8 14.1 3.4 10.1 3.4 6.7C3.4 4.2 5.5 2.1 8 2.1C10.5 2.1 12.6 4.2 12.6 6.7Z",
|
|
18
|
+
"strokeLinejoin": "round",
|
|
19
|
+
"strokeWidth": 1.3
|
|
20
|
+
}
|
|
21
|
+
}, {
|
|
22
|
+
"tag": "circle",
|
|
23
|
+
"attrs": {
|
|
24
|
+
"cx": 8,
|
|
25
|
+
"cy": 6.7,
|
|
26
|
+
"r": 1.6,
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"strokeWidth": 1.3
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
};
|
|
32
|
+
const PlacesIcon = forwardRef(function PlacesIcon(props, ref) {
|
|
33
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
34
|
+
id: "places-icon",
|
|
35
|
+
ref,
|
|
36
|
+
icon: element
|
|
37
|
+
}));
|
|
38
|
+
});
|
|
39
|
+
PlacesIcon.displayName = "PlacesIcon";
|
|
40
|
+
//#endregion
|
|
41
|
+
export { PlacesIcon, PlacesIcon as default };
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/quote-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "path",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"fill": "currentColor",
|
|
17
|
+
"d": "M4.2 4.2H6.7C7.2 4.2 7.6 4.6 7.6 5.1V7.3C7.6 9.5 6.4 11.2 4.4 12.2C4.1 12.4 3.7 12.2 3.6 11.9C3.4 11.6 3.5 11.2 3.8 11C5.1 10.2 5.8 9.3 5.9 8.2H4.2C3.7 8.2 3.3 7.8 3.3 7.3V5.1C3.3 4.6 3.7 4.2 4.2 4.2Z"
|
|
18
|
+
}
|
|
19
|
+
}, {
|
|
20
|
+
"tag": "path",
|
|
21
|
+
"attrs": {
|
|
22
|
+
"fill": "currentColor",
|
|
23
|
+
"d": "M10.1 4.2H12.6C13.1 4.2 13.5 4.6 13.5 5.1V7.3C13.5 9.5 12.3 11.2 10.3 12.2C10 12.4 9.6 12.2 9.5 11.9C9.3 11.6 9.4 11.2 9.7 11C11 10.2 11.7 9.3 11.8 8.2H10.1C9.6 8.2 9.2 7.8 9.2 7.3V5.1C9.2 4.6 9.6 4.2 10.1 4.2Z"
|
|
24
|
+
}
|
|
25
|
+
}]
|
|
26
|
+
};
|
|
27
|
+
const QuoteIcon = forwardRef(function QuoteIcon(props, ref) {
|
|
28
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
29
|
+
id: "quote-icon",
|
|
30
|
+
ref,
|
|
31
|
+
icon: element
|
|
32
|
+
}));
|
|
33
|
+
});
|
|
34
|
+
QuoteIcon.displayName = "QuoteIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { QuoteIcon, QuoteIcon as default };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/random-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"d": "M2.5 4.5H4.3C5.4 4.5 6.2 5.1 7 6.2L9.2 9.2C10 10.3 10.8 10.9 11.9 10.9H13.5",
|
|
19
|
+
"strokeLinecap": "round",
|
|
20
|
+
"strokeLinejoin": "round",
|
|
21
|
+
"strokeWidth": 1.3
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"tag": "path",
|
|
26
|
+
"attrs": {
|
|
27
|
+
"stroke": "currentColor",
|
|
28
|
+
"d": "M11.5 8.9L13.5 10.9L11.5 12.9",
|
|
29
|
+
"strokeLinecap": "round",
|
|
30
|
+
"strokeLinejoin": "round",
|
|
31
|
+
"strokeWidth": 1.3
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"tag": "path",
|
|
36
|
+
"attrs": {
|
|
37
|
+
"stroke": "currentColor",
|
|
38
|
+
"d": "M2.5 10.9H4.3C5.4 10.9 6.2 10.3 7 9.2L9.2 6.2C10 5.1 10.8 4.5 11.9 4.5H13.5",
|
|
39
|
+
"strokeLinecap": "round",
|
|
40
|
+
"strokeLinejoin": "round",
|
|
41
|
+
"strokeWidth": 1.3
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"tag": "path",
|
|
46
|
+
"attrs": {
|
|
47
|
+
"stroke": "currentColor",
|
|
48
|
+
"d": "M11.5 2.5L13.5 4.5L11.5 6.5",
|
|
49
|
+
"strokeLinecap": "round",
|
|
50
|
+
"strokeLinejoin": "round",
|
|
51
|
+
"strokeWidth": 1.3
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
]
|
|
55
|
+
};
|
|
56
|
+
const RandomIcon = forwardRef(function RandomIcon(props, ref) {
|
|
57
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
58
|
+
id: "random-icon",
|
|
59
|
+
ref,
|
|
60
|
+
icon: element
|
|
61
|
+
}));
|
|
62
|
+
});
|
|
63
|
+
RandomIcon.displayName = "RandomIcon";
|
|
64
|
+
//#endregion
|
|
65
|
+
export { RandomIcon, RandomIcon as default };
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/recent-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [{
|
|
14
|
+
"tag": "circle",
|
|
15
|
+
"attrs": {
|
|
16
|
+
"cx": 8,
|
|
17
|
+
"cy": 8,
|
|
18
|
+
"r": 5.7,
|
|
19
|
+
"stroke": "currentColor",
|
|
20
|
+
"strokeWidth": 1.3
|
|
21
|
+
}
|
|
22
|
+
}, {
|
|
23
|
+
"tag": "path",
|
|
24
|
+
"attrs": {
|
|
25
|
+
"stroke": "currentColor",
|
|
26
|
+
"d": "M8 4.8V8.2L10.4 9.6",
|
|
27
|
+
"strokeLinecap": "round",
|
|
28
|
+
"strokeLinejoin": "round",
|
|
29
|
+
"strokeWidth": 1.3
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
};
|
|
33
|
+
const RecentIcon = forwardRef(function RecentIcon(props, ref) {
|
|
34
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
35
|
+
id: "recent-icon",
|
|
36
|
+
ref,
|
|
37
|
+
icon: element
|
|
38
|
+
}));
|
|
39
|
+
});
|
|
40
|
+
RecentIcon.displayName = "RecentIcon";
|
|
41
|
+
//#endregion
|
|
42
|
+
export { RecentIcon, RecentIcon as default };
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { createElement, forwardRef } from "react";
|
|
2
|
+
import { IconBase } from "./base.js";
|
|
3
|
+
//#region ts/symbols-icon.tsx
|
|
4
|
+
const element = {
|
|
5
|
+
"tag": "svg",
|
|
6
|
+
"attrs": {
|
|
7
|
+
"xmlns": "http://www.w3.org/2000/svg",
|
|
8
|
+
"fill": "none",
|
|
9
|
+
"viewBox": "0 0 16 16",
|
|
10
|
+
"width": "1em",
|
|
11
|
+
"height": "1em"
|
|
12
|
+
},
|
|
13
|
+
"children": [
|
|
14
|
+
{
|
|
15
|
+
"tag": "path",
|
|
16
|
+
"attrs": {
|
|
17
|
+
"stroke": "currentColor",
|
|
18
|
+
"d": "M6.4 2.8L5.5 13.2",
|
|
19
|
+
"strokeLinecap": "round",
|
|
20
|
+
"strokeWidth": 1.3
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"tag": "path",
|
|
25
|
+
"attrs": {
|
|
26
|
+
"stroke": "currentColor",
|
|
27
|
+
"d": "M10.5 2.8L9.6 13.2",
|
|
28
|
+
"strokeLinecap": "round",
|
|
29
|
+
"strokeWidth": 1.3
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"tag": "path",
|
|
34
|
+
"attrs": {
|
|
35
|
+
"stroke": "currentColor",
|
|
36
|
+
"d": "M3.1 6H13.1",
|
|
37
|
+
"strokeLinecap": "round",
|
|
38
|
+
"strokeWidth": 1.3
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"tag": "path",
|
|
43
|
+
"attrs": {
|
|
44
|
+
"stroke": "currentColor",
|
|
45
|
+
"d": "M2.9 10H12.9",
|
|
46
|
+
"strokeLinecap": "round",
|
|
47
|
+
"strokeWidth": 1.3
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
};
|
|
52
|
+
const SymbolsIcon = forwardRef(function SymbolsIcon(props, ref) {
|
|
53
|
+
return createElement(IconBase, Object.assign({}, props, {
|
|
54
|
+
id: "symbols-icon",
|
|
55
|
+
ref,
|
|
56
|
+
icon: element
|
|
57
|
+
}));
|
|
58
|
+
});
|
|
59
|
+
SymbolsIcon.displayName = "SymbolsIcon";
|
|
60
|
+
//#endregion
|
|
61
|
+
export { SymbolsIcon, SymbolsIcon as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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.
|
|
48
|
+
"@univerjs/icons-svg": "1.8.0"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
51
|
"build": "node --experimental-strip-types ./scripts/build/index.ts && tsc"
|