@carbon/icons-react 11.36.0 → 11.37.0-rc.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/es/RightPanelClose.d.ts +11 -0
- package/es/RightPanelClose.js +39 -0
- package/es/RightPanelCloseFilled.d.ts +11 -0
- package/es/RightPanelCloseFilled.js +39 -0
- package/es/RightPanelOpen.d.ts +11 -0
- package/es/RightPanelOpen.js +39 -0
- package/es/RightPanelOpenFilled.d.ts +11 -0
- package/es/RightPanelOpenFilled.js +39 -0
- package/es/generated/bucket-12.d.ts +5 -5
- package/es/generated/bucket-12.js +63 -59
- package/es/generated/bucket-13.d.ts +5 -5
- package/es/generated/bucket-13.js +512 -517
- package/es/generated/bucket-14.d.ts +5 -5
- package/es/generated/bucket-14.js +561 -566
- package/es/generated/bucket-15.d.ts +5 -5
- package/es/generated/bucket-15.js +549 -545
- package/es/generated/bucket-16.d.ts +5 -5
- package/es/generated/bucket-16.js +534 -532
- package/es/generated/bucket-17.d.ts +5 -1
- package/es/generated/bucket-17.js +498 -410
- package/es/index.js +6 -6
- package/lib/RightPanelClose.d.ts +11 -0
- package/lib/RightPanelClose.js +45 -0
- package/lib/RightPanelCloseFilled.d.ts +11 -0
- package/lib/RightPanelCloseFilled.js +45 -0
- package/lib/RightPanelOpen.d.ts +11 -0
- package/lib/RightPanelOpen.js +45 -0
- package/lib/RightPanelOpenFilled.d.ts +11 -0
- package/lib/RightPanelOpenFilled.js +45 -0
- package/lib/generated/bucket-12.d.ts +5 -5
- package/lib/generated/bucket-12.js +66 -62
- package/lib/generated/bucket-13.d.ts +5 -5
- package/lib/generated/bucket-13.js +515 -520
- package/lib/generated/bucket-14.d.ts +5 -5
- package/lib/generated/bucket-14.js +564 -569
- package/lib/generated/bucket-15.d.ts +5 -5
- package/lib/generated/bucket-15.js +552 -548
- package/lib/generated/bucket-16.d.ts +5 -5
- package/lib/generated/bucket-16.js +537 -535
- package/lib/generated/bucket-17.d.ts +5 -1
- package/lib/generated/bucket-17.js +501 -409
- package/lib/index.js +24 -20
- package/package.json +3 -3
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2023
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
|
+
*/
|
|
9
|
+
import type { CarbonIconType } from './CarbonIcon';
|
|
10
|
+
declare const RightPanelClose: CarbonIconType;
|
|
11
|
+
export default RightPanelClose
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2023
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import Icon from './Icon.js';
|
|
11
|
+
import { i as iconPropTypes } from './iconPropTypes-4cbeb95d.js';
|
|
12
|
+
import '@carbon/icon-helpers';
|
|
13
|
+
import 'prop-types';
|
|
14
|
+
|
|
15
|
+
var _path;
|
|
16
|
+
const RightPanelClose = /*#__PURE__*/React.forwardRef(function RightPanelClose(_ref, ref) {
|
|
17
|
+
let {
|
|
18
|
+
children,
|
|
19
|
+
size = 16,
|
|
20
|
+
...rest
|
|
21
|
+
} = _ref;
|
|
22
|
+
return /*#__PURE__*/React.createElement(Icon, {
|
|
23
|
+
width: size,
|
|
24
|
+
height: size,
|
|
25
|
+
ref: ref,
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
viewBox: "0 0 32 32",
|
|
28
|
+
fill: "currentColor",
|
|
29
|
+
...rest
|
|
30
|
+
}, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
strokeWidth: "0",
|
|
32
|
+
d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm20,0h6v20h-6V6Zm-18,0h16v20H4v-9h10.1699s-3.5801,3.5898-3.5801,3.5898l1.4102,1.4102,6-6-6-6-1.4102,1.4102,3.5801,3.5898H4V6Z"
|
|
33
|
+
})), children);
|
|
34
|
+
});
|
|
35
|
+
if (process.env.NODE_ENV !== "production") {
|
|
36
|
+
RightPanelClose.propTypes = iconPropTypes;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { RightPanelClose as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2023
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
|
+
*/
|
|
9
|
+
import type { CarbonIconType } from './CarbonIcon';
|
|
10
|
+
declare const RightPanelCloseFilled: CarbonIconType;
|
|
11
|
+
export default RightPanelCloseFilled
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2023
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import Icon from './Icon.js';
|
|
11
|
+
import { i as iconPropTypes } from './iconPropTypes-4cbeb95d.js';
|
|
12
|
+
import '@carbon/icon-helpers';
|
|
13
|
+
import 'prop-types';
|
|
14
|
+
|
|
15
|
+
var _path;
|
|
16
|
+
const RightPanelCloseFilled = /*#__PURE__*/React.forwardRef(function RightPanelCloseFilled(_ref, ref) {
|
|
17
|
+
let {
|
|
18
|
+
children,
|
|
19
|
+
size = 16,
|
|
20
|
+
...rest
|
|
21
|
+
} = _ref;
|
|
22
|
+
return /*#__PURE__*/React.createElement(Icon, {
|
|
23
|
+
width: size,
|
|
24
|
+
height: size,
|
|
25
|
+
ref: ref,
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
viewBox: "0 0 32 32",
|
|
28
|
+
fill: "currentColor",
|
|
29
|
+
...rest
|
|
30
|
+
}, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
strokeWidth: "0",
|
|
32
|
+
d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm2,0h16v20H4v-9h10.1699s-3.5801,3.5898-3.5801,3.5898l1.4102,1.4102,6-6-6-6-1.4102,1.4102,3.5801,3.5898H4V6Z"
|
|
33
|
+
})), children);
|
|
34
|
+
});
|
|
35
|
+
if (process.env.NODE_ENV !== "production") {
|
|
36
|
+
RightPanelCloseFilled.propTypes = iconPropTypes;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { RightPanelCloseFilled as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2023
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
|
+
*/
|
|
9
|
+
import type { CarbonIconType } from './CarbonIcon';
|
|
10
|
+
declare const RightPanelOpen: CarbonIconType;
|
|
11
|
+
export default RightPanelOpen
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2023
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import Icon from './Icon.js';
|
|
11
|
+
import { i as iconPropTypes } from './iconPropTypes-4cbeb95d.js';
|
|
12
|
+
import '@carbon/icon-helpers';
|
|
13
|
+
import 'prop-types';
|
|
14
|
+
|
|
15
|
+
var _path;
|
|
16
|
+
const RightPanelOpen = /*#__PURE__*/React.forwardRef(function RightPanelOpen(_ref, ref) {
|
|
17
|
+
let {
|
|
18
|
+
children,
|
|
19
|
+
size = 16,
|
|
20
|
+
...rest
|
|
21
|
+
} = _ref;
|
|
22
|
+
return /*#__PURE__*/React.createElement(Icon, {
|
|
23
|
+
width: size,
|
|
24
|
+
height: size,
|
|
25
|
+
ref: ref,
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
viewBox: "0 0 32 32",
|
|
28
|
+
fill: "currentColor",
|
|
29
|
+
...rest
|
|
30
|
+
}, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
strokeWidth: "0",
|
|
32
|
+
d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm20,0h6v20h-6V6Zm-18,0h16v9h-10.1699s3.5798-3.5898,3.5798-3.5898l-1.4099-1.4102-6,6,6,6,1.4099-1.4102-3.5798-3.5898h10.1699v9H4V6Z"
|
|
33
|
+
})), children);
|
|
34
|
+
});
|
|
35
|
+
if (process.env.NODE_ENV !== "production") {
|
|
36
|
+
RightPanelOpen.propTypes = iconPropTypes;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { RightPanelOpen as default };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2023
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
|
+
*/
|
|
9
|
+
import type { CarbonIconType } from './CarbonIcon';
|
|
10
|
+
declare const RightPanelOpenFilled: CarbonIconType;
|
|
11
|
+
export default RightPanelOpenFilled
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright IBM Corp. 2016, 2023
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
|
+
*/
|
|
9
|
+
import React from 'react';
|
|
10
|
+
import Icon from './Icon.js';
|
|
11
|
+
import { i as iconPropTypes } from './iconPropTypes-4cbeb95d.js';
|
|
12
|
+
import '@carbon/icon-helpers';
|
|
13
|
+
import 'prop-types';
|
|
14
|
+
|
|
15
|
+
var _path;
|
|
16
|
+
const RightPanelOpenFilled = /*#__PURE__*/React.forwardRef(function RightPanelOpenFilled(_ref, ref) {
|
|
17
|
+
let {
|
|
18
|
+
children,
|
|
19
|
+
size = 16,
|
|
20
|
+
...rest
|
|
21
|
+
} = _ref;
|
|
22
|
+
return /*#__PURE__*/React.createElement(Icon, {
|
|
23
|
+
width: size,
|
|
24
|
+
height: size,
|
|
25
|
+
ref: ref,
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
viewBox: "0 0 32 32",
|
|
28
|
+
fill: "currentColor",
|
|
29
|
+
...rest
|
|
30
|
+
}, _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
strokeWidth: "0",
|
|
32
|
+
d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm2,0h16v9h-10.1699s3.5798-3.5898,3.5798-3.5898l-1.4099-1.4102-6,6,6,6,1.4099-1.4102-3.5798-3.5898h10.1699v9H4V6Z"
|
|
33
|
+
})), children);
|
|
34
|
+
});
|
|
35
|
+
if (process.env.NODE_ENV !== "production") {
|
|
36
|
+
RightPanelOpenFilled.propTypes = iconPropTypes;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export { RightPanelOpenFilled as default };
|
|
@@ -118,6 +118,10 @@ declare const _Review: CarbonIconType;
|
|
|
118
118
|
declare const _Rewind_10: CarbonIconType;
|
|
119
119
|
declare const _Rewind_30: CarbonIconType;
|
|
120
120
|
declare const _Rewind_5: CarbonIconType;
|
|
121
|
+
declare const _RightPanelClose: CarbonIconType;
|
|
122
|
+
declare const _RightPanelCloseFilled: CarbonIconType;
|
|
123
|
+
declare const _RightPanelOpen: CarbonIconType;
|
|
124
|
+
declare const _RightPanelOpenFilled: CarbonIconType;
|
|
121
125
|
declare const _Road: CarbonIconType;
|
|
122
126
|
declare const _RoadWeather: CarbonIconType;
|
|
123
127
|
declare const _Roadmap: CarbonIconType;
|
|
@@ -128,8 +132,4 @@ declare const _WatsonHealthRotate_360: CarbonIconType;
|
|
|
128
132
|
declare const _RotateClockwise: CarbonIconType;
|
|
129
133
|
declare const _RotateClockwiseAlt: CarbonIconType;
|
|
130
134
|
declare const _RotateClockwiseAltFilled: CarbonIconType;
|
|
131
|
-
|
|
132
|
-
declare const _RotateCounterclockwise: CarbonIconType;
|
|
133
|
-
declare const _RotateCounterclockwiseAlt: CarbonIconType;
|
|
134
|
-
declare const _RotateCounterclockwiseAltFilled: CarbonIconType;
|
|
135
|
-
export { _Pills as Pills, _PillsAdd as PillsAdd, _PillsSubtract as PillsSubtract, _Pin as Pin, _PinFilled as PinFilled, _Plan as Plan, _Plane as Plane, _PlanePrivate as PlanePrivate, _PlaneSea as PlaneSea, _Platforms as Platforms, _Play as Play, _PlayFilled as PlayFilled, _PlayFilledAlt as PlayFilledAlt, _PlayOutline as PlayOutline, _PlayOutlineFilled as PlayOutlineFilled, _Playlist as Playlist, _Plug as Plug, _PlugFilled as PlugFilled, _Png as Png, _PointOfPresence as PointOfPresence, _WatsonHealthPointerText as WatsonHealthPointerText, _Police as Police, _Policy as Policy, _Popup as Popup, _PortInput as PortInput, _PortOutput as PortOutput, _Portfolio as Portfolio, _Power as Power, _Ppt as Ppt, _PresentationFile as PresentationFile, _Pressure as Pressure, _PressureFilled as PressureFilled, _PreviousFilled as PreviousFilled, _PreviousOutline as PreviousOutline, _Printer as Printer, _Process as Process, _ProcessAutomate as ProcessAutomate, _Product as Product, _ProgressBar as ProgressBar, _ProgressBarRound as ProgressBarRound, _Promote as Promote, _PromptSession as PromptSession, _PromptTemplate as PromptTemplate, _PropertyRelationship as PropertyRelationship, _Purchase as Purchase, _WatsonHealthQcLaunch as WatsonHealthQcLaunch, _QqPlot as QqPlot, _QrCode as QrCode, _QuadrantPlot as QuadrantPlot, _Query as Query, _QueryQueue as QueryQueue, _Queued as Queued, _Quotes as Quotes, _Radar as Radar, _RadarEnhanced as RadarEnhanced, _RadarWeather as RadarWeather, _Radio as Radio, _RadioCombat as RadioCombat, _RadioPushToTalk as RadioPushToTalk, _RadioButton as RadioButton, _RadioButtonChecked as RadioButtonChecked, _Rain as Rain, _RainDrizzle as RainDrizzle, _RainHeavy as RainHeavy, _RainScattered as RainScattered, _RainScatteredNight as RainScatteredNight, _RainDrop as RainDrop, _Raw as Raw, _Receipt as Receipt, _RecentlyViewed as RecentlyViewed, _Recommend as Recommend, _Recording as Recording, _RecordingFilled as RecordingFilled, _RecordingFilledAlt as RecordingFilledAlt, _Recycle as Recycle, _Redo as Redo, _RefEvapotranspiration as RefEvapotranspiration, _ReferenceArchitecture as ReferenceArchitecture, _ReflectHorizontal as ReflectHorizontal, _ReflectVertical as ReflectVertical, _WatsonHealthRegionAnalysisArea as WatsonHealthRegionAnalysisArea, _WatsonHealthRegionAnalysisVolume as WatsonHealthRegionAnalysisVolume, _WatsonHealthRegistration as WatsonHealthRegistration, _Reminder as Reminder, _ReminderMedical as ReminderMedical, _Renew as Renew, _Repeat as Repeat, _RepeatOne as RepeatOne, _Replicate as Replicate, _Reply as Reply, _ReplyAll as ReplyAll, _RepoArtifact as RepoArtifact, _RepoSourceCode as RepoSourceCode, _Report as Report, _ReportData as ReportData, _RequestQuote as RequestQuote, _Reset as Reset, _ResetAlt as ResetAlt, _Restart as Restart, _Restaurant as Restaurant, _RestaurantFine as RestaurantFine, _Result as Result, _ResultDraft as ResultDraft, _ResultNew as ResultNew, _ResultOld as ResultOld, _RetryFailed as RetryFailed, _Return as Return, _Review as Review, _Rewind_10 as Rewind_10, _Rewind_30 as Rewind_30, _Rewind_5 as Rewind_5, _Road as Road, _RoadWeather as RoadWeather, _Roadmap as Roadmap, _Rocket as Rocket, _Rotate as Rotate, _WatsonHealthRotate_180 as WatsonHealthRotate_180, _WatsonHealthRotate_360 as WatsonHealthRotate_360, _RotateClockwise as RotateClockwise, _RotateClockwiseAlt as RotateClockwiseAlt, _RotateClockwiseAltFilled as RotateClockwiseAltFilled, _RotateClockwiseFilled as RotateClockwiseFilled, _RotateCounterclockwise as RotateCounterclockwise, _RotateCounterclockwiseAlt as RotateCounterclockwiseAlt, _RotateCounterclockwiseAltFilled as RotateCounterclockwiseAltFilled };
|
|
135
|
+
export { _Pills as Pills, _PillsAdd as PillsAdd, _PillsSubtract as PillsSubtract, _Pin as Pin, _PinFilled as PinFilled, _Plan as Plan, _Plane as Plane, _PlanePrivate as PlanePrivate, _PlaneSea as PlaneSea, _Platforms as Platforms, _Play as Play, _PlayFilled as PlayFilled, _PlayFilledAlt as PlayFilledAlt, _PlayOutline as PlayOutline, _PlayOutlineFilled as PlayOutlineFilled, _Playlist as Playlist, _Plug as Plug, _PlugFilled as PlugFilled, _Png as Png, _PointOfPresence as PointOfPresence, _WatsonHealthPointerText as WatsonHealthPointerText, _Police as Police, _Policy as Policy, _Popup as Popup, _PortInput as PortInput, _PortOutput as PortOutput, _Portfolio as Portfolio, _Power as Power, _Ppt as Ppt, _PresentationFile as PresentationFile, _Pressure as Pressure, _PressureFilled as PressureFilled, _PreviousFilled as PreviousFilled, _PreviousOutline as PreviousOutline, _Printer as Printer, _Process as Process, _ProcessAutomate as ProcessAutomate, _Product as Product, _ProgressBar as ProgressBar, _ProgressBarRound as ProgressBarRound, _Promote as Promote, _PromptSession as PromptSession, _PromptTemplate as PromptTemplate, _PropertyRelationship as PropertyRelationship, _Purchase as Purchase, _WatsonHealthQcLaunch as WatsonHealthQcLaunch, _QqPlot as QqPlot, _QrCode as QrCode, _QuadrantPlot as QuadrantPlot, _Query as Query, _QueryQueue as QueryQueue, _Queued as Queued, _Quotes as Quotes, _Radar as Radar, _RadarEnhanced as RadarEnhanced, _RadarWeather as RadarWeather, _Radio as Radio, _RadioCombat as RadioCombat, _RadioPushToTalk as RadioPushToTalk, _RadioButton as RadioButton, _RadioButtonChecked as RadioButtonChecked, _Rain as Rain, _RainDrizzle as RainDrizzle, _RainHeavy as RainHeavy, _RainScattered as RainScattered, _RainScatteredNight as RainScatteredNight, _RainDrop as RainDrop, _Raw as Raw, _Receipt as Receipt, _RecentlyViewed as RecentlyViewed, _Recommend as Recommend, _Recording as Recording, _RecordingFilled as RecordingFilled, _RecordingFilledAlt as RecordingFilledAlt, _Recycle as Recycle, _Redo as Redo, _RefEvapotranspiration as RefEvapotranspiration, _ReferenceArchitecture as ReferenceArchitecture, _ReflectHorizontal as ReflectHorizontal, _ReflectVertical as ReflectVertical, _WatsonHealthRegionAnalysisArea as WatsonHealthRegionAnalysisArea, _WatsonHealthRegionAnalysisVolume as WatsonHealthRegionAnalysisVolume, _WatsonHealthRegistration as WatsonHealthRegistration, _Reminder as Reminder, _ReminderMedical as ReminderMedical, _Renew as Renew, _Repeat as Repeat, _RepeatOne as RepeatOne, _Replicate as Replicate, _Reply as Reply, _ReplyAll as ReplyAll, _RepoArtifact as RepoArtifact, _RepoSourceCode as RepoSourceCode, _Report as Report, _ReportData as ReportData, _RequestQuote as RequestQuote, _Reset as Reset, _ResetAlt as ResetAlt, _Restart as Restart, _Restaurant as Restaurant, _RestaurantFine as RestaurantFine, _Result as Result, _ResultDraft as ResultDraft, _ResultNew as ResultNew, _ResultOld as ResultOld, _RetryFailed as RetryFailed, _Return as Return, _Review as Review, _Rewind_10 as Rewind_10, _Rewind_30 as Rewind_30, _Rewind_5 as Rewind_5, _RightPanelClose as RightPanelClose, _RightPanelCloseFilled as RightPanelCloseFilled, _RightPanelOpen as RightPanelOpen, _RightPanelOpenFilled as RightPanelOpenFilled, _Road as Road, _RoadWeather as RoadWeather, _Roadmap as Roadmap, _Rocket as Rocket, _Rotate as Rotate, _WatsonHealthRotate_180 as WatsonHealthRotate_180, _WatsonHealthRotate_360 as WatsonHealthRotate_360, _RotateClockwise as RotateClockwise, _RotateClockwiseAlt as RotateClockwiseAlt, _RotateClockwiseAltFilled as RotateClockwiseAltFilled };
|
|
@@ -2708,7 +2708,7 @@ const Rewind_5 = /*#__PURE__*/React.forwardRef(function Rewind_5(_ref111, ref) {
|
|
|
2708
2708
|
if (process.env.NODE_ENV !== "production") {
|
|
2709
2709
|
Rewind_5.propTypes = iconPropTypes;
|
|
2710
2710
|
}
|
|
2711
|
-
const
|
|
2711
|
+
const RightPanelClose = /*#__PURE__*/React.forwardRef(function RightPanelClose(_ref112, ref) {
|
|
2712
2712
|
let {
|
|
2713
2713
|
children,
|
|
2714
2714
|
size = 16,
|
|
@@ -2723,17 +2723,14 @@ const Road = /*#__PURE__*/React.forwardRef(function Road(_ref112, ref) {
|
|
|
2723
2723
|
fill: "currentColor",
|
|
2724
2724
|
...rest
|
|
2725
2725
|
}, _path207 || (_path207 = /*#__PURE__*/React.createElement("path", {
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
d: "M25.4409 8L24.1687 3.45A2.009 2.009 0 0022.2456 2H9.7544A2.0089 2.0089 0 007.8313 3.4507L6.5315 8H4v2H6v7a2.0025 2.0025 0 002 2v3h2V19H22v3h2V19a2.0025 2.0025 0 002-2V10h2V8zM9.7544 4H22.2458l1.4285 5H8.3257zM24 13H22v2h2v2H8V15h2V13H8V11H24zM2 16H4V30H2zM28 16H30V30H28z"
|
|
2729
|
-
})), _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
|
|
2730
|
-
d: "M15 21H17V24H15zM15 26H17V30H15z"
|
|
2726
|
+
strokeWidth: "0",
|
|
2727
|
+
d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm20,0h6v20h-6V6Zm-18,0h16v20H4v-9h10.1699s-3.5801,3.5898-3.5801,3.5898l1.4102,1.4102,6-6-6-6-1.4102,1.4102,3.5801,3.5898H4V6Z"
|
|
2731
2728
|
})), children);
|
|
2732
2729
|
});
|
|
2733
2730
|
if (process.env.NODE_ENV !== "production") {
|
|
2734
|
-
|
|
2731
|
+
RightPanelClose.propTypes = iconPropTypes;
|
|
2735
2732
|
}
|
|
2736
|
-
const
|
|
2733
|
+
const RightPanelCloseFilled = /*#__PURE__*/React.forwardRef(function RightPanelCloseFilled(_ref113, ref) {
|
|
2737
2734
|
let {
|
|
2738
2735
|
children,
|
|
2739
2736
|
size = 16,
|
|
@@ -2747,16 +2744,15 @@ const RoadWeather = /*#__PURE__*/React.forwardRef(function RoadWeather(_ref113,
|
|
|
2747
2744
|
viewBox: "0 0 32 32",
|
|
2748
2745
|
fill: "currentColor",
|
|
2749
2746
|
...rest
|
|
2750
|
-
},
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
d: "M23.4409,8,22.1687,3.45A2.009,2.009,0,0,0,20.2456,2H7.7544A2.0089,2.0089,0,0,0,5.8313,3.4507L4.5315,8H2v2H4v7a2.0025,2.0025,0,0,0,2,2v2H8V19H20v2h2V19a2.0025,2.0025,0,0,0,2-2V10h2V8ZM7.7544,4H20.2458l1.4285,5H6.3257ZM22,13H20v2h2v2H6V15H8V13H6V11H22Z"
|
|
2747
|
+
}, _path208 || (_path208 = /*#__PURE__*/React.createElement("path", {
|
|
2748
|
+
strokeWidth: "0",
|
|
2749
|
+
d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm2,0h16v20H4v-9h10.1699s-3.5801,3.5898-3.5801,3.5898l1.4102,1.4102,6-6-6-6-1.4102,1.4102,3.5801,3.5898H4V6Z"
|
|
2754
2750
|
})), children);
|
|
2755
2751
|
});
|
|
2756
2752
|
if (process.env.NODE_ENV !== "production") {
|
|
2757
|
-
|
|
2753
|
+
RightPanelCloseFilled.propTypes = iconPropTypes;
|
|
2758
2754
|
}
|
|
2759
|
-
const
|
|
2755
|
+
const RightPanelOpen = /*#__PURE__*/React.forwardRef(function RightPanelOpen(_ref114, ref) {
|
|
2760
2756
|
let {
|
|
2761
2757
|
children,
|
|
2762
2758
|
size = 16,
|
|
@@ -2770,14 +2766,15 @@ const Roadmap = /*#__PURE__*/React.forwardRef(function Roadmap(_ref114, ref) {
|
|
|
2770
2766
|
viewBox: "0 0 32 32",
|
|
2771
2767
|
fill: "currentColor",
|
|
2772
2768
|
...rest
|
|
2773
|
-
},
|
|
2774
|
-
|
|
2769
|
+
}, _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
|
|
2770
|
+
strokeWidth: "0",
|
|
2771
|
+
d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm20,0h6v20h-6V6Zm-18,0h16v9h-10.1699s3.5798-3.5898,3.5798-3.5898l-1.4099-1.4102-6,6,6,6,1.4099-1.4102-3.5798-3.5898h10.1699v9H4V6Z"
|
|
2775
2772
|
})), children);
|
|
2776
2773
|
});
|
|
2777
2774
|
if (process.env.NODE_ENV !== "production") {
|
|
2778
|
-
|
|
2775
|
+
RightPanelOpen.propTypes = iconPropTypes;
|
|
2779
2776
|
}
|
|
2780
|
-
const
|
|
2777
|
+
const RightPanelOpenFilled = /*#__PURE__*/React.forwardRef(function RightPanelOpenFilled(_ref115, ref) {
|
|
2781
2778
|
let {
|
|
2782
2779
|
children,
|
|
2783
2780
|
size = 16,
|
|
@@ -2791,17 +2788,15 @@ const Rocket = /*#__PURE__*/React.forwardRef(function Rocket(_ref115, ref) {
|
|
|
2791
2788
|
viewBox: "0 0 32 32",
|
|
2792
2789
|
fill: "currentColor",
|
|
2793
2790
|
...rest
|
|
2794
|
-
},
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
})), _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
|
|
2798
|
-
d: "M17,30a1,1,0,0,1-.37-.07,1,1,0,0,1-.62-.79l-1-7,2-.28.75,5.27L21,24.52V17a1,1,0,0,1,.29-.71l4.07-4.07A8.94,8.94,0,0,0,28,5.86V4H26.14a8.94,8.94,0,0,0-6.36,2.64l-4.07,4.07A1,1,0,0,1,15,11H7.48L4.87,14.26l5.27.75-.28,2-7-1a1,1,0,0,1-.79-.62,1,1,0,0,1,.15-1l4-5A1,1,0,0,1,7,9h7.59l3.77-3.78A10.92,10.92,0,0,1,26.14,2H28a2,2,0,0,1,2,2V5.86a10.92,10.92,0,0,1-3.22,7.78L23,17.41V25a1,1,0,0,1-.38.78l-5,4A1,1,0,0,1,17,30Z"
|
|
2791
|
+
}, _path210 || (_path210 = /*#__PURE__*/React.createElement("path", {
|
|
2792
|
+
strokeWidth: "0",
|
|
2793
|
+
d: "m2,6v20c0,1.1045.8955,2,2,2h24c1.1045,0,2-.8955,2-2V6c0-1.1045-.8955-2-2-2H4c-1.1045,0-2,.8955-2,2Zm2,0h16v9h-10.1699s3.5798-3.5898,3.5798-3.5898l-1.4099-1.4102-6,6,6,6,1.4099-1.4102-3.5798-3.5898h10.1699v9H4V6Z"
|
|
2799
2794
|
})), children);
|
|
2800
2795
|
});
|
|
2801
2796
|
if (process.env.NODE_ENV !== "production") {
|
|
2802
|
-
|
|
2797
|
+
RightPanelOpenFilled.propTypes = iconPropTypes;
|
|
2803
2798
|
}
|
|
2804
|
-
const
|
|
2799
|
+
const Road = /*#__PURE__*/React.forwardRef(function Road(_ref116, ref) {
|
|
2805
2800
|
let {
|
|
2806
2801
|
children,
|
|
2807
2802
|
size = 16,
|
|
@@ -2815,14 +2810,18 @@ const Rotate = /*#__PURE__*/React.forwardRef(function Rotate(_ref116, ref) {
|
|
|
2815
2810
|
viewBox: "0 0 32 32",
|
|
2816
2811
|
fill: "currentColor",
|
|
2817
2812
|
...rest
|
|
2818
|
-
},
|
|
2819
|
-
d: "
|
|
2813
|
+
}, _path211 || (_path211 = /*#__PURE__*/React.createElement("path", {
|
|
2814
|
+
d: "M13 13H19V15H13z"
|
|
2815
|
+
})), _path212 || (_path212 = /*#__PURE__*/React.createElement("path", {
|
|
2816
|
+
d: "M25.4409 8L24.1687 3.45A2.009 2.009 0 0022.2456 2H9.7544A2.0089 2.0089 0 007.8313 3.4507L6.5315 8H4v2H6v7a2.0025 2.0025 0 002 2v3h2V19H22v3h2V19a2.0025 2.0025 0 002-2V10h2V8zM9.7544 4H22.2458l1.4285 5H8.3257zM24 13H22v2h2v2H8V15h2V13H8V11H24zM2 16H4V30H2zM28 16H30V30H28z"
|
|
2817
|
+
})), _path213 || (_path213 = /*#__PURE__*/React.createElement("path", {
|
|
2818
|
+
d: "M15 21H17V24H15zM15 26H17V30H15z"
|
|
2820
2819
|
})), children);
|
|
2821
2820
|
});
|
|
2822
2821
|
if (process.env.NODE_ENV !== "production") {
|
|
2823
|
-
|
|
2822
|
+
Road.propTypes = iconPropTypes;
|
|
2824
2823
|
}
|
|
2825
|
-
const
|
|
2824
|
+
const RoadWeather = /*#__PURE__*/React.forwardRef(function RoadWeather(_ref117, ref) {
|
|
2826
2825
|
let {
|
|
2827
2826
|
children,
|
|
2828
2827
|
size = 16,
|
|
@@ -2836,14 +2835,16 @@ const WatsonHealthRotate_180 = /*#__PURE__*/React.forwardRef(function WatsonHeal
|
|
|
2836
2835
|
viewBox: "0 0 32 32",
|
|
2837
2836
|
fill: "currentColor",
|
|
2838
2837
|
...rest
|
|
2839
|
-
},
|
|
2840
|
-
d: "
|
|
2838
|
+
}, _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
|
|
2839
|
+
d: "M16 31H14v-.228a3.0135 3.0135 0 00-1.9468-2.8091L8.5215 26.6384A3.9034 3.9034 0 016 23H8a1.8946 1.8946 0 001.2236 1.7659L12.7554 26.09A5.0226 5.0226 0 0116 30.772zM30 31H28v-.228a3.0135 3.0135 0 00-1.9468-2.8091l-3.5317-1.3245A3.9034 3.9034 0 0120 23h2a1.8946 1.8946 0 001.2236 1.7659L26.7554 26.09A5.0226 5.0226 0 0130 30.772zM11 13H17V15H11z"
|
|
2840
|
+
})), _path215 || (_path215 = /*#__PURE__*/React.createElement("path", {
|
|
2841
|
+
d: "M23.4409,8,22.1687,3.45A2.009,2.009,0,0,0,20.2456,2H7.7544A2.0089,2.0089,0,0,0,5.8313,3.4507L4.5315,8H2v2H4v7a2.0025,2.0025,0,0,0,2,2v2H8V19H20v2h2V19a2.0025,2.0025,0,0,0,2-2V10h2V8ZM7.7544,4H20.2458l1.4285,5H6.3257ZM22,13H20v2h2v2H6V15H8V13H6V11H22Z"
|
|
2841
2842
|
})), children);
|
|
2842
2843
|
});
|
|
2843
2844
|
if (process.env.NODE_ENV !== "production") {
|
|
2844
|
-
|
|
2845
|
+
RoadWeather.propTypes = iconPropTypes;
|
|
2845
2846
|
}
|
|
2846
|
-
const
|
|
2847
|
+
const Roadmap = /*#__PURE__*/React.forwardRef(function Roadmap(_ref118, ref) {
|
|
2847
2848
|
let {
|
|
2848
2849
|
children,
|
|
2849
2850
|
size = 16,
|
|
@@ -2857,14 +2858,14 @@ const WatsonHealthRotate_360 = /*#__PURE__*/React.forwardRef(function WatsonHeal
|
|
|
2857
2858
|
viewBox: "0 0 32 32",
|
|
2858
2859
|
fill: "currentColor",
|
|
2859
2860
|
...rest
|
|
2860
|
-
},
|
|
2861
|
-
d: "
|
|
2861
|
+
}, _path216 || (_path216 = /*#__PURE__*/React.createElement("path", {
|
|
2862
|
+
d: "M12 30H4a2.0023 2.0023 0 01-2-2V24a2.0023 2.0023 0 012-2h8a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0112 30zM4 24v4h8V24zM28 20H12a2.0023 2.0023 0 01-2-2V14a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2v4A2.0023 2.0023 0 0128 20zM12 14v4H28V14zM16 10H4A2.0023 2.0023 0 012 8V4A2.0023 2.0023 0 014 2H16a2.0023 2.0023 0 012 2V8A2.0023 2.0023 0 0116 10zM4 4V8H16V4z"
|
|
2862
2863
|
})), children);
|
|
2863
2864
|
});
|
|
2864
2865
|
if (process.env.NODE_ENV !== "production") {
|
|
2865
|
-
|
|
2866
|
+
Roadmap.propTypes = iconPropTypes;
|
|
2866
2867
|
}
|
|
2867
|
-
const
|
|
2868
|
+
const Rocket = /*#__PURE__*/React.forwardRef(function Rocket(_ref119, ref) {
|
|
2868
2869
|
let {
|
|
2869
2870
|
children,
|
|
2870
2871
|
size = 16,
|
|
@@ -2878,14 +2879,17 @@ const RotateClockwise = /*#__PURE__*/React.forwardRef(function RotateClockwise(_
|
|
|
2878
2879
|
viewBox: "0 0 32 32",
|
|
2879
2880
|
fill: "currentColor",
|
|
2880
2881
|
...rest
|
|
2881
|
-
},
|
|
2882
|
-
d: "
|
|
2882
|
+
}, _path217 || (_path217 = /*#__PURE__*/React.createElement("path", {
|
|
2883
|
+
d: "M6.34 19H17.65V21H6.34z",
|
|
2884
|
+
transform: "rotate(-45 11.995 20.002)"
|
|
2885
|
+
})), _path218 || (_path218 = /*#__PURE__*/React.createElement("path", {
|
|
2886
|
+
d: "M17,30a1,1,0,0,1-.37-.07,1,1,0,0,1-.62-.79l-1-7,2-.28.75,5.27L21,24.52V17a1,1,0,0,1,.29-.71l4.07-4.07A8.94,8.94,0,0,0,28,5.86V4H26.14a8.94,8.94,0,0,0-6.36,2.64l-4.07,4.07A1,1,0,0,1,15,11H7.48L4.87,14.26l5.27.75-.28,2-7-1a1,1,0,0,1-.79-.62,1,1,0,0,1,.15-1l4-5A1,1,0,0,1,7,9h7.59l3.77-3.78A10.92,10.92,0,0,1,26.14,2H28a2,2,0,0,1,2,2V5.86a10.92,10.92,0,0,1-3.22,7.78L23,17.41V25a1,1,0,0,1-.38.78l-5,4A1,1,0,0,1,17,30Z"
|
|
2883
2887
|
})), children);
|
|
2884
2888
|
});
|
|
2885
2889
|
if (process.env.NODE_ENV !== "production") {
|
|
2886
|
-
|
|
2890
|
+
Rocket.propTypes = iconPropTypes;
|
|
2887
2891
|
}
|
|
2888
|
-
const
|
|
2892
|
+
const Rotate = /*#__PURE__*/React.forwardRef(function Rotate(_ref120, ref) {
|
|
2889
2893
|
let {
|
|
2890
2894
|
children,
|
|
2891
2895
|
size = 16,
|
|
@@ -2900,13 +2904,13 @@ const RotateClockwiseAlt = /*#__PURE__*/React.forwardRef(function RotateClockwis
|
|
|
2900
2904
|
fill: "currentColor",
|
|
2901
2905
|
...rest
|
|
2902
2906
|
}, _path219 || (_path219 = /*#__PURE__*/React.createElement("path", {
|
|
2903
|
-
d: "
|
|
2907
|
+
d: "M17.91 26.82l.35 2a12.9 12.9 0 004.24-1.54l-1-1.73A10.88 10.88 0 0117.91 26.82zM24.42 23.07L26 24.35a13 13 0 002.24-3.91l-1.87-.68A11 11 0 0124.42 23.07zM9.5 27.25a12.9 12.9 0 004.24 1.54l.35-2a10.88 10.88 0 01-3.59-1.3zM5.67 19.76l-1.87.68A13 13 0 006 24.35l.32-.26 1.22-1h0a11 11 0 01-1.91-3.31zM29 16a12.85 12.85 0 00-.8-4.44l-1.87.68A11.18 11.18 0 0127 16zM26 7.65a13 13 0 00-20 0V4H4v8h8V10H6.81A11 11 0 0124.42 8.93z"
|
|
2904
2908
|
})), children);
|
|
2905
2909
|
});
|
|
2906
2910
|
if (process.env.NODE_ENV !== "production") {
|
|
2907
|
-
|
|
2911
|
+
Rotate.propTypes = iconPropTypes;
|
|
2908
2912
|
}
|
|
2909
|
-
const
|
|
2913
|
+
const WatsonHealthRotate_180 = /*#__PURE__*/React.forwardRef(function WatsonHealthRotate_180(_ref121, ref) {
|
|
2910
2914
|
let {
|
|
2911
2915
|
children,
|
|
2912
2916
|
size = 16,
|
|
@@ -2921,13 +2925,13 @@ const RotateClockwiseAltFilled = /*#__PURE__*/React.forwardRef(function RotateCl
|
|
|
2921
2925
|
fill: "currentColor",
|
|
2922
2926
|
...rest
|
|
2923
2927
|
}, _path220 || (_path220 = /*#__PURE__*/React.createElement("path", {
|
|
2924
|
-
d: "
|
|
2928
|
+
d: "M14.0913 26.8235l-.3467 1.968a12.8956 12.8956 0 01-4.24-1.5418l1-1.7307A10.9086 10.9086 0 0014.0913 26.8235zM7.5767 23.0682L6.0449 24.3533a12.9811 12.9811 0 01-2.25-3.9112l1.8775-.6834A10.9808 10.9808 0 007.5767 23.0682zM22.4951 27.25a12.8956 12.8956 0 01-4.24 1.5418l-.3467-1.968a10.9086 10.9086 0 003.5869-1.3045zM26.3271 19.7587l1.8775.6834a12.9811 12.9811 0 01-2.2495 3.9112l-.3115-.2614-1.22-1.0237h0a10.9822 10.9822 0 001.9038-3.3093zM13.6616 5.2559c-.1592.0346-.3144.08-.4712.1215-.2131.0562-.4258.1138-.6335.1822-.1643.0547-.325.1167-.4859.1782-.1926.0742-.3835.1509-.57.2349-.1611.0727-.3193.15-.4763.23q-.2677.1363-.5262.2867c-.153.0893-.3046.18-.4531.2758-.1679.1089-.3308.2242-.4922.3413-.1406.1026-.2817.2037-.417.3125-.1616.1294-.3156.2676-.47.4063-.1225.11-.2478.2168-.3652.332-.1668.1636-.3223.3379-.4785.5117A10.9438 10.9438 0 005 16H3A12.9363 12.9363 0 016.05 7.65l-.0047-.0039c.0918-.1094.197-.2061.2925-.3125.1841-.2051.3672-.41.5635-.603.1382-.1358.2856-.2613.43-.3907.1831-.1645.3657-.3286.5581-.4824.1592-.1279.3244-.2466.4895-.3667.1921-.14.3855-.2768.5854-.4062.1743-.1128.3523-.2188.5322-.3238q.3081-.1786.6253-.3408c.1846-.0942.37-.1846.56-.27.2224-.1.449-.1914.678-.2793.1894-.0723.3777-.1455.5713-.209.2463-.0815.498-.1494.7507-.2163.1848-.0493.3674-.1025.5554-.1431.29-.0634.5865-.1074.8833-.1508.159-.023.3145-.0552.4754-.0728A12.9331 12.9331 0 0126 7.7031V4h2v8H20V10h5.1885A10.961 10.961 0 0016 5a11.1114 11.1114 0 00-1.189.0669c-.1362.0146-.268.042-.4026.0615C14.1575 5.165 13.907 5.2026 13.6616 5.2559z"
|
|
2925
2929
|
})), children);
|
|
2926
2930
|
});
|
|
2927
2931
|
if (process.env.NODE_ENV !== "production") {
|
|
2928
|
-
|
|
2932
|
+
WatsonHealthRotate_180.propTypes = iconPropTypes;
|
|
2929
2933
|
}
|
|
2930
|
-
const
|
|
2934
|
+
const WatsonHealthRotate_360 = /*#__PURE__*/React.forwardRef(function WatsonHealthRotate_360(_ref122, ref) {
|
|
2931
2935
|
let {
|
|
2932
2936
|
children,
|
|
2933
2937
|
size = 16,
|
|
@@ -2942,13 +2946,13 @@ const RotateClockwiseFilled = /*#__PURE__*/React.forwardRef(function RotateClock
|
|
|
2942
2946
|
fill: "currentColor",
|
|
2943
2947
|
...rest
|
|
2944
2948
|
}, _path221 || (_path221 = /*#__PURE__*/React.createElement("path", {
|
|
2945
|
-
d: "
|
|
2949
|
+
d: "M25.95,7.65l.0047-.0039c-.0918-.1094-.197-.2061-.2925-.3125-.1841-.2051-.3672-.41-.5635-.603-.1382-.1358-.2856-.2613-.43-.3907-.1831-.1645-.3657-.3286-.5581-.4824-.1592-.1279-.3244-.2466-.4895-.3667-.1921-.14-.3855-.2768-.5854-.4062-.1743-.1128-.3523-.2188-.5322-.3238q-.3081-.1786-.6253-.3408c-.1846-.0942-.37-.1846-.56-.27-.2224-.1-.449-.1914-.678-.2793-.1894-.0723-.3777-.1455-.5713-.209-.2463-.0815-.498-.1494-.7507-.2163-.1848-.0493-.3674-.1025-.5554-.1431-.29-.0634-.5865-.1074-.8833-.1508-.159-.023-.3145-.0552-.4754-.0728A12.9331,12.9331,0,0,0,6,7.7031V4H4v8h8V10H6.8115A10.961,10.961,0,0,1,16,5a11.1114,11.1114,0,0,1,1.189.0669c.1362.0146.268.042.4026.0615.2509.0366.5014.0742.7468.1275.1592.0346.3144.08.4712.1215.2131.0562.4258.1138.6335.1822.1643.0547.325.1167.4859.1782.1926.0742.3835.1509.5705.2349.1611.0727.3193.15.4763.23q.2677.1363.5262.2867c.153.0893.3046.18.4531.2758.1679.1089.3308.2242.4922.3413.1406.1026.2817.2037.417.3125.1616.1294.3156.2676.47.4063.1225.11.2478.2168.3652.332.1668.1636.3223.3379.4785.5117A10.9928,10.9928,0,1,1,5,16H3A13,13,0,1,0,25.95,7.65Z"
|
|
2946
2950
|
})), children);
|
|
2947
2951
|
});
|
|
2948
2952
|
if (process.env.NODE_ENV !== "production") {
|
|
2949
|
-
|
|
2953
|
+
WatsonHealthRotate_360.propTypes = iconPropTypes;
|
|
2950
2954
|
}
|
|
2951
|
-
const
|
|
2955
|
+
const RotateClockwise = /*#__PURE__*/React.forwardRef(function RotateClockwise(_ref123, ref) {
|
|
2952
2956
|
let {
|
|
2953
2957
|
children,
|
|
2954
2958
|
size = 16,
|
|
@@ -2963,13 +2967,13 @@ const RotateCounterclockwise = /*#__PURE__*/React.forwardRef(function RotateCoun
|
|
|
2963
2967
|
fill: "currentColor",
|
|
2964
2968
|
...rest
|
|
2965
2969
|
}, _path222 || (_path222 = /*#__PURE__*/React.createElement("path", {
|
|
2966
|
-
d: "
|
|
2970
|
+
d: "M28 30H16a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H28a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0128 30zM16 16V28H28.0012L28 16zM15 2L13.59 3.41 16.17 6H11a7.0078 7.0078 0 00-7 7v5H6V13a5.0057 5.0057 0 015-5h5.17l-2.58 2.59L15 12l5-5z"
|
|
2967
2971
|
})), children);
|
|
2968
2972
|
});
|
|
2969
2973
|
if (process.env.NODE_ENV !== "production") {
|
|
2970
|
-
|
|
2974
|
+
RotateClockwise.propTypes = iconPropTypes;
|
|
2971
2975
|
}
|
|
2972
|
-
const
|
|
2976
|
+
const RotateClockwiseAlt = /*#__PURE__*/React.forwardRef(function RotateClockwiseAlt(_ref124, ref) {
|
|
2973
2977
|
let {
|
|
2974
2978
|
children,
|
|
2975
2979
|
size = 16,
|
|
@@ -2984,13 +2988,13 @@ const RotateCounterclockwiseAlt = /*#__PURE__*/React.forwardRef(function RotateC
|
|
|
2984
2988
|
fill: "currentColor",
|
|
2985
2989
|
...rest
|
|
2986
2990
|
}, _path223 || (_path223 = /*#__PURE__*/React.createElement("path", {
|
|
2987
|
-
d: "
|
|
2991
|
+
d: "M16 30H4a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0116 30zM4 16V28H16.0012L16 16zM30 15l-1.41-1.41L26 16.17V11a7.0078 7.0078 0 00-7-7H14V6h5a5.0057 5.0057 0 015 5v5.17l-2.59-2.58L20 15l5 5z"
|
|
2988
2992
|
})), children);
|
|
2989
2993
|
});
|
|
2990
2994
|
if (process.env.NODE_ENV !== "production") {
|
|
2991
|
-
|
|
2995
|
+
RotateClockwiseAlt.propTypes = iconPropTypes;
|
|
2992
2996
|
}
|
|
2993
|
-
const
|
|
2997
|
+
const RotateClockwiseAltFilled = /*#__PURE__*/React.forwardRef(function RotateClockwiseAltFilled(_ref125, ref) {
|
|
2994
2998
|
let {
|
|
2995
2999
|
children,
|
|
2996
3000
|
size = 16,
|
|
@@ -3005,11 +3009,11 @@ const RotateCounterclockwiseAltFilled = /*#__PURE__*/React.forwardRef(function R
|
|
|
3005
3009
|
fill: "currentColor",
|
|
3006
3010
|
...rest
|
|
3007
3011
|
}, _path224 || (_path224 = /*#__PURE__*/React.createElement("path", {
|
|
3008
|
-
d: "
|
|
3012
|
+
d: "M16 30H4a2.0023 2.0023 0 01-2-2V16a2.0023 2.0023 0 012-2H16a2.0023 2.0023 0 012 2V28A2.0023 2.0023 0 0116 30zM30 15l-1.41-1.41L26 16.17V11a7.0078 7.0078 0 00-7-7H14V6h5a5.0057 5.0057 0 015 5v5.17l-2.59-2.58L20 15l5 5z"
|
|
3009
3013
|
})), children);
|
|
3010
3014
|
});
|
|
3011
3015
|
if (process.env.NODE_ENV !== "production") {
|
|
3012
|
-
|
|
3016
|
+
RotateClockwiseAltFilled.propTypes = iconPropTypes;
|
|
3013
3017
|
}
|
|
3014
3018
|
|
|
3015
|
-
export { Pills, PillsAdd, PillsSubtract, Pin, PinFilled, Plan, Plane, PlanePrivate, PlaneSea, Platforms, Play, PlayFilled, PlayFilledAlt, PlayOutline, PlayOutlineFilled, Playlist, Plug, PlugFilled, Png, PointOfPresence, Police, Policy, Popup, PortInput, PortOutput, Portfolio, Power, Ppt, PresentationFile, Pressure, PressureFilled, PreviousFilled, PreviousOutline, Printer, Process, ProcessAutomate, Product, ProgressBar, ProgressBarRound, Promote, PromptSession, PromptTemplate, PropertyRelationship, Purchase, QqPlot, QrCode, QuadrantPlot, Query, QueryQueue, Queued, Quotes, Radar, RadarEnhanced, RadarWeather, Radio, RadioButton, RadioButtonChecked, RadioCombat, RadioPushToTalk, Rain, RainDrizzle, RainDrop, RainHeavy, RainScattered, RainScatteredNight, Raw, Receipt, RecentlyViewed, Recommend, Recording, RecordingFilled, RecordingFilledAlt, Recycle, Redo, RefEvapotranspiration, ReferenceArchitecture, ReflectHorizontal, ReflectVertical, Reminder, ReminderMedical, Renew, Repeat, RepeatOne, Replicate, Reply, ReplyAll, RepoArtifact, RepoSourceCode, Report, ReportData, RequestQuote, Reset, ResetAlt, Restart, Restaurant, RestaurantFine, Result, ResultDraft, ResultNew, ResultOld, RetryFailed, Return, Review, Rewind_10, Rewind_30, Rewind_5, Road, RoadWeather, Roadmap, Rocket, Rotate, RotateClockwise, RotateClockwiseAlt, RotateClockwiseAltFilled,
|
|
3019
|
+
export { Pills, PillsAdd, PillsSubtract, Pin, PinFilled, Plan, Plane, PlanePrivate, PlaneSea, Platforms, Play, PlayFilled, PlayFilledAlt, PlayOutline, PlayOutlineFilled, Playlist, Plug, PlugFilled, Png, PointOfPresence, Police, Policy, Popup, PortInput, PortOutput, Portfolio, Power, Ppt, PresentationFile, Pressure, PressureFilled, PreviousFilled, PreviousOutline, Printer, Process, ProcessAutomate, Product, ProgressBar, ProgressBarRound, Promote, PromptSession, PromptTemplate, PropertyRelationship, Purchase, QqPlot, QrCode, QuadrantPlot, Query, QueryQueue, Queued, Quotes, Radar, RadarEnhanced, RadarWeather, Radio, RadioButton, RadioButtonChecked, RadioCombat, RadioPushToTalk, Rain, RainDrizzle, RainDrop, RainHeavy, RainScattered, RainScatteredNight, Raw, Receipt, RecentlyViewed, Recommend, Recording, RecordingFilled, RecordingFilledAlt, Recycle, Redo, RefEvapotranspiration, ReferenceArchitecture, ReflectHorizontal, ReflectVertical, Reminder, ReminderMedical, Renew, Repeat, RepeatOne, Replicate, Reply, ReplyAll, RepoArtifact, RepoSourceCode, Report, ReportData, RequestQuote, Reset, ResetAlt, Restart, Restaurant, RestaurantFine, Result, ResultDraft, ResultNew, ResultOld, RetryFailed, Return, Review, Rewind_10, Rewind_30, Rewind_5, RightPanelClose, RightPanelCloseFilled, RightPanelOpen, RightPanelOpenFilled, Road, RoadWeather, Roadmap, Rocket, Rotate, RotateClockwise, RotateClockwiseAlt, RotateClockwiseAltFilled, WatsonHealthPointerText, WatsonHealthQcLaunch, WatsonHealthRegionAnalysisArea, WatsonHealthRegionAnalysisVolume, WatsonHealthRegistration, WatsonHealthRotate_180, WatsonHealthRotate_360 };
|
|
@@ -7,6 +7,10 @@
|
|
|
7
7
|
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
|
|
8
8
|
*/
|
|
9
9
|
import type { CarbonIconType } from '../CarbonIcon';
|
|
10
|
+
declare const _RotateClockwiseFilled: CarbonIconType;
|
|
11
|
+
declare const _RotateCounterclockwise: CarbonIconType;
|
|
12
|
+
declare const _RotateCounterclockwiseAlt: CarbonIconType;
|
|
13
|
+
declare const _RotateCounterclockwiseAltFilled: CarbonIconType;
|
|
10
14
|
declare const _RotateCounterclockwiseFilled: CarbonIconType;
|
|
11
15
|
declare const _Router: CarbonIconType;
|
|
12
16
|
declare const _RouterVoice: CarbonIconType;
|
|
@@ -128,8 +132,4 @@ declare const _SimCard: CarbonIconType;
|
|
|
128
132
|
declare const _SkillLevel: CarbonIconType;
|
|
129
133
|
declare const _SkillLevelAdvanced: CarbonIconType;
|
|
130
134
|
declare const _SkillLevelBasic: CarbonIconType;
|
|
131
|
-
|
|
132
|
-
declare const _SkipBack: CarbonIconType;
|
|
133
|
-
declare const _SkipBackFilled: CarbonIconType;
|
|
134
|
-
declare const _SkipBackOutline: CarbonIconType;
|
|
135
|
-
export { _RotateCounterclockwiseFilled as RotateCounterclockwiseFilled, _Router as Router, _RouterVoice as RouterVoice, _RouterWifi as RouterWifi, _Row as Row, _RowCollapse as RowCollapse, _RowDelete as RowDelete, _RowExpand as RowExpand, _RowInsert as RowInsert, _Rss as Rss, _Rule as Rule, _RuleCancelled as RuleCancelled, _RuleDataQuality as RuleDataQuality, _RuleDraft as RuleDraft, _RuleFilled as RuleFilled, _RuleLocked as RuleLocked, _RulePartial as RulePartial, _RuleTest as RuleTest, _Ruler as Ruler, _RulerAlt as RulerAlt, _Run as Run, _RunMirror as RunMirror, _Running as Running, _QS as QS, _QSAlt as QSAlt, _SailboatCoastal as SailboatCoastal, _SailboatOffshore as SailboatOffshore, _SalesOps as SalesOps, _SankeyDiagram as SankeyDiagram, _SankeyDiagramAlt as SankeyDiagramAlt, _Satellite as Satellite, _SatelliteRadar as SatelliteRadar, _SatelliteWeather as SatelliteWeather, _Save as Save, _WatsonHealthSaveAnnotation as WatsonHealthSaveAnnotation, _WatsonHealthSaveImage as WatsonHealthSaveImage, _SaveModel as SaveModel, _WatsonHealthSaveSeries as WatsonHealthSaveSeries, _Scale as Scale, _Scales as Scales, _ScalesTipped as ScalesTipped, _Scalpel as Scalpel, _WatsonHealthScalpelCursor as WatsonHealthScalpelCursor, _WatsonHealthScalpelLasso as WatsonHealthScalpelLasso, _WatsonHealthScalpelSelect as WatsonHealthScalpelSelect, _Scan as Scan, _ScanAlt as ScanAlt, _ScanDisabled as ScanDisabled, _ScatterMatrix as ScatterMatrix, _Schematics as Schematics, _ScisControlTower as ScisControlTower, _ScisTransparentSupply as ScisTransparentSupply, _Scooter as Scooter, _ScooterFront as ScooterFront, _Screen as Screen, _ScreenOff as ScreenOff, _ScreenMap as ScreenMap, _ScreenMapSet as ScreenMapSet, _Script as Script, _ScriptReference as ScriptReference, _Sdk as Sdk, _Search as Search, _SearchAdvanced as SearchAdvanced, _SearchLocate as SearchLocate, _SearchLocateMirror as SearchLocateMirror, _Security as Security, _SecurityServices as SecurityServices, _Select_01 as Select_01, _Select_02 as Select_02, _SelectWindow as SelectWindow, _Send as Send, _SendAlt as SendAlt, _SendAltFilled as SendAltFilled, _SendFilled as SendFilled, _SendBackward as SendBackward, _SendToBack as SendToBack, _ServerDns as ServerDns, _ServerProxy as ServerProxy, _ServerTime as ServerTime, _ServiceDesk as ServiceDesk, _ServiceId as ServiceId, _ServiceLevels as ServiceLevels, _SessionBorderControl as SessionBorderControl, _Settings as Settings, _SettingsAdjust as SettingsAdjust, _SettingsCheck as SettingsCheck, _SettingsEdit as SettingsEdit, _SettingsServices as SettingsServices, _SettingsView as SettingsView, _ShapeExcept as ShapeExcept, _ShapeExclude as ShapeExclude, _ShapeIntersect as ShapeIntersect, _ShapeJoin as ShapeJoin, _ShapeUnite as ShapeUnite, _Share as Share, _ShareKnowledge as ShareKnowledge, _ShoppingBag as ShoppingBag, _ShoppingCart as ShoppingCart, _ShoppingCartArrowDown as ShoppingCartArrowDown, _ShoppingCartArrowUp as ShoppingCartArrowUp, _ShoppingCartClear as ShoppingCartClear, _ShoppingCartError as ShoppingCartError, _ShoppingCartMinus as ShoppingCartMinus, _ShoppingCartPlus as ShoppingCartPlus, _ShoppingCatalog as ShoppingCatalog, _ShowDataCards as ShowDataCards, _ShrinkScreen as ShrinkScreen, _ShrinkScreenFilled as ShrinkScreenFilled, _Shuffle as Shuffle, _Shuttle as Shuttle, _SidePanelClose as SidePanelClose, _SidePanelCloseFilled as SidePanelCloseFilled, _SidePanelOpen as SidePanelOpen, _SidePanelOpenFilled as SidePanelOpenFilled, _Sight as Sight, _Sigma as Sigma, _SignalStrength as SignalStrength, _SimCard as SimCard, _SkillLevel as SkillLevel, _SkillLevelAdvanced as SkillLevelAdvanced, _SkillLevelBasic as SkillLevelBasic, _SkillLevelIntermediate as SkillLevelIntermediate, _SkipBack as SkipBack, _SkipBackFilled as SkipBackFilled, _SkipBackOutline as SkipBackOutline };
|
|
135
|
+
export { _RotateClockwiseFilled as RotateClockwiseFilled, _RotateCounterclockwise as RotateCounterclockwise, _RotateCounterclockwiseAlt as RotateCounterclockwiseAlt, _RotateCounterclockwiseAltFilled as RotateCounterclockwiseAltFilled, _RotateCounterclockwiseFilled as RotateCounterclockwiseFilled, _Router as Router, _RouterVoice as RouterVoice, _RouterWifi as RouterWifi, _Row as Row, _RowCollapse as RowCollapse, _RowDelete as RowDelete, _RowExpand as RowExpand, _RowInsert as RowInsert, _Rss as Rss, _Rule as Rule, _RuleCancelled as RuleCancelled, _RuleDataQuality as RuleDataQuality, _RuleDraft as RuleDraft, _RuleFilled as RuleFilled, _RuleLocked as RuleLocked, _RulePartial as RulePartial, _RuleTest as RuleTest, _Ruler as Ruler, _RulerAlt as RulerAlt, _Run as Run, _RunMirror as RunMirror, _Running as Running, _QS as QS, _QSAlt as QSAlt, _SailboatCoastal as SailboatCoastal, _SailboatOffshore as SailboatOffshore, _SalesOps as SalesOps, _SankeyDiagram as SankeyDiagram, _SankeyDiagramAlt as SankeyDiagramAlt, _Satellite as Satellite, _SatelliteRadar as SatelliteRadar, _SatelliteWeather as SatelliteWeather, _Save as Save, _WatsonHealthSaveAnnotation as WatsonHealthSaveAnnotation, _WatsonHealthSaveImage as WatsonHealthSaveImage, _SaveModel as SaveModel, _WatsonHealthSaveSeries as WatsonHealthSaveSeries, _Scale as Scale, _Scales as Scales, _ScalesTipped as ScalesTipped, _Scalpel as Scalpel, _WatsonHealthScalpelCursor as WatsonHealthScalpelCursor, _WatsonHealthScalpelLasso as WatsonHealthScalpelLasso, _WatsonHealthScalpelSelect as WatsonHealthScalpelSelect, _Scan as Scan, _ScanAlt as ScanAlt, _ScanDisabled as ScanDisabled, _ScatterMatrix as ScatterMatrix, _Schematics as Schematics, _ScisControlTower as ScisControlTower, _ScisTransparentSupply as ScisTransparentSupply, _Scooter as Scooter, _ScooterFront as ScooterFront, _Screen as Screen, _ScreenOff as ScreenOff, _ScreenMap as ScreenMap, _ScreenMapSet as ScreenMapSet, _Script as Script, _ScriptReference as ScriptReference, _Sdk as Sdk, _Search as Search, _SearchAdvanced as SearchAdvanced, _SearchLocate as SearchLocate, _SearchLocateMirror as SearchLocateMirror, _Security as Security, _SecurityServices as SecurityServices, _Select_01 as Select_01, _Select_02 as Select_02, _SelectWindow as SelectWindow, _Send as Send, _SendAlt as SendAlt, _SendAltFilled as SendAltFilled, _SendFilled as SendFilled, _SendBackward as SendBackward, _SendToBack as SendToBack, _ServerDns as ServerDns, _ServerProxy as ServerProxy, _ServerTime as ServerTime, _ServiceDesk as ServiceDesk, _ServiceId as ServiceId, _ServiceLevels as ServiceLevels, _SessionBorderControl as SessionBorderControl, _Settings as Settings, _SettingsAdjust as SettingsAdjust, _SettingsCheck as SettingsCheck, _SettingsEdit as SettingsEdit, _SettingsServices as SettingsServices, _SettingsView as SettingsView, _ShapeExcept as ShapeExcept, _ShapeExclude as ShapeExclude, _ShapeIntersect as ShapeIntersect, _ShapeJoin as ShapeJoin, _ShapeUnite as ShapeUnite, _Share as Share, _ShareKnowledge as ShareKnowledge, _ShoppingBag as ShoppingBag, _ShoppingCart as ShoppingCart, _ShoppingCartArrowDown as ShoppingCartArrowDown, _ShoppingCartArrowUp as ShoppingCartArrowUp, _ShoppingCartClear as ShoppingCartClear, _ShoppingCartError as ShoppingCartError, _ShoppingCartMinus as ShoppingCartMinus, _ShoppingCartPlus as ShoppingCartPlus, _ShoppingCatalog as ShoppingCatalog, _ShowDataCards as ShowDataCards, _ShrinkScreen as ShrinkScreen, _ShrinkScreenFilled as ShrinkScreenFilled, _Shuffle as Shuffle, _Shuttle as Shuttle, _SidePanelClose as SidePanelClose, _SidePanelCloseFilled as SidePanelCloseFilled, _SidePanelOpen as SidePanelOpen, _SidePanelOpenFilled as SidePanelOpenFilled, _Sight as Sight, _Sigma as Sigma, _SignalStrength as SignalStrength, _SimCard as SimCard, _SkillLevel as SkillLevel, _SkillLevelAdvanced as SkillLevelAdvanced, _SkillLevelBasic as SkillLevelBasic };
|