@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.
Files changed (215) hide show
  1. package/LICENSE +58 -58
  2. package/additional-docs/AutoCoreTagContext.md +441 -441
  3. package/additional-docs/ButtonApiSpecs.md +48 -48
  4. package/additional-docs/GlobalEventEmitter.md +243 -243
  5. package/additional-docs/general_recommendations.md +22 -22
  6. package/additional-docs/react_performance_notes.md +94 -94
  7. package/dist/assets/svg/blockly_logo.svg +82 -82
  8. package/dist/assets/svg/distance.svg +40 -40
  9. package/dist/assets/svg/python_logo.svg +246 -246
  10. package/dist/assets/svg/rotation_ccw.svg +50 -50
  11. package/dist/assets/svg/rotation_ccw_a.svg +57 -57
  12. package/dist/assets/svg/rotation_ccw_b.svg +57 -57
  13. package/dist/assets/svg/rotation_ccw_c.svg +57 -57
  14. package/dist/assets/svg/rotation_cw.svg +49 -49
  15. package/dist/assets/svg/rotation_cw_a.svg +30 -30
  16. package/dist/assets/svg/rotation_cw_b.svg +30 -30
  17. package/dist/assets/svg/rotation_cw_c.svg +30 -30
  18. package/dist/assets/svg/speed.svg +39 -39
  19. package/dist/components/BlocklyEditor.css +93 -93
  20. package/dist/components/JogPanel.css +41 -41
  21. package/dist/components/ProgressBarWithValue.css +27 -27
  22. package/dist/components/ValueIndicator.css +31 -31
  23. package/dist/components/osk.css +123 -123
  24. package/dist/core/AutoCoreTagContext.d.ts.map +1 -1
  25. package/dist/core/AutoCoreTagContext.js +1 -1
  26. package/dist/hub/HubBase.d.ts +3 -3
  27. package/dist/hub/HubBase.d.ts.map +1 -1
  28. package/dist/hub/HubBase.js +1 -1
  29. package/package.json +104 -104
  30. package/readme.md +343 -343
  31. package/src/assets/BlocklyLogo.tsx +27 -27
  32. package/src/assets/Distance.tsx +18 -18
  33. package/src/assets/JogLong.tsx +13 -13
  34. package/src/assets/JogMedium.tsx +13 -13
  35. package/src/assets/JogShort.tsx +13 -13
  36. package/src/assets/PythonLogo.tsx +83 -83
  37. package/src/assets/Rotation3D.tsx +13 -13
  38. package/src/assets/RotationCcw.tsx +33 -33
  39. package/src/assets/RotationCcwA.tsx +45 -45
  40. package/src/assets/RotationCcwB.tsx +45 -45
  41. package/src/assets/RotationCcwC.tsx +45 -45
  42. package/src/assets/RotationCw.tsx +31 -31
  43. package/src/assets/RotationCwA.tsx +42 -42
  44. package/src/assets/RotationCwB.tsx +42 -42
  45. package/src/assets/RotationCwC.tsx +42 -42
  46. package/src/assets/Run.tsx +13 -13
  47. package/src/assets/Speed.tsx +18 -18
  48. package/src/assets/SpeedFast.tsx +13 -13
  49. package/src/assets/SpeedMedium.tsx +13 -13
  50. package/src/assets/SpeedNone.tsx +13 -13
  51. package/src/assets/SpeedSlow.tsx +13 -13
  52. package/src/assets/Walk.tsx +13 -13
  53. package/src/assets/index.ts +22 -22
  54. package/src/assets/svg/blockly_logo.svg +82 -82
  55. package/src/assets/svg/distance.svg +40 -40
  56. package/src/assets/svg/python_logo.svg +246 -246
  57. package/src/assets/svg/rotation_ccw.svg +50 -50
  58. package/src/assets/svg/rotation_ccw_a.svg +57 -57
  59. package/src/assets/svg/rotation_ccw_b.svg +57 -57
  60. package/src/assets/svg/rotation_ccw_c.svg +57 -57
  61. package/src/assets/svg/rotation_cw.svg +49 -49
  62. package/src/assets/svg/rotation_cw_a.svg +30 -30
  63. package/src/assets/svg/rotation_cw_b.svg +30 -30
  64. package/src/assets/svg/rotation_cw_c.svg +30 -30
  65. package/src/assets/svg/speed.svg +39 -39
  66. package/src/components/AutoCoreDevPanel.tsx +414 -414
  67. package/src/components/BlocklyEditor.css +93 -93
  68. package/src/components/BlocklyEditor.tsx +609 -609
  69. package/src/components/CodeEditor.tsx +155 -155
  70. package/src/components/FileList.tsx +390 -390
  71. package/src/components/FileSelect.tsx +128 -128
  72. package/src/components/FitText.tsx +35 -35
  73. package/src/components/Indicator.tsx +188 -188
  74. package/src/components/IndicatorButton.tsx +214 -214
  75. package/src/components/IndicatorRect.tsx +172 -172
  76. package/src/components/JogPanel.css +41 -41
  77. package/src/components/JogPanel.tsx +461 -461
  78. package/src/components/Lamp.tsx +243 -243
  79. package/src/components/Osk.tsx +192 -192
  80. package/src/components/OskDialog.tsx +164 -164
  81. package/src/components/ProgressBarWithValue.css +27 -27
  82. package/src/components/ProgressBarWithValue.tsx +48 -48
  83. package/src/components/TextInput.tsx +195 -195
  84. package/src/components/ToggleGroup.tsx +322 -322
  85. package/src/components/ValueDisplay.tsx +236 -236
  86. package/src/components/ValueIndicator.css +31 -31
  87. package/src/components/ValueIndicator.tsx +135 -135
  88. package/src/components/ValueInput.tsx +368 -368
  89. package/src/components/osk.css +123 -123
  90. package/src/core/ActionMode.ts +19 -19
  91. package/src/core/AutoCoreTagContext.tsx +625 -614
  92. package/src/core/AutoCoreTagTypes.ts +334 -334
  93. package/src/core/CoreStreamTypes.ts +512 -512
  94. package/src/core/EventEmitterContext.tsx +434 -434
  95. package/src/core/IndicatorButtonState.ts +34 -34
  96. package/src/core/IndicatorColor.ts +35 -35
  97. package/src/core/MaskPatterns.ts +87 -87
  98. package/src/core/NumerableTypes.ts +80 -80
  99. package/src/core/PositionContext.ts +59 -59
  100. package/src/core/UniqueId.ts +41 -41
  101. package/src/core/ValueSimulator.ts +166 -166
  102. package/src/core/hoc.tsx +65 -65
  103. package/src/hooks/adsHooks.tsx +287 -287
  104. package/src/hooks/commandHooks.tsx +300 -300
  105. package/src/hooks/index.ts +12 -12
  106. package/src/hooks/useAutoCoreTag.ts +103 -103
  107. package/src/hooks/useScaledValue.tsx +99 -99
  108. package/src/hub/CommandMessage.ts +89 -89
  109. package/src/hub/DebugPanel.ts +307 -307
  110. package/src/hub/HubBase.ts +249 -236
  111. package/src/hub/HubSimulate.ts +124 -124
  112. package/src/hub/HubTauri.ts +140 -140
  113. package/src/hub/HubWebSocket.ts +250 -250
  114. package/src/hub/debug.ts +211 -211
  115. package/src/hub/index.ts +81 -81
  116. package/src/themes/adc-dark/_extensions.scss +166 -166
  117. package/src/themes/adc-dark/_variables.scss +913 -913
  118. package/src/themes/adc-dark/blue/_fonts.scss +23 -23
  119. package/src/themes/adc-dark/blue/adc_theme.scss +31 -31
  120. package/src/themes/adc-dark/blue/theme.scss +14 -14
  121. package/src/themes/theme-base/_colors.scss +17 -17
  122. package/src/themes/theme-base/_common.scss +74 -74
  123. package/src/themes/theme-base/_components.scss +111 -111
  124. package/src/themes/theme-base/_mixins.scss +243 -243
  125. package/src/themes/theme-base/components/button/_button.scss +644 -644
  126. package/src/themes/theme-base/components/button/_speeddial.scss +91 -91
  127. package/src/themes/theme-base/components/button/_splitbutton.scss +358 -358
  128. package/src/themes/theme-base/components/data/_carousel.scss +39 -39
  129. package/src/themes/theme-base/components/data/_datascroller.scss +47 -47
  130. package/src/themes/theme-base/components/data/_datatable.scss +388 -388
  131. package/src/themes/theme-base/components/data/_dataview.scss +47 -47
  132. package/src/themes/theme-base/components/data/_filter.scss +137 -137
  133. package/src/themes/theme-base/components/data/_orderlist.scss +86 -86
  134. package/src/themes/theme-base/components/data/_organizationchart.scss +50 -50
  135. package/src/themes/theme-base/components/data/_paginator.scss +91 -91
  136. package/src/themes/theme-base/components/data/_picklist.scss +73 -73
  137. package/src/themes/theme-base/components/data/_timeline.scss +38 -38
  138. package/src/themes/theme-base/components/data/_tree.scss +184 -184
  139. package/src/themes/theme-base/components/data/_treetable.scss +431 -431
  140. package/src/themes/theme-base/components/file/_fileupload.scss +41 -41
  141. package/src/themes/theme-base/components/input/_autocomplete.scss +94 -94
  142. package/src/themes/theme-base/components/input/_calendar.scss +251 -251
  143. package/src/themes/theme-base/components/input/_cascadeselect.scss +107 -107
  144. package/src/themes/theme-base/components/input/_checkbox.scss +181 -181
  145. package/src/themes/theme-base/components/input/_chips.scss +102 -102
  146. package/src/themes/theme-base/components/input/_colorpicker.scss +17 -17
  147. package/src/themes/theme-base/components/input/_dropdown.scss +252 -252
  148. package/src/themes/theme-base/components/input/_editor.scss +122 -122
  149. package/src/themes/theme-base/components/input/_iconfield.scss +9 -9
  150. package/src/themes/theme-base/components/input/_inputgroup.scss +74 -74
  151. package/src/themes/theme-base/components/input/_inputicon.scss +14 -14
  152. package/src/themes/theme-base/components/input/_inputnumber.scss +4 -4
  153. package/src/themes/theme-base/components/input/_inputotp.scss +10 -10
  154. package/src/themes/theme-base/components/input/_inputswitch.scss +99 -99
  155. package/src/themes/theme-base/components/input/_inputtext.scss +101 -101
  156. package/src/themes/theme-base/components/input/_listbox.scss +138 -138
  157. package/src/themes/theme-base/components/input/_mention.scss +30 -30
  158. package/src/themes/theme-base/components/input/_multiselect.scss +278 -278
  159. package/src/themes/theme-base/components/input/_password.scss +32 -32
  160. package/src/themes/theme-base/components/input/_radiobutton.scss +169 -169
  161. package/src/themes/theme-base/components/input/_rating.scss +80 -80
  162. package/src/themes/theme-base/components/input/_selectbutton.scss +49 -49
  163. package/src/themes/theme-base/components/input/_slider.scss +49 -49
  164. package/src/themes/theme-base/components/input/_togglebutton.scss +99 -99
  165. package/src/themes/theme-base/components/input/_treeselect.scss +151 -151
  166. package/src/themes/theme-base/components/input/_tristatecheckbox.scss +46 -46
  167. package/src/themes/theme-base/components/menu/_breadcrumb.scss +42 -42
  168. package/src/themes/theme-base/components/menu/_contextmenu.scss +39 -39
  169. package/src/themes/theme-base/components/menu/_dock.scss +109 -109
  170. package/src/themes/theme-base/components/menu/_megamenu.scss +141 -141
  171. package/src/themes/theme-base/components/menu/_menu.scss +33 -33
  172. package/src/themes/theme-base/components/menu/_menubar.scss +216 -216
  173. package/src/themes/theme-base/components/menu/_panelmenu.scss +153 -153
  174. package/src/themes/theme-base/components/menu/_slidemenu.scss +60 -60
  175. package/src/themes/theme-base/components/menu/_steps.scss +57 -57
  176. package/src/themes/theme-base/components/menu/_tabmenu.scss +50 -50
  177. package/src/themes/theme-base/components/menu/_tieredmenu.scss +43 -43
  178. package/src/themes/theme-base/components/messages/_inlinemessage.scss +69 -69
  179. package/src/themes/theme-base/components/messages/_message.scss +107 -107
  180. package/src/themes/theme-base/components/messages/_toast.scss +100 -100
  181. package/src/themes/theme-base/components/misc/_avatar.scss +33 -33
  182. package/src/themes/theme-base/components/misc/_badge.scss +76 -76
  183. package/src/themes/theme-base/components/misc/_chip.scss +38 -38
  184. package/src/themes/theme-base/components/misc/_inplace.scss +17 -17
  185. package/src/themes/theme-base/components/misc/_metergroup.scss +80 -80
  186. package/src/themes/theme-base/components/misc/_progressbar.scss +17 -17
  187. package/src/themes/theme-base/components/misc/_scrolltop.scss +24 -24
  188. package/src/themes/theme-base/components/misc/_skeleton.scss +7 -7
  189. package/src/themes/theme-base/components/misc/_tag.scss +39 -39
  190. package/src/themes/theme-base/components/misc/_terminal.scss +12 -12
  191. package/src/themes/theme-base/components/multimedia/_galleria.scss +153 -153
  192. package/src/themes/theme-base/components/multimedia/_image.scss +53 -53
  193. package/src/themes/theme-base/components/overlay/_confirmpopup.scss +72 -72
  194. package/src/themes/theme-base/components/overlay/_dialog.scss +78 -78
  195. package/src/themes/theme-base/components/overlay/_overlaypanel.scss +64 -64
  196. package/src/themes/theme-base/components/overlay/_sidebar.scss +23 -23
  197. package/src/themes/theme-base/components/overlay/_tooltip.scss +33 -33
  198. package/src/themes/theme-base/components/panel/_accordion.scss +118 -118
  199. package/src/themes/theme-base/components/panel/_card.scss +30 -30
  200. package/src/themes/theme-base/components/panel/_divider.scss +30 -30
  201. package/src/themes/theme-base/components/panel/_fieldset.scss +47 -47
  202. package/src/themes/theme-base/components/panel/_panel.scss +47 -47
  203. package/src/themes/theme-base/components/panel/_scrollpanel.scss +10 -10
  204. package/src/themes/theme-base/components/panel/_splitter.scss +23 -23
  205. package/src/themes/theme-base/components/panel/_stepper.scss +136 -136
  206. package/src/themes/theme-base/components/panel/_tabview.scss +147 -147
  207. package/src/themes/theme-base/components/panel/_toolbar.scss +11 -11
  208. package/terser.config.cjs +25 -25
  209. package/todo.md +18 -18
  210. package/tools/build-themes.cjs +65 -65
  211. package/tools/copy-distribution-files.cjs +77 -77
  212. package/tools/minify.cjs +55 -55
  213. package/tsconfig.json +48 -48
  214. package/typedoc.json +12 -12
  215. package/.claude/settings.local.json +0 -7
@@ -1,45 +1,45 @@
1
- import type { SVGProps } from "react";
2
- const SvgRotationCcwC = (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-360.201-434.312v16.406q0 50.86-31.64 83.203-33.282 33.984-86.72 33.984-53.437 0-86.718-33.984-31.641-32.344-31.641-83.203v-128.906q0-50.86 31.64-83.204Q-531.997-664-478.56-664q55.312 0 86.718 33.984 31.64 33.985 31.64 78.516l-44.53 21.094h-2.344v-16.407q0-31.406-16.875-50.859-20.86-24.14-54.61-24.14t-54.609 24.14q-16.875 19.453-16.875 50.86v128.906q0 31.406 16.875 50.86 20.86 24.14 54.61 24.14t54.609-24.14q16.875-19.454 16.875-46.173l44.531-21.094z"
32
- aria-label="C"
33
- style={{
34
- fontSize: 480,
35
- fontFamily: "&quot",
36
- textAlign: "center",
37
- textAnchor: "middle",
38
- strokeWidth: 40,
39
- }}
40
- transform="translate(958.8)"
41
- />
42
- </g>
43
- </svg>
44
- );
45
- export default SvgRotationCcwC;
1
+ import type { SVGProps } from "react";
2
+ const SvgRotationCcwC = (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-360.201-434.312v16.406q0 50.86-31.64 83.203-33.282 33.984-86.72 33.984-53.437 0-86.718-33.984-31.641-32.344-31.641-83.203v-128.906q0-50.86 31.64-83.204Q-531.997-664-478.56-664q55.312 0 86.718 33.984 31.64 33.985 31.64 78.516l-44.53 21.094h-2.344v-16.407q0-31.406-16.875-50.859-20.86-24.14-54.61-24.14t-54.609 24.14q-16.875 19.453-16.875 50.86v128.906q0 31.406 16.875 50.86 20.86 24.14 54.61 24.14t54.609-24.14q16.875-19.454 16.875-46.173l44.531-21.094z"
32
+ aria-label="C"
33
+ style={{
34
+ fontSize: 480,
35
+ fontFamily: "&quot",
36
+ textAlign: "center",
37
+ textAnchor: "middle",
38
+ strokeWidth: 40,
39
+ }}
40
+ transform="translate(958.8)"
41
+ />
42
+ </g>
43
+ </svg>
44
+ );
45
+ export default SvgRotationCcwC;
@@ -1,31 +1,31 @@
1
- import type { SVGProps } from "react";
2
- const SvgRotationCw = (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
- />
21
- <path
22
- 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"
23
- style={{
24
- display: "inline",
25
- strokeWidth: 1.00001,
26
- }}
27
- />
28
- </g>
29
- </svg>
30
- );
31
- export default SvgRotationCw;
1
+ import type { SVGProps } from "react";
2
+ const SvgRotationCw = (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
+ />
21
+ <path
22
+ 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"
23
+ style={{
24
+ display: "inline",
25
+ strokeWidth: 1.00001,
26
+ }}
27
+ />
28
+ </g>
29
+ </svg>
30
+ );
31
+ export default SvgRotationCw;
@@ -1,42 +1,42 @@
1
- import type { SVGProps } from "react";
2
- const SvgRotationCwA = (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
- />
21
- <path
22
- 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"
23
- style={{
24
- display: "inline",
25
- strokeWidth: 1.00001,
26
- }}
27
- />
28
- <path
29
- d="M361.88-296.011v-250.782q0-50.625 31.64-83.203 33.28-33.984 86.718-33.984 52.5 0 86.72 33.984 31.64 31.407 31.64 83.203v229.688l-44.531 21.094h-2.344v-165H408.754v143.906l-44.531 21.094zm46.874-207.657h142.969v-43.125q0-31.406-16.875-50.859-20.86-24.14-54.61-24.14t-54.609 24.14q-16.875 19.453-16.875 50.86z"
30
- aria-label="A"
31
- style={{
32
- fontSize: 480,
33
- fontFamily: "&quot",
34
- textAlign: "center",
35
- textAnchor: "middle",
36
- strokeWidth: 40,
37
- }}
38
- />
39
- </g>
40
- </svg>
41
- );
42
- export default SvgRotationCwA;
1
+ import type { SVGProps } from "react";
2
+ const SvgRotationCwA = (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
+ />
21
+ <path
22
+ 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"
23
+ style={{
24
+ display: "inline",
25
+ strokeWidth: 1.00001,
26
+ }}
27
+ />
28
+ <path
29
+ d="M361.88-296.011v-250.782q0-50.625 31.64-83.203 33.28-33.984 86.718-33.984 52.5 0 86.72 33.984 31.64 31.407 31.64 83.203v229.688l-44.531 21.094h-2.344v-165H408.754v143.906l-44.531 21.094zm46.874-207.657h142.969v-43.125q0-31.406-16.875-50.859-20.86-24.14-54.61-24.14t-54.609 24.14q-16.875 19.453-16.875 50.86z"
30
+ aria-label="A"
31
+ style={{
32
+ fontSize: 480,
33
+ fontFamily: "&quot",
34
+ textAlign: "center",
35
+ textAnchor: "middle",
36
+ strokeWidth: 40,
37
+ }}
38
+ />
39
+ </g>
40
+ </svg>
41
+ );
42
+ export default SvgRotationCwA;
@@ -1,42 +1,42 @@
1
- import type { SVGProps } from "react";
2
- const SvgRotationCwB = (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
- />
21
- <path
22
- 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"
23
- style={{
24
- display: "inline",
25
- strokeWidth: 1.00001,
26
- }}
27
- />
28
- <path
29
- d="M413.442-347.574h66.796q35.391 0 56.25-22.265 15.235-16.172 15.235-42.657 0-27.422-16.172-46.172-17.578-21.562-55.313-21.562h-66.796zm0-174.844h66.796q23.438 0 37.735-15.234 12.656-13.594 12.656-35.39 0-17.813-15.234-32.11-13.594-11.953-35.157-11.953h-66.796zm-46.875 217.032v-342.188l24.843-11.719h88.828q39.61 0 65.86 21.563 31.172 25.312 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.343 0 46.407-30 76.172-32.11 32.11-88.36 32.11z"
30
- aria-label="B"
31
- style={{
32
- fontSize: 480,
33
- fontFamily: "&quot",
34
- textAlign: "center",
35
- textAnchor: "middle",
36
- strokeWidth: 40,
37
- }}
38
- />
39
- </g>
40
- </svg>
41
- );
42
- export default SvgRotationCwB;
1
+ import type { SVGProps } from "react";
2
+ const SvgRotationCwB = (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
+ />
21
+ <path
22
+ 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"
23
+ style={{
24
+ display: "inline",
25
+ strokeWidth: 1.00001,
26
+ }}
27
+ />
28
+ <path
29
+ d="M413.442-347.574h66.796q35.391 0 56.25-22.265 15.235-16.172 15.235-42.657 0-27.422-16.172-46.172-17.578-21.562-55.313-21.562h-66.796zm0-174.844h66.796q23.438 0 37.735-15.234 12.656-13.594 12.656-35.39 0-17.813-15.234-32.11-13.594-11.953-35.157-11.953h-66.796zm-46.875 217.032v-342.188l24.843-11.719h88.828q39.61 0 65.86 21.563 31.172 25.312 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.343 0 46.407-30 76.172-32.11 32.11-88.36 32.11z"
30
+ aria-label="B"
31
+ style={{
32
+ fontSize: 480,
33
+ fontFamily: "&quot",
34
+ textAlign: "center",
35
+ textAnchor: "middle",
36
+ strokeWidth: 40,
37
+ }}
38
+ />
39
+ </g>
40
+ </svg>
41
+ );
42
+ export default SvgRotationCwB;
@@ -1,42 +1,42 @@
1
- import type { SVGProps } from "react";
2
- const SvgRotationCwC = (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
- />
21
- <path
22
- 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"
23
- style={{
24
- display: "inline",
25
- strokeWidth: 1.00001,
26
- }}
27
- />
28
- <path
29
- d="M598.598-434.293v16.407q0 50.86-31.64 83.203-33.282 33.984-86.72 33.984-53.437 0-86.718-33.984-31.64-32.344-31.64-83.203v-128.907q0-50.859 31.64-83.203 33.28-33.984 86.718-33.984 55.313 0 86.72 33.984 31.64 33.985 31.64 78.516l-44.531 21.094h-2.344v-16.407q0-31.406-16.875-50.859-20.86-24.14-54.61-24.14t-54.609 24.14q-16.875 19.453-16.875 50.86v128.906q0 31.406 16.875 50.86 20.86 24.14 54.61 24.14t54.609-24.14q16.875-19.454 16.875-46.173l44.531-21.094z"
30
- aria-label="C"
31
- style={{
32
- fontSize: 480,
33
- fontFamily: "&quot",
34
- textAlign: "center",
35
- textAnchor: "middle",
36
- strokeWidth: 40,
37
- }}
38
- />
39
- </g>
40
- </svg>
41
- );
42
- export default SvgRotationCwC;
1
+ import type { SVGProps } from "react";
2
+ const SvgRotationCwC = (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
+ />
21
+ <path
22
+ 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"
23
+ style={{
24
+ display: "inline",
25
+ strokeWidth: 1.00001,
26
+ }}
27
+ />
28
+ <path
29
+ d="M598.598-434.293v16.407q0 50.86-31.64 83.203-33.282 33.984-86.72 33.984-53.437 0-86.718-33.984-31.64-32.344-31.64-83.203v-128.907q0-50.859 31.64-83.203 33.28-33.984 86.718-33.984 55.313 0 86.72 33.984 31.64 33.985 31.64 78.516l-44.531 21.094h-2.344v-16.407q0-31.406-16.875-50.859-20.86-24.14-54.61-24.14t-54.609 24.14q-16.875 19.453-16.875 50.86v128.906q0 31.406 16.875 50.86 20.86 24.14 54.61 24.14t54.609-24.14q16.875-19.454 16.875-46.173l44.531-21.094z"
30
+ aria-label="C"
31
+ style={{
32
+ fontSize: 480,
33
+ fontFamily: "&quot",
34
+ textAlign: "center",
35
+ textAnchor: "middle",
36
+ strokeWidth: 40,
37
+ }}
38
+ />
39
+ </g>
40
+ </svg>
41
+ );
42
+ export default SvgRotationCwC;
@@ -1,13 +1,13 @@
1
- import type { SVGProps } from "react";
2
- const SvgRun = (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="M520-80v-200l-84-80-31 138q-4 16-17.5 24.5T358-192l-198-40q-17-3-26-17t-6-31 17-26.5 31-5.5l152 32 64-324-72 28v96q0 17-11.5 28.5T280-440t-28.5-11.5T240-480v-122q0-12 6.5-21.5T264-638l134-58q35-15 51.5-19.5T480-720q21 0 39 11t29 29l40 64q21 34 54.5 59t77.5 33q17 3 28.5 15t11.5 29-11.5 28-27.5 9q-54-8-101-33.5T540-540l-24 120 72 68q6 6 9 13.5t3 15.5v243q0 17-11.5 28.5T560-40t-28.5-11.5T520-80m20-660q-33 0-56.5-23.5T460-820t23.5-56.5T540-900t56.5 23.5T620-820t-23.5 56.5T540-740" />
11
- </svg>
12
- );
13
- export default SvgRun;
1
+ import type { SVGProps } from "react";
2
+ const SvgRun = (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="M520-80v-200l-84-80-31 138q-4 16-17.5 24.5T358-192l-198-40q-17-3-26-17t-6-31 17-26.5 31-5.5l152 32 64-324-72 28v96q0 17-11.5 28.5T280-440t-28.5-11.5T240-480v-122q0-12 6.5-21.5T264-638l134-58q35-15 51.5-19.5T480-720q21 0 39 11t29 29l40 64q21 34 54.5 59t77.5 33q17 3 28.5 15t11.5 29-11.5 28-27.5 9q-54-8-101-33.5T540-540l-24 120 72 68q6 6 9 13.5t3 15.5v243q0 17-11.5 28.5T560-40t-28.5-11.5T520-80m20-660q-33 0-56.5-23.5T460-820t23.5-56.5T540-900t56.5 23.5T620-820t-23.5 56.5T540-740" />
11
+ </svg>
12
+ );
13
+ export default SvgRun;
@@ -1,18 +1,18 @@
1
- import type { SVGProps } from "react";
2
- const SvgSpeed = (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="M406.338-313.68q28.512 28.512 73.656 27.918t66.528-32.67l200.772-300.564q10.692-16.632-2.97-30.294t-30.294-2.97L413.466-451.488q-32.076 21.384-33.858 65.34t26.73 72.468m73.656-546.48q42.768 0 84.348 7.128t80.784 22.572q19.008 7.128 40.392 26.73t11.88 37.422-42.768 23.76-53.46-1.188q-29.7-10.692-59.994-16.038t-61.182-5.346q-158.004 0-269.082 111.078T99.834-384.96q0 49.896 13.662 98.604t38.61 91.476h655.776q27.324-45.144 39.798-93.852t12.474-100.98q0-30.888-5.346-60.588t-16.038-58.212q-7.128-20.196-2.376-39.204t21.384-32.076q15.444-11.88 33.858-7.128t25.542 21.384q17.82 41.58 27.324 84.942t10.692 88.506q1.188 67.716-15.444 129.492t-48.708 117.612q-13.068 21.384-35.64 33.264t-47.52 11.88H152.106q-24.948 0-47.52-11.88t-35.64-33.264q-30.888-53.46-47.52-113.454T4.794-384.96q0-98.604 37.422-184.734T144.384-720.57t151.47-102.168 184.14-37.422m8.316 371.844"
12
- style={{
13
- strokeWidth: 1.188,
14
- }}
15
- />
16
- </svg>
17
- );
18
- export default SvgSpeed;
1
+ import type { SVGProps } from "react";
2
+ const SvgSpeed = (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="M406.338-313.68q28.512 28.512 73.656 27.918t66.528-32.67l200.772-300.564q10.692-16.632-2.97-30.294t-30.294-2.97L413.466-451.488q-32.076 21.384-33.858 65.34t26.73 72.468m73.656-546.48q42.768 0 84.348 7.128t80.784 22.572q19.008 7.128 40.392 26.73t11.88 37.422-42.768 23.76-53.46-1.188q-29.7-10.692-59.994-16.038t-61.182-5.346q-158.004 0-269.082 111.078T99.834-384.96q0 49.896 13.662 98.604t38.61 91.476h655.776q27.324-45.144 39.798-93.852t12.474-100.98q0-30.888-5.346-60.588t-16.038-58.212q-7.128-20.196-2.376-39.204t21.384-32.076q15.444-11.88 33.858-7.128t25.542 21.384q17.82 41.58 27.324 84.942t10.692 88.506q1.188 67.716-15.444 129.492t-48.708 117.612q-13.068 21.384-35.64 33.264t-47.52 11.88H152.106q-24.948 0-47.52-11.88t-35.64-33.264q-30.888-53.46-47.52-113.454T4.794-384.96q0-98.604 37.422-184.734T144.384-720.57t151.47-102.168 184.14-37.422m8.316 371.844"
12
+ style={{
13
+ strokeWidth: 1.188,
14
+ }}
15
+ />
16
+ </svg>
17
+ );
18
+ export default SvgSpeed;
@@ -1,13 +1,13 @@
1
- import type { SVGProps } from "react";
2
- const SvgSpeedFast = (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="M177-80q-18 0-29.5-12T136-120q0-8 3-15t9-13l664-664q6-6 13-9t15-3q16 0 28 11.5t12 29.5v643q0 25-17.5 42.5T820-80z" />
11
- </svg>
12
- );
13
- export default SvgSpeedFast;
1
+ import type { SVGProps } from "react";
2
+ const SvgSpeedFast = (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="M177-80q-18 0-29.5-12T136-120q0-8 3-15t9-13l664-664q6-6 13-9t15-3q16 0 28 11.5t12 29.5v643q0 25-17.5 42.5T820-80z" />
11
+ </svg>
12
+ );
13
+ export default SvgSpeedFast;
@@ -1,13 +1,13 @@
1
- import type { SVGProps } from "react";
2
- const SvgSpeedMedium = (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="M177-80q-18 0-29.5-12T136-120q0-8 3-15t9-13l664-664q6-6 13-9t15-3q16 0 28 11.5t12 29.5v643q0 25-17.5 42.5T820-80zm423-80h200v-526L600-486z" />
11
- </svg>
12
- );
13
- export default SvgSpeedMedium;
1
+ import type { SVGProps } from "react";
2
+ const SvgSpeedMedium = (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="M177-80q-18 0-29.5-12T136-120q0-8 3-15t9-13l664-664q6-6 13-9t15-3q16 0 28 11.5t12 29.5v643q0 25-17.5 42.5T820-80zm423-80h200v-526L600-486z" />
11
+ </svg>
12
+ );
13
+ export default SvgSpeedMedium;
@@ -1,13 +1,13 @@
1
- import type { SVGProps } from "react";
2
- const SvgSpeedNone = (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="M177-80q-27 0-37.5-24.5T148-148l664-664q19-19 43.5-8.5T880-783v643q0 25-17.5 42.5T820-80zm96-80h527v-526z" />
11
- </svg>
12
- );
13
- export default SvgSpeedNone;
1
+ import type { SVGProps } from "react";
2
+ const SvgSpeedNone = (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="M177-80q-27 0-37.5-24.5T148-148l664-664q19-19 43.5-8.5T880-783v643q0 25-17.5 42.5T820-80zm96-80h527v-526z" />
11
+ </svg>
12
+ );
13
+ export default SvgSpeedNone;
@@ -1,13 +1,13 @@
1
- import type { SVGProps } from "react";
2
- const SvgSpeedSlow = (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="M177-80q-18 0-29.5-12T136-120q0-8 3-15t9-13l664-664q6-6 13-9t15-3q16 0 28 11.5t12 29.5v643q0 25-17.5 42.5T820-80zm223-80h400v-526L400-286z" />
11
- </svg>
12
- );
13
- export default SvgSpeedSlow;
1
+ import type { SVGProps } from "react";
2
+ const SvgSpeedSlow = (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="M177-80q-18 0-29.5-12T136-120q0-8 3-15t9-13l664-664q6-6 13-9t15-3q16 0 28 11.5t12 29.5v643q0 25-17.5 42.5T820-80zm223-80h400v-526L400-286z" />
11
+ </svg>
12
+ );
13
+ export default SvgSpeedSlow;
@@ -1,13 +1,13 @@
1
- import type { SVGProps } from "react";
2
- const SvgWalk = (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="M436-364 371-72q-3 14-14.5 23T330-40q-20 0-32-15t-8-34l102-515-72 28v96q0 17-11.5 28.5T280-440t-28.5-11.5T240-480v-122q0-12 6.5-21.5T264-638l178-76q14-6 29.5-7t29.5 4 26.5 14 20.5 23l40 64q13 20 30.5 38t39.5 31q14 8 31 14.5t34 9.5q16 3 26.5 14.5T760-480t-12 28-29 9q-56-8-100.5-35T541-543l-25 123 72 68q6 6 9 13.5t3 15.5v243q0 17-11.5 28.5T560-40t-28.5-11.5T520-80v-220zm104-376q-33 0-56.5-23.5T460-820t23.5-56.5T540-900t56.5 23.5T620-820t-23.5 56.5T540-740" />
11
- </svg>
12
- );
13
- export default SvgWalk;
1
+ import type { SVGProps } from "react";
2
+ const SvgWalk = (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="M436-364 371-72q-3 14-14.5 23T330-40q-20 0-32-15t-8-34l102-515-72 28v96q0 17-11.5 28.5T280-440t-28.5-11.5T240-480v-122q0-12 6.5-21.5T264-638l178-76q14-6 29.5-7t29.5 4 26.5 14 20.5 23l40 64q13 20 30.5 38t39.5 31q14 8 31 14.5t34 9.5q16 3 26.5 14.5T760-480t-12 28-29 9q-56-8-100.5-35T541-543l-25 123 72 68q6 6 9 13.5t3 15.5v243q0 17-11.5 28.5T560-40t-28.5-11.5T520-80v-220zm104-376q-33 0-56.5-23.5T460-820t23.5-56.5T540-900t56.5 23.5T620-820t-23.5 56.5T540-740" />
11
+ </svg>
12
+ );
13
+ export default SvgWalk;