@adcops/autocore-react 3.3.9 → 3.3.10
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/LICENSE +58 -58
- package/additional-docs/AutoCoreTagContext.md +441 -441
- package/additional-docs/ButtonApiSpecs.md +48 -48
- package/additional-docs/GlobalEventEmitter.md +243 -243
- package/additional-docs/general_recommendations.md +22 -22
- package/additional-docs/react_performance_notes.md +94 -94
- package/dist/assets/svg/blockly_logo.svg +82 -82
- package/dist/assets/svg/distance.svg +40 -40
- package/dist/assets/svg/python_logo.svg +246 -246
- package/dist/assets/svg/rotation_ccw.svg +50 -50
- package/dist/assets/svg/rotation_ccw_a.svg +57 -57
- package/dist/assets/svg/rotation_ccw_b.svg +57 -57
- package/dist/assets/svg/rotation_ccw_c.svg +57 -57
- package/dist/assets/svg/rotation_cw.svg +49 -49
- package/dist/assets/svg/rotation_cw_a.svg +30 -30
- package/dist/assets/svg/rotation_cw_b.svg +30 -30
- package/dist/assets/svg/rotation_cw_c.svg +30 -30
- package/dist/assets/svg/speed.svg +39 -39
- package/dist/components/BlocklyEditor.css +93 -93
- package/dist/components/JogPanel.css +41 -41
- package/dist/components/ProgressBarWithValue.css +27 -27
- package/dist/components/ValueIndicator.css +31 -31
- package/dist/components/osk.css +123 -123
- package/dist/core/AutoCoreTagContext.d.ts.map +1 -1
- package/dist/core/AutoCoreTagContext.js +1 -1
- package/dist/hub/HubBase.d.ts +3 -3
- package/dist/hub/HubBase.d.ts.map +1 -1
- package/dist/hub/HubBase.js +1 -1
- package/package.json +104 -104
- package/readme.md +343 -343
- package/src/assets/BlocklyLogo.tsx +27 -27
- package/src/assets/Distance.tsx +18 -18
- package/src/assets/JogLong.tsx +13 -13
- package/src/assets/JogMedium.tsx +13 -13
- package/src/assets/JogShort.tsx +13 -13
- package/src/assets/PythonLogo.tsx +83 -83
- package/src/assets/Rotation3D.tsx +13 -13
- package/src/assets/RotationCcw.tsx +33 -33
- package/src/assets/RotationCcwA.tsx +45 -45
- package/src/assets/RotationCcwB.tsx +45 -45
- package/src/assets/RotationCcwC.tsx +45 -45
- package/src/assets/RotationCw.tsx +31 -31
- package/src/assets/RotationCwA.tsx +42 -42
- package/src/assets/RotationCwB.tsx +42 -42
- package/src/assets/RotationCwC.tsx +42 -42
- package/src/assets/Run.tsx +13 -13
- package/src/assets/Speed.tsx +18 -18
- package/src/assets/SpeedFast.tsx +13 -13
- package/src/assets/SpeedMedium.tsx +13 -13
- package/src/assets/SpeedNone.tsx +13 -13
- package/src/assets/SpeedSlow.tsx +13 -13
- package/src/assets/Walk.tsx +13 -13
- package/src/assets/index.ts +22 -22
- package/src/assets/svg/blockly_logo.svg +82 -82
- package/src/assets/svg/distance.svg +40 -40
- package/src/assets/svg/python_logo.svg +246 -246
- package/src/assets/svg/rotation_ccw.svg +50 -50
- package/src/assets/svg/rotation_ccw_a.svg +57 -57
- package/src/assets/svg/rotation_ccw_b.svg +57 -57
- package/src/assets/svg/rotation_ccw_c.svg +57 -57
- package/src/assets/svg/rotation_cw.svg +49 -49
- package/src/assets/svg/rotation_cw_a.svg +30 -30
- package/src/assets/svg/rotation_cw_b.svg +30 -30
- package/src/assets/svg/rotation_cw_c.svg +30 -30
- package/src/assets/svg/speed.svg +39 -39
- package/src/components/AutoCoreDevPanel.tsx +414 -414
- package/src/components/BlocklyEditor.css +93 -93
- package/src/components/BlocklyEditor.tsx +609 -609
- package/src/components/CodeEditor.tsx +155 -155
- package/src/components/FileList.tsx +390 -390
- package/src/components/FileSelect.tsx +128 -128
- package/src/components/FitText.tsx +35 -35
- package/src/components/Indicator.tsx +188 -188
- package/src/components/IndicatorButton.tsx +214 -214
- package/src/components/IndicatorRect.tsx +172 -172
- package/src/components/JogPanel.css +41 -41
- package/src/components/JogPanel.tsx +461 -461
- package/src/components/Lamp.tsx +243 -243
- package/src/components/Osk.tsx +192 -192
- package/src/components/OskDialog.tsx +164 -164
- package/src/components/ProgressBarWithValue.css +27 -27
- package/src/components/ProgressBarWithValue.tsx +48 -48
- package/src/components/TextInput.tsx +195 -195
- package/src/components/ToggleGroup.tsx +322 -322
- package/src/components/ValueDisplay.tsx +236 -236
- package/src/components/ValueIndicator.css +31 -31
- package/src/components/ValueIndicator.tsx +135 -135
- package/src/components/ValueInput.tsx +368 -368
- package/src/components/osk.css +123 -123
- package/src/core/ActionMode.ts +19 -19
- package/src/core/AutoCoreTagContext.tsx +625 -614
- package/src/core/AutoCoreTagTypes.ts +334 -334
- package/src/core/CoreStreamTypes.ts +512 -512
- package/src/core/EventEmitterContext.tsx +434 -434
- package/src/core/IndicatorButtonState.ts +34 -34
- package/src/core/IndicatorColor.ts +35 -35
- package/src/core/MaskPatterns.ts +87 -87
- package/src/core/NumerableTypes.ts +80 -80
- package/src/core/PositionContext.ts +59 -59
- package/src/core/UniqueId.ts +41 -41
- package/src/core/ValueSimulator.ts +166 -166
- package/src/core/hoc.tsx +65 -65
- package/src/hooks/adsHooks.tsx +287 -287
- package/src/hooks/commandHooks.tsx +300 -300
- package/src/hooks/index.ts +12 -12
- package/src/hooks/useAutoCoreTag.ts +103 -103
- package/src/hooks/useScaledValue.tsx +99 -99
- package/src/hub/CommandMessage.ts +89 -89
- package/src/hub/DebugPanel.ts +307 -307
- package/src/hub/HubBase.ts +249 -236
- package/src/hub/HubSimulate.ts +124 -124
- package/src/hub/HubTauri.ts +140 -140
- package/src/hub/HubWebSocket.ts +250 -250
- package/src/hub/debug.ts +211 -211
- package/src/hub/index.ts +81 -81
- package/src/themes/adc-dark/_extensions.scss +166 -166
- package/src/themes/adc-dark/_variables.scss +913 -913
- package/src/themes/adc-dark/blue/_fonts.scss +23 -23
- package/src/themes/adc-dark/blue/adc_theme.scss +31 -31
- package/src/themes/adc-dark/blue/theme.scss +14 -14
- package/src/themes/theme-base/_colors.scss +17 -17
- package/src/themes/theme-base/_common.scss +74 -74
- package/src/themes/theme-base/_components.scss +111 -111
- package/src/themes/theme-base/_mixins.scss +243 -243
- package/src/themes/theme-base/components/button/_button.scss +644 -644
- package/src/themes/theme-base/components/button/_speeddial.scss +91 -91
- package/src/themes/theme-base/components/button/_splitbutton.scss +358 -358
- package/src/themes/theme-base/components/data/_carousel.scss +39 -39
- package/src/themes/theme-base/components/data/_datascroller.scss +47 -47
- package/src/themes/theme-base/components/data/_datatable.scss +388 -388
- package/src/themes/theme-base/components/data/_dataview.scss +47 -47
- package/src/themes/theme-base/components/data/_filter.scss +137 -137
- package/src/themes/theme-base/components/data/_orderlist.scss +86 -86
- package/src/themes/theme-base/components/data/_organizationchart.scss +50 -50
- package/src/themes/theme-base/components/data/_paginator.scss +91 -91
- package/src/themes/theme-base/components/data/_picklist.scss +73 -73
- package/src/themes/theme-base/components/data/_timeline.scss +38 -38
- package/src/themes/theme-base/components/data/_tree.scss +184 -184
- package/src/themes/theme-base/components/data/_treetable.scss +431 -431
- package/src/themes/theme-base/components/file/_fileupload.scss +41 -41
- package/src/themes/theme-base/components/input/_autocomplete.scss +94 -94
- package/src/themes/theme-base/components/input/_calendar.scss +251 -251
- package/src/themes/theme-base/components/input/_cascadeselect.scss +107 -107
- package/src/themes/theme-base/components/input/_checkbox.scss +181 -181
- package/src/themes/theme-base/components/input/_chips.scss +102 -102
- package/src/themes/theme-base/components/input/_colorpicker.scss +17 -17
- package/src/themes/theme-base/components/input/_dropdown.scss +252 -252
- package/src/themes/theme-base/components/input/_editor.scss +122 -122
- package/src/themes/theme-base/components/input/_iconfield.scss +9 -9
- package/src/themes/theme-base/components/input/_inputgroup.scss +74 -74
- package/src/themes/theme-base/components/input/_inputicon.scss +14 -14
- package/src/themes/theme-base/components/input/_inputnumber.scss +4 -4
- package/src/themes/theme-base/components/input/_inputotp.scss +10 -10
- package/src/themes/theme-base/components/input/_inputswitch.scss +99 -99
- package/src/themes/theme-base/components/input/_inputtext.scss +101 -101
- package/src/themes/theme-base/components/input/_listbox.scss +138 -138
- package/src/themes/theme-base/components/input/_mention.scss +30 -30
- package/src/themes/theme-base/components/input/_multiselect.scss +278 -278
- package/src/themes/theme-base/components/input/_password.scss +32 -32
- package/src/themes/theme-base/components/input/_radiobutton.scss +169 -169
- package/src/themes/theme-base/components/input/_rating.scss +80 -80
- package/src/themes/theme-base/components/input/_selectbutton.scss +49 -49
- package/src/themes/theme-base/components/input/_slider.scss +49 -49
- package/src/themes/theme-base/components/input/_togglebutton.scss +99 -99
- package/src/themes/theme-base/components/input/_treeselect.scss +151 -151
- package/src/themes/theme-base/components/input/_tristatecheckbox.scss +46 -46
- package/src/themes/theme-base/components/menu/_breadcrumb.scss +42 -42
- package/src/themes/theme-base/components/menu/_contextmenu.scss +39 -39
- package/src/themes/theme-base/components/menu/_dock.scss +109 -109
- package/src/themes/theme-base/components/menu/_megamenu.scss +141 -141
- package/src/themes/theme-base/components/menu/_menu.scss +33 -33
- package/src/themes/theme-base/components/menu/_menubar.scss +216 -216
- package/src/themes/theme-base/components/menu/_panelmenu.scss +153 -153
- package/src/themes/theme-base/components/menu/_slidemenu.scss +60 -60
- package/src/themes/theme-base/components/menu/_steps.scss +57 -57
- package/src/themes/theme-base/components/menu/_tabmenu.scss +50 -50
- package/src/themes/theme-base/components/menu/_tieredmenu.scss +43 -43
- package/src/themes/theme-base/components/messages/_inlinemessage.scss +69 -69
- package/src/themes/theme-base/components/messages/_message.scss +107 -107
- package/src/themes/theme-base/components/messages/_toast.scss +100 -100
- package/src/themes/theme-base/components/misc/_avatar.scss +33 -33
- package/src/themes/theme-base/components/misc/_badge.scss +76 -76
- package/src/themes/theme-base/components/misc/_chip.scss +38 -38
- package/src/themes/theme-base/components/misc/_inplace.scss +17 -17
- package/src/themes/theme-base/components/misc/_metergroup.scss +80 -80
- package/src/themes/theme-base/components/misc/_progressbar.scss +17 -17
- package/src/themes/theme-base/components/misc/_scrolltop.scss +24 -24
- package/src/themes/theme-base/components/misc/_skeleton.scss +7 -7
- package/src/themes/theme-base/components/misc/_tag.scss +39 -39
- package/src/themes/theme-base/components/misc/_terminal.scss +12 -12
- package/src/themes/theme-base/components/multimedia/_galleria.scss +153 -153
- package/src/themes/theme-base/components/multimedia/_image.scss +53 -53
- package/src/themes/theme-base/components/overlay/_confirmpopup.scss +72 -72
- package/src/themes/theme-base/components/overlay/_dialog.scss +78 -78
- package/src/themes/theme-base/components/overlay/_overlaypanel.scss +64 -64
- package/src/themes/theme-base/components/overlay/_sidebar.scss +23 -23
- package/src/themes/theme-base/components/overlay/_tooltip.scss +33 -33
- package/src/themes/theme-base/components/panel/_accordion.scss +118 -118
- package/src/themes/theme-base/components/panel/_card.scss +30 -30
- package/src/themes/theme-base/components/panel/_divider.scss +30 -30
- package/src/themes/theme-base/components/panel/_fieldset.scss +47 -47
- package/src/themes/theme-base/components/panel/_panel.scss +47 -47
- package/src/themes/theme-base/components/panel/_scrollpanel.scss +10 -10
- package/src/themes/theme-base/components/panel/_splitter.scss +23 -23
- package/src/themes/theme-base/components/panel/_stepper.scss +136 -136
- package/src/themes/theme-base/components/panel/_tabview.scss +147 -147
- package/src/themes/theme-base/components/panel/_toolbar.scss +11 -11
- package/terser.config.cjs +25 -25
- package/todo.md +18 -18
- package/tools/build-themes.cjs +65 -65
- package/tools/copy-distribution-files.cjs +77 -77
- package/tools/minify.cjs +55 -55
- package/tsconfig.json +48 -48
- package/typedoc.json +12 -12
- package/.claude/settings.local.json +0 -7
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgBlocklyLogo = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={34.131}
|
|
6
|
-
height={38.057}
|
|
7
|
-
{...props}
|
|
8
|
-
>
|
|
9
|
-
<path
|
|
10
|
-
d="M12.605 61.77a3.21 3.21 0 0 0-3.212 3.213V92.69a3.21 3.21 0 0 0 3.212 3.212h1.25a5.285 5.285 0 0 0 5.105 3.924 5.285 5.285 0 0 0 5.1-3.924h5.442a2.117 2.117 0 0 0 2.117-2.117V63.888l-2.116-2.117z"
|
|
11
|
-
style={{
|
|
12
|
-
fill: "#4285f4",
|
|
13
|
-
strokeWidth: 0.264583,
|
|
14
|
-
}}
|
|
15
|
-
transform="translate(-9.393 -61.77)"
|
|
16
|
-
/>
|
|
17
|
-
<path
|
|
18
|
-
d="M28.445 61.77q-.003 7.023-.002 14.053l-4.4-2.487a.952.952 0 0 0-1.421.828v10.748a.953.953 0 0 0 1.42.827l4.4-2.487v12.65h12.035a3.05 3.05 0 0 0 3.047-3.048V64.808a3.05 3.05 0 0 0-3.048-3.037z"
|
|
19
|
-
style={{
|
|
20
|
-
fill: "#c8d1db",
|
|
21
|
-
strokeWidth: 0.264583,
|
|
22
|
-
}}
|
|
23
|
-
transform="translate(-9.393 -61.77)"
|
|
24
|
-
/>
|
|
25
|
-
</svg>
|
|
26
|
-
);
|
|
27
|
-
export default SvgBlocklyLogo;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgBlocklyLogo = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={34.131}
|
|
6
|
+
height={38.057}
|
|
7
|
+
{...props}
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
d="M12.605 61.77a3.21 3.21 0 0 0-3.212 3.213V92.69a3.21 3.21 0 0 0 3.212 3.212h1.25a5.285 5.285 0 0 0 5.105 3.924 5.285 5.285 0 0 0 5.1-3.924h5.442a2.117 2.117 0 0 0 2.117-2.117V63.888l-2.116-2.117z"
|
|
11
|
+
style={{
|
|
12
|
+
fill: "#4285f4",
|
|
13
|
+
strokeWidth: 0.264583,
|
|
14
|
+
}}
|
|
15
|
+
transform="translate(-9.393 -61.77)"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M28.445 61.77q-.003 7.023-.002 14.053l-4.4-2.487a.952.952 0 0 0-1.421.828v10.748a.953.953 0 0 0 1.42.827l4.4-2.487v12.65h12.035a3.05 3.05 0 0 0 3.047-3.048V64.808a3.05 3.05 0 0 0-3.048-3.037z"
|
|
19
|
+
style={{
|
|
20
|
+
fill: "#c8d1db",
|
|
21
|
+
strokeWidth: 0.264583,
|
|
22
|
+
}}
|
|
23
|
+
transform="translate(-9.393 -61.77)"
|
|
24
|
+
/>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgBlocklyLogo;
|
package/src/assets/Distance.tsx
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgDistance = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={24}
|
|
6
|
-
height={24}
|
|
7
|
-
viewBox="0 -960 960 960"
|
|
8
|
-
{...props}
|
|
9
|
-
>
|
|
10
|
-
<path
|
|
11
|
-
d="M99.287-194.465q-39.261 0-67.22-27.959Q4.11-250.382 4.11-289.644v-380.712q0-39.262 27.958-67.22 27.959-27.959 67.22-27.959h761.426q39.261 0 67.22 27.959t27.958 67.22v380.712q0 39.262-27.958 67.22-27.959 27.959-67.22 27.959zm0-95.179h761.426v-380.712H717.946v142.767q0 20.225-13.682 33.907T670.356-480t-33.907-13.682-13.682-33.907v-142.767H527.59v142.767q0 20.225-13.682 33.907T480-480t-33.907-13.682-13.682-33.907v-142.767h-95.178v142.767q0 20.225-13.682 33.907T289.644-480t-33.908-13.682-13.682-33.907v-142.767H99.287ZM480-480"
|
|
12
|
-
style={{
|
|
13
|
-
strokeWidth: 1.18973,
|
|
14
|
-
}}
|
|
15
|
-
/>
|
|
16
|
-
</svg>
|
|
17
|
-
);
|
|
18
|
-
export default SvgDistance;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgDistance = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
viewBox="0 -960 960 960"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path
|
|
11
|
+
d="M99.287-194.465q-39.261 0-67.22-27.959Q4.11-250.382 4.11-289.644v-380.712q0-39.262 27.958-67.22 27.959-27.959 67.22-27.959h761.426q39.261 0 67.22 27.959t27.958 67.22v380.712q0 39.262-27.958 67.22-27.959 27.959-67.22 27.959zm0-95.179h761.426v-380.712H717.946v142.767q0 20.225-13.682 33.907T670.356-480t-33.907-13.682-13.682-33.907v-142.767H527.59v142.767q0 20.225-13.682 33.907T480-480t-33.907-13.682-13.682-33.907v-142.767h-95.178v142.767q0 20.225-13.682 33.907T289.644-480t-33.908-13.682-13.682-33.907v-142.767H99.287ZM480-480"
|
|
12
|
+
style={{
|
|
13
|
+
strokeWidth: 1.18973,
|
|
14
|
+
}}
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default SvgDistance;
|
package/src/assets/JogLong.tsx
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgJogLong = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={24}
|
|
6
|
-
height={24}
|
|
7
|
-
viewBox="0 -960 960 960"
|
|
8
|
-
{...props}
|
|
9
|
-
>
|
|
10
|
-
<path d="M800-80v-800h80v800zM560-280v-400h120v400zm-240 0v-400h120v400zm-240 0v-400h120v400h120Z" />
|
|
11
|
-
</svg>
|
|
12
|
-
);
|
|
13
|
-
export default SvgJogLong;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgJogLong = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
viewBox="0 -960 960 960"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M800-80v-800h80v800zM560-280v-400h120v400zm-240 0v-400h120v400zm-240 0v-400h120v400h120Z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default SvgJogLong;
|
package/src/assets/JogMedium.tsx
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgJogMedium = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={24}
|
|
6
|
-
height={24}
|
|
7
|
-
viewBox="0 -960 960 960"
|
|
8
|
-
{...props}
|
|
9
|
-
>
|
|
10
|
-
<path d="M800-80v-800h80v800zM560-280v-400h120v400zm-240 0v-400h120v400z" />
|
|
11
|
-
</svg>
|
|
12
|
-
);
|
|
13
|
-
export default SvgJogMedium;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgJogMedium = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
viewBox="0 -960 960 960"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M800-80v-800h80v800zM560-280v-400h120v400zm-240 0v-400h120v400z" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default SvgJogMedium;
|
package/src/assets/JogShort.tsx
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgJogShort = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={24}
|
|
6
|
-
height={24}
|
|
7
|
-
viewBox="0 -960 960 960"
|
|
8
|
-
{...props}
|
|
9
|
-
>
|
|
10
|
-
<path d="M800-80v-800h80v800zM560-280v-400h120v400zm-240 0" />
|
|
11
|
-
</svg>
|
|
12
|
-
);
|
|
13
|
-
export default SvgJogShort;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgJogShort = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
viewBox="0 -960 960 960"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M800-80v-800h80v800zM560-280v-400h120v400zm-240 0" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default SvgJogShort;
|
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgPythonLogo = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
6
|
-
width={33.348}
|
|
7
|
-
height={33.717}
|
|
8
|
-
viewBox="0 0 111.161 112.389"
|
|
9
|
-
{...props}
|
|
10
|
-
>
|
|
11
|
-
<defs>
|
|
12
|
-
<linearGradient id="python_logo_svg__a">
|
|
13
|
-
<stop
|
|
14
|
-
offset={0}
|
|
15
|
-
style={{
|
|
16
|
-
stopColor: "#ffd43b",
|
|
17
|
-
stopOpacity: 1,
|
|
18
|
-
}}
|
|
19
|
-
/>
|
|
20
|
-
<stop
|
|
21
|
-
offset={1}
|
|
22
|
-
style={{
|
|
23
|
-
stopColor: "#ffe873",
|
|
24
|
-
stopOpacity: 1,
|
|
25
|
-
}}
|
|
26
|
-
/>
|
|
27
|
-
</linearGradient>
|
|
28
|
-
<linearGradient id="python_logo_svg__b">
|
|
29
|
-
<stop
|
|
30
|
-
offset={0}
|
|
31
|
-
style={{
|
|
32
|
-
stopColor: "#5a9fd4",
|
|
33
|
-
stopOpacity: 1,
|
|
34
|
-
}}
|
|
35
|
-
/>
|
|
36
|
-
<stop
|
|
37
|
-
offset={1}
|
|
38
|
-
style={{
|
|
39
|
-
stopColor: "#306998",
|
|
40
|
-
stopOpacity: 1,
|
|
41
|
-
}}
|
|
42
|
-
/>
|
|
43
|
-
</linearGradient>
|
|
44
|
-
<linearGradient
|
|
45
|
-
xlinkHref="#python_logo_svg__a"
|
|
46
|
-
id="python_logo_svg__e"
|
|
47
|
-
x1={150.961}
|
|
48
|
-
x2={112.031}
|
|
49
|
-
y1={192.352}
|
|
50
|
-
y2={137.273}
|
|
51
|
-
gradientTransform="matrix(.56254 0 0 .56797 -9.4 -5.305)"
|
|
52
|
-
gradientUnits="userSpaceOnUse"
|
|
53
|
-
/>
|
|
54
|
-
<linearGradient
|
|
55
|
-
xlinkHref="#python_logo_svg__b"
|
|
56
|
-
id="python_logo_svg__d"
|
|
57
|
-
x1={26.649}
|
|
58
|
-
x2={135.665}
|
|
59
|
-
y1={20.604}
|
|
60
|
-
y2={114.398}
|
|
61
|
-
gradientTransform="matrix(.56254 0 0 .56797 -9.4 -5.305)"
|
|
62
|
-
gradientUnits="userSpaceOnUse"
|
|
63
|
-
/>
|
|
64
|
-
</defs>
|
|
65
|
-
<path
|
|
66
|
-
d="M60.51 6.398c-4.583.021-8.96.412-12.812 1.094-11.347 2.004-13.407 6.2-13.407 13.937v10.219h26.813v3.406H24.229c-7.793 0-14.616 4.684-16.75 13.594-2.462 10.213-2.571 16.586 0 27.25 1.906 7.938 6.457 13.594 14.25 13.594h9.219v-12.25c0-8.85 7.657-16.657 16.75-16.657h26.78c7.456 0 13.407-6.138 13.407-13.625V21.43c0-7.267-6.13-12.726-13.406-13.938-4.606-.767-9.385-1.115-13.969-1.094m-14.5 8.219c2.77 0 5.031 2.298 5.031 5.125 0 2.816-2.261 5.093-5.03 5.093-2.78 0-5.032-2.277-5.032-5.093 0-2.827 2.252-5.125 5.031-5.125"
|
|
67
|
-
style={{
|
|
68
|
-
fill: "url(#python_logo_svg__d)",
|
|
69
|
-
fillOpacity: 1,
|
|
70
|
-
}}
|
|
71
|
-
transform="translate(-5.591 -6.397)"
|
|
72
|
-
/>
|
|
73
|
-
<path
|
|
74
|
-
d="M91.229 35.054V46.96c0 9.231-7.826 17-16.75 17H47.698c-7.336 0-13.407 6.279-13.407 13.625v25.532c0 7.266 6.319 11.54 13.407 13.625 8.487 2.495 16.626 2.946 26.78 0 6.751-1.955 13.407-5.888 13.407-13.625V92.898H61.104v-3.406h40.187c7.793 0 10.697-5.436 13.407-13.594 2.799-8.399 2.68-16.476 0-27.25-1.926-7.757-5.604-13.594-13.407-13.594zM76.166 99.71c2.78 0 5.032 2.278 5.032 5.094 0 2.827-2.252 5.125-5.032 5.125-2.77 0-5.03-2.298-5.03-5.125 0-2.816 2.26-5.094 5.03-5.094"
|
|
75
|
-
style={{
|
|
76
|
-
fill: "url(#python_logo_svg__e)",
|
|
77
|
-
fillOpacity: 1,
|
|
78
|
-
}}
|
|
79
|
-
transform="translate(-5.591 -6.397)"
|
|
80
|
-
/>
|
|
81
|
-
</svg>
|
|
82
|
-
);
|
|
83
|
-
export default SvgPythonLogo;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgPythonLogo = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
6
|
+
width={33.348}
|
|
7
|
+
height={33.717}
|
|
8
|
+
viewBox="0 0 111.161 112.389"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<defs>
|
|
12
|
+
<linearGradient id="python_logo_svg__a">
|
|
13
|
+
<stop
|
|
14
|
+
offset={0}
|
|
15
|
+
style={{
|
|
16
|
+
stopColor: "#ffd43b",
|
|
17
|
+
stopOpacity: 1,
|
|
18
|
+
}}
|
|
19
|
+
/>
|
|
20
|
+
<stop
|
|
21
|
+
offset={1}
|
|
22
|
+
style={{
|
|
23
|
+
stopColor: "#ffe873",
|
|
24
|
+
stopOpacity: 1,
|
|
25
|
+
}}
|
|
26
|
+
/>
|
|
27
|
+
</linearGradient>
|
|
28
|
+
<linearGradient id="python_logo_svg__b">
|
|
29
|
+
<stop
|
|
30
|
+
offset={0}
|
|
31
|
+
style={{
|
|
32
|
+
stopColor: "#5a9fd4",
|
|
33
|
+
stopOpacity: 1,
|
|
34
|
+
}}
|
|
35
|
+
/>
|
|
36
|
+
<stop
|
|
37
|
+
offset={1}
|
|
38
|
+
style={{
|
|
39
|
+
stopColor: "#306998",
|
|
40
|
+
stopOpacity: 1,
|
|
41
|
+
}}
|
|
42
|
+
/>
|
|
43
|
+
</linearGradient>
|
|
44
|
+
<linearGradient
|
|
45
|
+
xlinkHref="#python_logo_svg__a"
|
|
46
|
+
id="python_logo_svg__e"
|
|
47
|
+
x1={150.961}
|
|
48
|
+
x2={112.031}
|
|
49
|
+
y1={192.352}
|
|
50
|
+
y2={137.273}
|
|
51
|
+
gradientTransform="matrix(.56254 0 0 .56797 -9.4 -5.305)"
|
|
52
|
+
gradientUnits="userSpaceOnUse"
|
|
53
|
+
/>
|
|
54
|
+
<linearGradient
|
|
55
|
+
xlinkHref="#python_logo_svg__b"
|
|
56
|
+
id="python_logo_svg__d"
|
|
57
|
+
x1={26.649}
|
|
58
|
+
x2={135.665}
|
|
59
|
+
y1={20.604}
|
|
60
|
+
y2={114.398}
|
|
61
|
+
gradientTransform="matrix(.56254 0 0 .56797 -9.4 -5.305)"
|
|
62
|
+
gradientUnits="userSpaceOnUse"
|
|
63
|
+
/>
|
|
64
|
+
</defs>
|
|
65
|
+
<path
|
|
66
|
+
d="M60.51 6.398c-4.583.021-8.96.412-12.812 1.094-11.347 2.004-13.407 6.2-13.407 13.937v10.219h26.813v3.406H24.229c-7.793 0-14.616 4.684-16.75 13.594-2.462 10.213-2.571 16.586 0 27.25 1.906 7.938 6.457 13.594 14.25 13.594h9.219v-12.25c0-8.85 7.657-16.657 16.75-16.657h26.78c7.456 0 13.407-6.138 13.407-13.625V21.43c0-7.267-6.13-12.726-13.406-13.938-4.606-.767-9.385-1.115-13.969-1.094m-14.5 8.219c2.77 0 5.031 2.298 5.031 5.125 0 2.816-2.261 5.093-5.03 5.093-2.78 0-5.032-2.277-5.032-5.093 0-2.827 2.252-5.125 5.031-5.125"
|
|
67
|
+
style={{
|
|
68
|
+
fill: "url(#python_logo_svg__d)",
|
|
69
|
+
fillOpacity: 1,
|
|
70
|
+
}}
|
|
71
|
+
transform="translate(-5.591 -6.397)"
|
|
72
|
+
/>
|
|
73
|
+
<path
|
|
74
|
+
d="M91.229 35.054V46.96c0 9.231-7.826 17-16.75 17H47.698c-7.336 0-13.407 6.279-13.407 13.625v25.532c0 7.266 6.319 11.54 13.407 13.625 8.487 2.495 16.626 2.946 26.78 0 6.751-1.955 13.407-5.888 13.407-13.625V92.898H61.104v-3.406h40.187c7.793 0 10.697-5.436 13.407-13.594 2.799-8.399 2.68-16.476 0-27.25-1.926-7.757-5.604-13.594-13.407-13.594zM76.166 99.71c2.78 0 5.032 2.278 5.032 5.094 0 2.827-2.252 5.125-5.032 5.125-2.77 0-5.03-2.298-5.03-5.125 0-2.816 2.26-5.094 5.03-5.094"
|
|
75
|
+
style={{
|
|
76
|
+
fill: "url(#python_logo_svg__e)",
|
|
77
|
+
fillOpacity: 1,
|
|
78
|
+
}}
|
|
79
|
+
transform="translate(-5.591 -6.397)"
|
|
80
|
+
/>
|
|
81
|
+
</svg>
|
|
82
|
+
);
|
|
83
|
+
export default SvgPythonLogo;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgRotation3D = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={24}
|
|
6
|
-
height={24}
|
|
7
|
-
viewBox="0 -960 960 960"
|
|
8
|
-
{...props}
|
|
9
|
-
>
|
|
10
|
-
<path d="M620-360H520q-8 0-14-6t-6-14v-200q0-8 6-14t14-6h100q17 0 28.5 11.5T660-560v160q0 17-11.5 28.5T620-360m-200 0h-90q-13 0-21.5-8.5T300-390t8.5-21.5T330-420h70v-40h-40q-8 0-14-6t-6-14 6-14 14-6h40v-40h-70q-13 0-21.5-8.5T300-570t8.5-21.5T330-600h90q17 0 28.5 11.5T460-560v160q0 17-11.5 28.5T420-360m140-60h40v-120h-40zm280-20q-17 0-28.5-11.5T800-480q0-115-72.5-203T542-794l30 30q11 11 11 28t-11 28-28 11-28-11L387-837q-8-8-5-20t15-15q20-5 41-6.5t42-1.5q83 0 156 31.5T763-763t85.5 127T880-480q0 17-11.5 28.5T840-440M480-80q-83 0-156-31.5T197-197t-85.5-127T80-480q0-17 11.5-28.5T120-520t28.5 11.5T160-480q0 115 72.5 203T418-166l-30-30q-11-11-11-28t11-28 28-11 28 11l129 129q8 8 5 20t-15 15q-20 5-41 6.5T480-80" />
|
|
11
|
-
</svg>
|
|
12
|
-
);
|
|
13
|
-
export default SvgRotation3D;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgRotation3D = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
viewBox="0 -960 960 960"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<path d="M620-360H520q-8 0-14-6t-6-14v-200q0-8 6-14t14-6h100q17 0 28.5 11.5T660-560v160q0 17-11.5 28.5T620-360m-200 0h-90q-13 0-21.5-8.5T300-390t8.5-21.5T330-420h70v-40h-40q-8 0-14-6t-6-14 6-14 14-6h40v-40h-70q-13 0-21.5-8.5T300-570t8.5-21.5T330-600h90q17 0 28.5 11.5T460-560v160q0 17-11.5 28.5T420-360m140-60h40v-120h-40zm280-20q-17 0-28.5-11.5T800-480q0-115-72.5-203T542-794l30 30q11 11 11 28t-11 28-28 11-28-11L387-837q-8-8-5-20t15-15q20-5 41-6.5t42-1.5q83 0 156 31.5T763-763t85.5 127T880-480q0 17-11.5 28.5T840-440M480-80q-83 0-156-31.5T197-197t-85.5-127T80-480q0-17 11.5-28.5T120-520t28.5 11.5T160-480q0 115 72.5 203T418-166l-30-30q-11-11-11-28t11-28 28-11 28 11l129 129q8 8 5 20t-15 15q-20 5-41 6.5T480-80" />
|
|
11
|
+
</svg>
|
|
12
|
+
);
|
|
13
|
+
export default SvgRotation3D;
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgRotationCcw = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={24}
|
|
6
|
-
height={24}
|
|
7
|
-
viewBox="0 -960 960 960"
|
|
8
|
-
{...props}
|
|
9
|
-
>
|
|
10
|
-
<g
|
|
11
|
-
style={{
|
|
12
|
-
display: "inline",
|
|
13
|
-
}}
|
|
14
|
-
>
|
|
15
|
-
<path
|
|
16
|
-
d="M480-880c-55.333 0-107.349 10.484-156.016 31.484s-90.953 49.547-126.953 85.547-64.547 78.287-85.547 126.953C90.484-587.349 80-535.333 80-480c0 11.333 3.818 20.849 11.484 28.516S108.667-440 120-440s20.849-3.818 28.516-11.484S160-468.667 160-480c0-76.667 24.167-144.302 72.5-202.969 48.333-58.666 110.136-95.682 185.469-111.015l-30 30c-7.334 7.333-10.938 16.635-10.938 27.968 0 11.334 3.604 20.714 10.938 28.047 7.333 7.334 16.713 10.938 28.047 10.938s20.635-3.604 27.968-10.938L572.97-837.03q8-8 5-20t-15-15c-13.334-3.334-26.938-5.485-40.938-6.485S494-880 480-880"
|
|
17
|
-
style={{
|
|
18
|
-
display: "inline",
|
|
19
|
-
}}
|
|
20
|
-
transform="matrix(-1 0 0 1 958.8 0)"
|
|
21
|
-
/>
|
|
22
|
-
<path
|
|
23
|
-
d="M478.79-80c55.334 0 107.351-10.484 156.02-31.484 48.667-21 90.955-49.547 126.956-85.547 36-36 64.548-78.287 85.549-126.953 21-48.667 31.485-100.683 31.485-156.016 0-11.333-3.818-20.849-11.485-28.516S850.133-520 838.8-520s-20.85 3.818-28.516 11.484c-7.667 7.667-11.485 17.183-11.485 28.516 0 76.667-24.167 144.302-72.502 202.969-48.335 58.666-110.138 95.682-185.474 111.015l30.001-30c7.334-7.333 10.938-16.635 10.938-27.968 0-11.334-3.604-20.714-10.938-28.047-7.333-7.334-16.714-10.938-28.047-10.938s-20.636 3.604-27.97 10.938L385.818-122.97q-8 8-5 20t15 15c13.334 3.334 26.939 5.485 40.94 6.485S464.788-80 478.79-80"
|
|
24
|
-
style={{
|
|
25
|
-
display: "inline",
|
|
26
|
-
strokeWidth: 1.00001,
|
|
27
|
-
}}
|
|
28
|
-
transform="matrix(-1 0 0 1 958.8 0)"
|
|
29
|
-
/>
|
|
30
|
-
</g>
|
|
31
|
-
</svg>
|
|
32
|
-
);
|
|
33
|
-
export default SvgRotationCcw;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgRotationCcw = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
viewBox="0 -960 960 960"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g
|
|
11
|
+
style={{
|
|
12
|
+
display: "inline",
|
|
13
|
+
}}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
d="M480-880c-55.333 0-107.349 10.484-156.016 31.484s-90.953 49.547-126.953 85.547-64.547 78.287-85.547 126.953C90.484-587.349 80-535.333 80-480c0 11.333 3.818 20.849 11.484 28.516S108.667-440 120-440s20.849-3.818 28.516-11.484S160-468.667 160-480c0-76.667 24.167-144.302 72.5-202.969 48.333-58.666 110.136-95.682 185.469-111.015l-30 30c-7.334 7.333-10.938 16.635-10.938 27.968 0 11.334 3.604 20.714 10.938 28.047 7.333 7.334 16.713 10.938 28.047 10.938s20.635-3.604 27.968-10.938L572.97-837.03q8-8 5-20t-15-15c-13.334-3.334-26.938-5.485-40.938-6.485S494-880 480-880"
|
|
17
|
+
style={{
|
|
18
|
+
display: "inline",
|
|
19
|
+
}}
|
|
20
|
+
transform="matrix(-1 0 0 1 958.8 0)"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
d="M478.79-80c55.334 0 107.351-10.484 156.02-31.484 48.667-21 90.955-49.547 126.956-85.547 36-36 64.548-78.287 85.549-126.953 21-48.667 31.485-100.683 31.485-156.016 0-11.333-3.818-20.849-11.485-28.516S850.133-520 838.8-520s-20.85 3.818-28.516 11.484c-7.667 7.667-11.485 17.183-11.485 28.516 0 76.667-24.167 144.302-72.502 202.969-48.335 58.666-110.138 95.682-185.474 111.015l30.001-30c7.334-7.333 10.938-16.635 10.938-27.968 0-11.334-3.604-20.714-10.938-28.047-7.333-7.334-16.714-10.938-28.047-10.938s-20.636 3.604-27.97 10.938L385.818-122.97q-8 8-5 20t15 15c13.334 3.334 26.939 5.485 40.94 6.485S464.788-80 478.79-80"
|
|
24
|
+
style={{
|
|
25
|
+
display: "inline",
|
|
26
|
+
strokeWidth: 1.00001,
|
|
27
|
+
}}
|
|
28
|
+
transform="matrix(-1 0 0 1 958.8 0)"
|
|
29
|
+
/>
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|
|
33
|
+
export default SvgRotationCcw;
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgRotationCcwA = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={24}
|
|
6
|
-
height={24}
|
|
7
|
-
viewBox="0 -960 960 960"
|
|
8
|
-
{...props}
|
|
9
|
-
>
|
|
10
|
-
<g
|
|
11
|
-
style={{
|
|
12
|
-
display: "inline",
|
|
13
|
-
}}
|
|
14
|
-
>
|
|
15
|
-
<path
|
|
16
|
-
d="M480-880c-55.333 0-107.349 10.484-156.016 31.484s-90.953 49.547-126.953 85.547-64.547 78.287-85.547 126.953C90.484-587.349 80-535.333 80-480c0 11.333 3.818 20.849 11.484 28.516S108.667-440 120-440s20.849-3.818 28.516-11.484S160-468.667 160-480c0-76.667 24.167-144.302 72.5-202.969 48.333-58.666 110.136-95.682 185.469-111.015l-30 30c-7.334 7.333-10.938 16.635-10.938 27.968 0 11.334 3.604 20.714 10.938 28.047 7.333 7.334 16.713 10.938 28.047 10.938s20.635-3.604 27.968-10.938L572.97-837.03q8-8 5-20t-15-15c-13.334-3.334-26.938-5.485-40.938-6.485S494-880 480-880"
|
|
17
|
-
style={{
|
|
18
|
-
display: "inline",
|
|
19
|
-
}}
|
|
20
|
-
transform="matrix(-1 0 0 1 958.8 0)"
|
|
21
|
-
/>
|
|
22
|
-
<path
|
|
23
|
-
d="M478.79-80c55.334 0 107.351-10.484 156.02-31.484 48.667-21 90.955-49.547 126.956-85.547 36-36 64.548-78.287 85.549-126.953 21-48.667 31.485-100.683 31.485-156.016 0-11.333-3.818-20.849-11.485-28.516S850.133-520 838.8-520s-20.85 3.818-28.516 11.484c-7.667 7.667-11.485 17.183-11.485 28.516 0 76.667-24.167 144.302-72.502 202.969-48.335 58.666-110.138 95.682-185.474 111.015l30.001-30c7.334-7.333 10.938-16.635 10.938-27.968 0-11.334-3.604-20.714-10.938-28.047-7.333-7.334-16.714-10.938-28.047-10.938s-20.636 3.604-27.97 10.938L385.818-122.97q-8 8-5 20t15 15c13.334 3.334 26.939 5.485 40.94 6.485S464.788-80 478.79-80"
|
|
24
|
-
style={{
|
|
25
|
-
display: "inline",
|
|
26
|
-
strokeWidth: 1.00001,
|
|
27
|
-
}}
|
|
28
|
-
transform="matrix(-1 0 0 1 958.8 0)"
|
|
29
|
-
/>
|
|
30
|
-
<path
|
|
31
|
-
d="M-596.92-296.031v-250.781q0-50.625 31.64-83.204Q-531.997-664-478.56-664q52.5 0 86.718 33.984 31.64 31.407 31.64 83.203v229.688l-44.53 21.094h-2.344v-165h-142.969v143.906l-44.531 21.094zm46.875-207.656h142.969v-43.125q0-31.407-16.875-50.86-20.86-24.14-54.61-24.14t-54.609 24.14q-16.875 19.453-16.875 50.86z"
|
|
32
|
-
aria-label="A"
|
|
33
|
-
style={{
|
|
34
|
-
fontSize: 480,
|
|
35
|
-
fontFamily: """,
|
|
36
|
-
textAlign: "center",
|
|
37
|
-
textAnchor: "middle",
|
|
38
|
-
strokeWidth: 40,
|
|
39
|
-
}}
|
|
40
|
-
transform="translate(958.8)"
|
|
41
|
-
/>
|
|
42
|
-
</g>
|
|
43
|
-
</svg>
|
|
44
|
-
);
|
|
45
|
-
export default SvgRotationCcwA;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgRotationCcwA = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
viewBox="0 -960 960 960"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g
|
|
11
|
+
style={{
|
|
12
|
+
display: "inline",
|
|
13
|
+
}}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
d="M480-880c-55.333 0-107.349 10.484-156.016 31.484s-90.953 49.547-126.953 85.547-64.547 78.287-85.547 126.953C90.484-587.349 80-535.333 80-480c0 11.333 3.818 20.849 11.484 28.516S108.667-440 120-440s20.849-3.818 28.516-11.484S160-468.667 160-480c0-76.667 24.167-144.302 72.5-202.969 48.333-58.666 110.136-95.682 185.469-111.015l-30 30c-7.334 7.333-10.938 16.635-10.938 27.968 0 11.334 3.604 20.714 10.938 28.047 7.333 7.334 16.713 10.938 28.047 10.938s20.635-3.604 27.968-10.938L572.97-837.03q8-8 5-20t-15-15c-13.334-3.334-26.938-5.485-40.938-6.485S494-880 480-880"
|
|
17
|
+
style={{
|
|
18
|
+
display: "inline",
|
|
19
|
+
}}
|
|
20
|
+
transform="matrix(-1 0 0 1 958.8 0)"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
d="M478.79-80c55.334 0 107.351-10.484 156.02-31.484 48.667-21 90.955-49.547 126.956-85.547 36-36 64.548-78.287 85.549-126.953 21-48.667 31.485-100.683 31.485-156.016 0-11.333-3.818-20.849-11.485-28.516S850.133-520 838.8-520s-20.85 3.818-28.516 11.484c-7.667 7.667-11.485 17.183-11.485 28.516 0 76.667-24.167 144.302-72.502 202.969-48.335 58.666-110.138 95.682-185.474 111.015l30.001-30c7.334-7.333 10.938-16.635 10.938-27.968 0-11.334-3.604-20.714-10.938-28.047-7.333-7.334-16.714-10.938-28.047-10.938s-20.636 3.604-27.97 10.938L385.818-122.97q-8 8-5 20t15 15c13.334 3.334 26.939 5.485 40.94 6.485S464.788-80 478.79-80"
|
|
24
|
+
style={{
|
|
25
|
+
display: "inline",
|
|
26
|
+
strokeWidth: 1.00001,
|
|
27
|
+
}}
|
|
28
|
+
transform="matrix(-1 0 0 1 958.8 0)"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
d="M-596.92-296.031v-250.781q0-50.625 31.64-83.204Q-531.997-664-478.56-664q52.5 0 86.718 33.984 31.64 31.407 31.64 83.203v229.688l-44.53 21.094h-2.344v-165h-142.969v143.906l-44.531 21.094zm46.875-207.656h142.969v-43.125q0-31.407-16.875-50.86-20.86-24.14-54.61-24.14t-54.609 24.14q-16.875 19.453-16.875 50.86z"
|
|
32
|
+
aria-label="A"
|
|
33
|
+
style={{
|
|
34
|
+
fontSize: 480,
|
|
35
|
+
fontFamily: """,
|
|
36
|
+
textAlign: "center",
|
|
37
|
+
textAnchor: "middle",
|
|
38
|
+
strokeWidth: 40,
|
|
39
|
+
}}
|
|
40
|
+
transform="translate(958.8)"
|
|
41
|
+
/>
|
|
42
|
+
</g>
|
|
43
|
+
</svg>
|
|
44
|
+
);
|
|
45
|
+
export default SvgRotationCcwA;
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import type { SVGProps } from "react";
|
|
2
|
-
const SvgRotationCcwB = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
-
<svg
|
|
4
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
-
width={24}
|
|
6
|
-
height={24}
|
|
7
|
-
viewBox="0 -960 960 960"
|
|
8
|
-
{...props}
|
|
9
|
-
>
|
|
10
|
-
<g
|
|
11
|
-
style={{
|
|
12
|
-
display: "inline",
|
|
13
|
-
}}
|
|
14
|
-
>
|
|
15
|
-
<path
|
|
16
|
-
d="M480-880c-55.333 0-107.349 10.484-156.016 31.484s-90.953 49.547-126.953 85.547-64.547 78.287-85.547 126.953C90.484-587.349 80-535.333 80-480c0 11.333 3.818 20.849 11.484 28.516S108.667-440 120-440s20.849-3.818 28.516-11.484S160-468.667 160-480c0-76.667 24.167-144.302 72.5-202.969 48.333-58.666 110.136-95.682 185.469-111.015l-30 30c-7.334 7.333-10.938 16.635-10.938 27.968 0 11.334 3.604 20.714 10.938 28.047 7.333 7.334 16.713 10.938 28.047 10.938s20.635-3.604 27.968-10.938L572.97-837.03q8-8 5-20t-15-15c-13.334-3.334-26.938-5.485-40.938-6.485S494-880 480-880"
|
|
17
|
-
style={{
|
|
18
|
-
display: "inline",
|
|
19
|
-
}}
|
|
20
|
-
transform="matrix(-1 0 0 1 958.8 0)"
|
|
21
|
-
/>
|
|
22
|
-
<path
|
|
23
|
-
d="M478.79-80c55.334 0 107.351-10.484 156.02-31.484 48.667-21 90.955-49.547 126.956-85.547 36-36 64.548-78.287 85.549-126.953 21-48.667 31.485-100.683 31.485-156.016 0-11.333-3.818-20.849-11.485-28.516S850.133-520 838.8-520s-20.85 3.818-28.516 11.484c-7.667 7.667-11.485 17.183-11.485 28.516 0 76.667-24.167 144.302-72.502 202.969-48.335 58.666-110.138 95.682-185.474 111.015l30.001-30c7.334-7.333 10.938-16.635 10.938-27.968 0-11.334-3.604-20.714-10.938-28.047-7.333-7.334-16.714-10.938-28.047-10.938s-20.636 3.604-27.97 10.938L385.818-122.97q-8 8-5 20t15 15c13.334 3.334 26.939 5.485 40.94 6.485S464.788-80 478.79-80"
|
|
24
|
-
style={{
|
|
25
|
-
display: "inline",
|
|
26
|
-
strokeWidth: 1.00001,
|
|
27
|
-
}}
|
|
28
|
-
transform="matrix(-1 0 0 1 958.8 0)"
|
|
29
|
-
/>
|
|
30
|
-
<path
|
|
31
|
-
d="M-545.358-347.594h66.797q35.391 0 56.25-22.265 15.235-16.172 15.235-42.657 0-27.421-16.172-46.171-17.578-21.563-55.313-21.563h-66.797zm0-174.843h66.797q23.438 0 37.735-15.235 12.656-13.594 12.656-35.39 0-17.813-15.234-32.11-13.594-11.953-35.157-11.953h-66.797zm-46.875 217.03v-342.187l24.844-11.718h88.828q39.61 0 65.86 21.562 31.172 25.313 31.172 64.922 0 40.312-35.625 67.031 11.484 4.922 22.734 14.766 34.219 31.172 34.219 77.344 0 46.406-30 76.171-32.11 32.11-88.36 32.11z"
|
|
32
|
-
aria-label="B"
|
|
33
|
-
style={{
|
|
34
|
-
fontSize: 480,
|
|
35
|
-
fontFamily: """,
|
|
36
|
-
textAlign: "center",
|
|
37
|
-
textAnchor: "middle",
|
|
38
|
-
strokeWidth: 40,
|
|
39
|
-
}}
|
|
40
|
-
transform="translate(958.8)"
|
|
41
|
-
/>
|
|
42
|
-
</g>
|
|
43
|
-
</svg>
|
|
44
|
-
);
|
|
45
|
-
export default SvgRotationCcwB;
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
const SvgRotationCcwB = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width={24}
|
|
6
|
+
height={24}
|
|
7
|
+
viewBox="0 -960 960 960"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g
|
|
11
|
+
style={{
|
|
12
|
+
display: "inline",
|
|
13
|
+
}}
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
d="M480-880c-55.333 0-107.349 10.484-156.016 31.484s-90.953 49.547-126.953 85.547-64.547 78.287-85.547 126.953C90.484-587.349 80-535.333 80-480c0 11.333 3.818 20.849 11.484 28.516S108.667-440 120-440s20.849-3.818 28.516-11.484S160-468.667 160-480c0-76.667 24.167-144.302 72.5-202.969 48.333-58.666 110.136-95.682 185.469-111.015l-30 30c-7.334 7.333-10.938 16.635-10.938 27.968 0 11.334 3.604 20.714 10.938 28.047 7.333 7.334 16.713 10.938 28.047 10.938s20.635-3.604 27.968-10.938L572.97-837.03q8-8 5-20t-15-15c-13.334-3.334-26.938-5.485-40.938-6.485S494-880 480-880"
|
|
17
|
+
style={{
|
|
18
|
+
display: "inline",
|
|
19
|
+
}}
|
|
20
|
+
transform="matrix(-1 0 0 1 958.8 0)"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
d="M478.79-80c55.334 0 107.351-10.484 156.02-31.484 48.667-21 90.955-49.547 126.956-85.547 36-36 64.548-78.287 85.549-126.953 21-48.667 31.485-100.683 31.485-156.016 0-11.333-3.818-20.849-11.485-28.516S850.133-520 838.8-520s-20.85 3.818-28.516 11.484c-7.667 7.667-11.485 17.183-11.485 28.516 0 76.667-24.167 144.302-72.502 202.969-48.335 58.666-110.138 95.682-185.474 111.015l30.001-30c7.334-7.333 10.938-16.635 10.938-27.968 0-11.334-3.604-20.714-10.938-28.047-7.333-7.334-16.714-10.938-28.047-10.938s-20.636 3.604-27.97 10.938L385.818-122.97q-8 8-5 20t15 15c13.334 3.334 26.939 5.485 40.94 6.485S464.788-80 478.79-80"
|
|
24
|
+
style={{
|
|
25
|
+
display: "inline",
|
|
26
|
+
strokeWidth: 1.00001,
|
|
27
|
+
}}
|
|
28
|
+
transform="matrix(-1 0 0 1 958.8 0)"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
d="M-545.358-347.594h66.797q35.391 0 56.25-22.265 15.235-16.172 15.235-42.657 0-27.421-16.172-46.171-17.578-21.563-55.313-21.563h-66.797zm0-174.843h66.797q23.438 0 37.735-15.235 12.656-13.594 12.656-35.39 0-17.813-15.234-32.11-13.594-11.953-35.157-11.953h-66.797zm-46.875 217.03v-342.187l24.844-11.718h88.828q39.61 0 65.86 21.562 31.172 25.313 31.172 64.922 0 40.312-35.625 67.031 11.484 4.922 22.734 14.766 34.219 31.172 34.219 77.344 0 46.406-30 76.171-32.11 32.11-88.36 32.11z"
|
|
32
|
+
aria-label="B"
|
|
33
|
+
style={{
|
|
34
|
+
fontSize: 480,
|
|
35
|
+
fontFamily: """,
|
|
36
|
+
textAlign: "center",
|
|
37
|
+
textAnchor: "middle",
|
|
38
|
+
strokeWidth: 40,
|
|
39
|
+
}}
|
|
40
|
+
transform="translate(958.8)"
|
|
41
|
+
/>
|
|
42
|
+
</g>
|
|
43
|
+
</svg>
|
|
44
|
+
);
|
|
45
|
+
export default SvgRotationCcwB;
|