@univerjs/icons 1.6.0 → 1.7.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.
@@ -0,0 +1,62 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/activity-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.6,
20
+ "stroke": "currentColor",
21
+ "strokeWidth": 1.3
22
+ }
23
+ },
24
+ {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "d": "M2.8 6.2C5.2 6.7 8.5 5.4 10.8 2.9",
29
+ "strokeLinecap": "round",
30
+ "strokeWidth": 1.3
31
+ }
32
+ },
33
+ {
34
+ "tag": "path",
35
+ "attrs": {
36
+ "stroke": "currentColor",
37
+ "d": "M5.1 12.6C5.5 10.4 8.3 7.8 13.2 7.7",
38
+ "strokeLinecap": "round",
39
+ "strokeWidth": 1.3
40
+ }
41
+ },
42
+ {
43
+ "tag": "path",
44
+ "attrs": {
45
+ "stroke": "currentColor",
46
+ "d": "M6.2 2.8C8.6 5.4 9.8 8.9 9.5 13.3",
47
+ "strokeLinecap": "round",
48
+ "strokeWidth": 1.3
49
+ }
50
+ }
51
+ ]
52
+ };
53
+ const ActivityIcon = forwardRef(function ActivityIcon(props, ref) {
54
+ return createElement(IconBase, Object.assign({}, props, {
55
+ id: "activity-icon",
56
+ ref,
57
+ icon: element
58
+ }));
59
+ });
60
+ ActivityIcon.displayName = "ActivityIcon";
61
+ //#endregion
62
+ export { ActivityIcon, ActivityIcon as default };
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const FoodsIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default FoodsIcon;
@@ -0,0 +1,53 @@
1
+ import { createElement, forwardRef } from "react";
2
+ import { IconBase } from "./base.js";
3
+ //#region ts/foods-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": "M8.4 4.3C9.1 3.3 10.1 2.7 11.3 2.6C11.2 3.8 10.5 4.8 9.4 5.3",
19
+ "strokeLinecap": "round",
20
+ "strokeLinejoin": "round",
21
+ "strokeWidth": 1.3
22
+ }
23
+ },
24
+ {
25
+ "tag": "path",
26
+ "attrs": {
27
+ "stroke": "currentColor",
28
+ "d": "M7.8 4.7C6.8 3.9 5.1 4.1 4.1 5.2C2.8 6.6 2.8 9 3.6 10.9C4.3 12.6 5.4 13.7 6.4 13.7C7.1 13.7 7.4 13.3 8 13.3C8.6 13.3 8.9 13.7 9.6 13.7C10.7 13.7 11.8 12.5 12.4 10.9C13.2 8.8 12.8 6.5 11.7 5.3C10.6 4.1 8.9 3.9 7.8 4.7Z",
29
+ "strokeLinejoin": "round",
30
+ "strokeWidth": 1.3
31
+ }
32
+ },
33
+ {
34
+ "tag": "path",
35
+ "attrs": {
36
+ "stroke": "currentColor",
37
+ "d": "M7.8 4.7C7.8 3.7 7.5 3 6.8 2.4",
38
+ "strokeLinecap": "round",
39
+ "strokeWidth": 1.3
40
+ }
41
+ }
42
+ ]
43
+ };
44
+ const FoodsIcon = forwardRef(function FoodsIcon(props, ref) {
45
+ return createElement(IconBase, Object.assign({}, props, {
46
+ id: "foods-icon",
47
+ ref,
48
+ icon: element
49
+ }));
50
+ });
51
+ FoodsIcon.displayName = "FoodsIcon";
52
+ //#endregion
53
+ export { FoodsIcon, FoodsIcon as default };
@@ -1,4 +1,5 @@
1
1
  export { AIcon } from './a-icon.js';
2
+ export { ActivityIcon } from './activity-icon.js';
2
3
  export { AddDigitsIcon } from './add-digits-icon.js';
3
4
  export { AddImageIcon } from './add-image-icon.js';
4
5
  export { AddNoteIcon } from './add-note-icon.js';
@@ -77,6 +78,7 @@ export { FlagIcon } from './flag-icon.js';
77
78
  export { FolderIcon } from './folder-icon.js';
78
79
  export { FontSizeIncreaseIcon } from './font-size-increase-icon.js';
79
80
  export { FontSizeReduceIcon } from './font-size-reduce-icon.js';
81
+ export { FoodsIcon } from './foods-icon.js';
80
82
  export { FreezeColumnIcon } from './freeze-column-icon.js';
81
83
  export { FreezeRowIcon } from './freeze-row-icon.js';
82
84
  export { FreezeToSelectedIcon } from './freeze-to-selected-icon.js';
@@ -135,19 +137,23 @@ export { MoreUpIcon } from './more-up-icon.js';
135
137
  export { MoveDownIcon } from './move-down-icon.js';
136
138
  export { MoveUpIcon } from './move-up-icon.js';
137
139
  export { MovingAverageIcon } from './moving-average-icon.js';
140
+ export { NatureIcon } from './nature-icon.js';
138
141
  export { NoBorderIcon } from './no-border-icon.js';
139
142
  export { NoRotationIcon } from './no-rotation-icon.js';
140
143
  export { NumberIcon } from './number-icon.js';
144
+ export { ObjectsIcon } from './objects-icon.js';
141
145
  export { OffLineIcon } from './off-line-icon.js';
142
146
  export { OnLineIcon } from './on-line-icon.js';
143
147
  export { OneToOneIcon } from './one-to-one-icon.js';
144
148
  export { OrderIcon } from './order-icon.js';
145
149
  export { OverflowIcon } from './overflow-icon.js';
146
150
  export { PenIcon } from './pen-icon.js';
151
+ export { PeopleIcon } from './people-icon.js';
147
152
  export { PercentIcon } from './percent-icon.js';
148
153
  export { PieChartIcon } from './pie-chart-icon.js';
149
154
  export { PipingIcon } from './piping-icon.js';
150
155
  export { PivotTableIcon } from './pivot-table-icon.js';
156
+ export { PlacesIcon } from './places-icon.js';
151
157
  export { PolynomialIcon } from './polynomial-icon.js';
152
158
  export { PowerLineIcon } from './power-line-icon.js';
153
159
  export { PrintIcon } from './print-icon.js';
@@ -158,6 +164,8 @@ export { Progress50Icon } from './progress-50-icon.js';
158
164
  export { Progress75Icon } from './progress-75-icon.js';
159
165
  export { ProtectIcon } from './protect-icon.js';
160
166
  export { RadarChartIcon } from './radar-chart-icon.js';
167
+ export { RandomIcon } from './random-icon.js';
168
+ export { RecentIcon } from './recent-icon.js';
161
169
  export { RecordIcon } from './record-icon.js';
162
170
  export { RedoIcon } from './redo-icon.js';
163
171
  export { ReduceDigitsIcon } from './reduce-digits-icon.js';
@@ -379,6 +387,7 @@ export { SubscriptIcon } from './subscript-icon.js';
379
387
  export { SuccessIcon } from './success-icon.js';
380
388
  export { SumIcon } from './sum-icon.js';
381
389
  export { SuperscriptIcon } from './superscript-icon.js';
390
+ export { SymbolsIcon } from './symbols-icon.js';
382
391
  export { TableIcon } from './table-icon.js';
383
392
  export { TextIcon } from './text-icon.js';
384
393
  export { TextTypeIcon } from './text-type-icon.js';
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";
@@ -77,6 +78,7 @@ import { FlagIcon } from "./flag-icon.js";
77
78
  import { FolderIcon } from "./folder-icon.js";
78
79
  import { FontSizeIncreaseIcon } from "./font-size-increase-icon.js";
79
80
  import { FontSizeReduceIcon } from "./font-size-reduce-icon.js";
81
+ import { FoodsIcon } from "./foods-icon.js";
80
82
  import { FreezeColumnIcon } from "./freeze-column-icon.js";
81
83
  import { FreezeRowIcon } from "./freeze-row-icon.js";
82
84
  import { FreezeToSelectedIcon } from "./freeze-to-selected-icon.js";
@@ -135,19 +137,23 @@ import { MoreUpIcon } from "./more-up-icon.js";
135
137
  import { MoveDownIcon } from "./move-down-icon.js";
136
138
  import { MoveUpIcon } from "./move-up-icon.js";
137
139
  import { MovingAverageIcon } from "./moving-average-icon.js";
140
+ import { NatureIcon } from "./nature-icon.js";
138
141
  import { NoBorderIcon } from "./no-border-icon.js";
139
142
  import { NoRotationIcon } from "./no-rotation-icon.js";
140
143
  import { NumberIcon } from "./number-icon.js";
144
+ import { ObjectsIcon } from "./objects-icon.js";
141
145
  import { OffLineIcon } from "./off-line-icon.js";
142
146
  import { OnLineIcon } from "./on-line-icon.js";
143
147
  import { OneToOneIcon } from "./one-to-one-icon.js";
144
148
  import { OrderIcon } from "./order-icon.js";
145
149
  import { OverflowIcon } from "./overflow-icon.js";
146
150
  import { PenIcon } from "./pen-icon.js";
151
+ import { PeopleIcon } from "./people-icon.js";
147
152
  import { PercentIcon } from "./percent-icon.js";
148
153
  import { PieChartIcon } from "./pie-chart-icon.js";
149
154
  import { PipingIcon } from "./piping-icon.js";
150
155
  import { PivotTableIcon } from "./pivot-table-icon.js";
156
+ import { PlacesIcon } from "./places-icon.js";
151
157
  import { PolynomialIcon } from "./polynomial-icon.js";
152
158
  import { PowerLineIcon } from "./power-line-icon.js";
153
159
  import { PrintIcon } from "./print-icon.js";
@@ -158,6 +164,8 @@ import { Progress50Icon } from "./progress-50-icon.js";
158
164
  import { Progress75Icon } from "./progress-75-icon.js";
159
165
  import { ProtectIcon } from "./protect-icon.js";
160
166
  import { RadarChartIcon } from "./radar-chart-icon.js";
167
+ import { RandomIcon } from "./random-icon.js";
168
+ import { RecentIcon } from "./recent-icon.js";
161
169
  import { RecordIcon } from "./record-icon.js";
162
170
  import { RedoIcon } from "./redo-icon.js";
163
171
  import { ReduceDigitsIcon } from "./reduce-digits-icon.js";
@@ -379,6 +387,7 @@ import { SubscriptIcon } from "./subscript-icon.js";
379
387
  import { SuccessIcon } from "./success-icon.js";
380
388
  import { SumIcon } from "./sum-icon.js";
381
389
  import { SuperscriptIcon } from "./superscript-icon.js";
390
+ import { SymbolsIcon } from "./symbols-icon.js";
382
391
  import { TableIcon } from "./table-icon.js";
383
392
  import { TextIcon } from "./text-icon.js";
384
393
  import { TextTypeIcon } from "./text-type-icon.js";
@@ -481,4 +490,4 @@ import { TodoListDoubleIcon } from "./todo-list-double-icon.js";
481
490
  import { UpBorderDoubleIcon } from "./up-border-double-icon.js";
482
491
  import { VerticalBorderDoubleIcon } from "./vertical-border-double-icon.js";
483
492
  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 };
493
+ 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, 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, 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, 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,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const NatureIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default NatureIcon;
@@ -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,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const ObjectsIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default ObjectsIcon;
@@ -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,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const PeopleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default PeopleIcon;
@@ -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,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const PlacesIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default PlacesIcon;
@@ -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,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const RandomIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default RandomIcon;
@@ -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,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const RecentIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default RecentIcon;
@@ -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,3 @@
1
+ import type { IconProps } from './base.js';
2
+ export declare const SymbolsIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGElement>>;
3
+ export default SymbolsIcon;