@blockdia/scratch-blocks 0.1.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/.nvmrc +1 -0
- package/LICENSE +674 -0
- package/README.md +57 -0
- package/TRADEMARK +1 -0
- package/blockly_compressed_horizontal.js +2268 -0
- package/blockly_compressed_vertical.js +2296 -0
- package/blockly_uncompressed_horizontal.js +1212 -0
- package/blockly_uncompressed_vertical.js +1212 -0
- package/blocks_common/colour.js +61 -0
- package/blocks_common/math.js +159 -0
- package/blocks_common/matrix.js +54 -0
- package/blocks_common/note.js +58 -0
- package/blocks_common/text.js +57 -0
- package/blocks_compressed.js +37 -0
- package/blocks_compressed_horizontal.js +68 -0
- package/blocks_compressed_vertical.js +216 -0
- package/blocks_horizontal/control.js +212 -0
- package/blocks_horizontal/default_toolbox.js +139 -0
- package/blocks_horizontal/event.js +190 -0
- package/blocks_horizontal/wedo.js +325 -0
- package/blocks_vertical/control.js +532 -0
- package/blocks_vertical/data.js +666 -0
- package/blocks_vertical/default_toolbox.js +571 -0
- package/blocks_vertical/event.js +329 -0
- package/blocks_vertical/extensions.js +294 -0
- package/blocks_vertical/looks.js +591 -0
- package/blocks_vertical/motion.js +587 -0
- package/blocks_vertical/operators.js +470 -0
- package/blocks_vertical/procedures.js +1051 -0
- package/blocks_vertical/sensing.js +555 -0
- package/blocks_vertical/sound.js +246 -0
- package/blocks_vertical/vertical_extensions.js +289 -0
- package/build/gen_blocks.js +1 -0
- package/build/test_expect.js +1 -0
- package/build/test_input.js +1 -0
- package/build.py +647 -0
- package/cleanup.sh +101 -0
- package/core/block.js +1837 -0
- package/core/block_animations.js +107 -0
- package/core/block_drag_surface.js +299 -0
- package/core/block_dragger.js +424 -0
- package/core/block_events.js +531 -0
- package/core/block_render_svg_horizontal.js +892 -0
- package/core/block_render_svg_vertical.js +1734 -0
- package/core/block_svg.js +1355 -0
- package/core/blockly.js +620 -0
- package/core/blocks.js +37 -0
- package/core/bubble.js +664 -0
- package/core/bubble_dragger.js +285 -0
- package/core/colours.js +177 -0
- package/core/comment.js +293 -0
- package/core/comment_events.js +539 -0
- package/core/connection.js +776 -0
- package/core/connection_db.js +300 -0
- package/core/constants.js +408 -0
- package/core/contextmenu.js +534 -0
- package/core/css.js +1354 -0
- package/core/data_category.js +490 -0
- package/core/dragged_connection_manager.js +260 -0
- package/core/dropdowndiv.js +408 -0
- package/core/events.js +429 -0
- package/core/events_abstract.js +113 -0
- package/core/extensions.js +450 -0
- package/core/field.js +810 -0
- package/core/field_angle.js +410 -0
- package/core/field_checkbox.js +133 -0
- package/core/field_colour.js +253 -0
- package/core/field_colour_slider.js +387 -0
- package/core/field_date.js +353 -0
- package/core/field_dropdown.js +447 -0
- package/core/field_iconmenu.js +309 -0
- package/core/field_image.js +200 -0
- package/core/field_label.js +136 -0
- package/core/field_label_serializable.js +125 -0
- package/core/field_matrix.js +566 -0
- package/core/field_note.js +850 -0
- package/core/field_number.js +366 -0
- package/core/field_numberdropdown.js +77 -0
- package/core/field_textdropdown.js +164 -0
- package/core/field_textinput.js +675 -0
- package/core/field_textinput_removable.js +105 -0
- package/core/field_variable.js +385 -0
- package/core/field_variable_getter.js +185 -0
- package/core/field_vertical_separator.js +161 -0
- package/core/flyout_base.js +935 -0
- package/core/flyout_button.js +324 -0
- package/core/flyout_dragger.js +83 -0
- package/core/flyout_extension_category_header.js +159 -0
- package/core/flyout_horizontal.js +475 -0
- package/core/flyout_vertical.js +770 -0
- package/core/generator.js +426 -0
- package/core/gesture.js +1010 -0
- package/core/grid.js +227 -0
- package/core/icon.js +205 -0
- package/core/inject.js +496 -0
- package/core/input.js +285 -0
- package/core/insertion_marker_manager.js +678 -0
- package/core/intersection_observer.js +102 -0
- package/core/msg.js +62 -0
- package/core/mutator.js +426 -0
- package/core/names.js +198 -0
- package/core/options.js +244 -0
- package/core/procedures.js +739 -0
- package/core/rendered_connection.js +417 -0
- package/core/scratch_block_comment.js +646 -0
- package/core/scratch_blocks_utils.js +246 -0
- package/core/scratch_bubble.js +699 -0
- package/core/scratch_events.js +131 -0
- package/core/scratch_msgs.js +85 -0
- package/core/scrollbar.js +875 -0
- package/core/toolbox.js +803 -0
- package/core/tooltip.js +337 -0
- package/core/touch.js +226 -0
- package/core/trashcan.js +343 -0
- package/core/ui_events.js +91 -0
- package/core/ui_menu_utils.js +68 -0
- package/core/utils.js +825 -0
- package/core/variable_events.js +259 -0
- package/core/variable_map.js +415 -0
- package/core/variable_model.js +116 -0
- package/core/variables.js +674 -0
- package/core/warning.js +199 -0
- package/core/widgetdiv.js +344 -0
- package/core/workspace.js +673 -0
- package/core/workspace_audio.js +170 -0
- package/core/workspace_comment.js +426 -0
- package/core/workspace_comment_render_svg.js +706 -0
- package/core/workspace_comment_svg.js +609 -0
- package/core/workspace_drag_surface_svg.js +195 -0
- package/core/workspace_dragger.js +132 -0
- package/core/workspace_svg.js +2382 -0
- package/core/xml.js +930 -0
- package/core/zoom_controls.js +301 -0
- package/dist/horizontal.js +222 -0
- package/dist/vertical.js +222 -0
- package/dist/web/horizontal.js +232 -0
- package/dist/web/vertical.js +232 -0
- package/i18n/common.py +234 -0
- package/i18n/create_messages.py +162 -0
- package/i18n/create_scratch_msgs.js +69 -0
- package/i18n/dedup_json.py +73 -0
- package/i18n/js_to_json.js +46 -0
- package/i18n/js_to_json.py +136 -0
- package/i18n/json_to_js.js +52 -0
- package/i18n/json_to_js.py +185 -0
- package/i18n/sync_tx_translations.js +111 -0
- package/i18n/test_scratch_msgs.js +87 -0
- package/i18n/tests.py +47 -0
- package/i18n/xliff_to_json.py +232 -0
- package/local_build.sh +70 -0
- package/media/click.mp3 +0 -0
- package/media/click.ogg +0 -0
- package/media/click.wav +0 -0
- package/media/comment-arrow-down.svg +10 -0
- package/media/comment-arrow-up.svg +10 -0
- package/media/delete-x.svg +10 -0
- package/media/delete.mp3 +0 -0
- package/media/delete.ogg +0 -0
- package/media/delete.wav +0 -0
- package/media/dropdown-arrow-dark.svg +1 -0
- package/media/dropdown-arrow.svg +1 -0
- package/media/extensions/microbit-block-icon.svg +130 -0
- package/media/extensions/music-block-icon.svg +17 -0
- package/media/extensions/pen-block-icon.svg +19 -0
- package/media/extensions/wedo2-block-icon.svg +36 -0
- package/media/eyedropper.svg +22 -0
- package/media/green-flag.svg +17 -0
- package/media/handclosed.cur +0 -0
- package/media/handdelete.cur +0 -0
- package/media/handopen.cur +0 -0
- package/media/icons/arrow.svg +12 -0
- package/media/icons/arrow_button.svg +1 -0
- package/media/icons/control_forever.svg +1 -0
- package/media/icons/control_repeat.svg +1 -0
- package/media/icons/control_stop.svg +1 -0
- package/media/icons/control_wait.svg +1 -0
- package/media/icons/event_broadcast_blue.svg +1 -0
- package/media/icons/event_broadcast_coral.svg +1 -0
- package/media/icons/event_broadcast_green.svg +1 -0
- package/media/icons/event_broadcast_magenta.svg +1 -0
- package/media/icons/event_broadcast_orange.svg +1 -0
- package/media/icons/event_broadcast_purple.svg +1 -0
- package/media/icons/event_when-broadcast-received_blue.svg +1 -0
- package/media/icons/event_when-broadcast-received_coral.svg +1 -0
- package/media/icons/event_when-broadcast-received_green.svg +1 -0
- package/media/icons/event_when-broadcast-received_magenta.svg +1 -0
- package/media/icons/event_when-broadcast-received_orange.svg +1 -0
- package/media/icons/event_when-broadcast-received_purple.svg +1 -0
- package/media/icons/event_whenflagclicked.svg +1 -0
- package/media/icons/remove.svg +19 -0
- package/media/icons/set-led_blue.svg +1 -0
- package/media/icons/set-led_coral.svg +1 -0
- package/media/icons/set-led_green.svg +1 -0
- package/media/icons/set-led_magenta.svg +1 -0
- package/media/icons/set-led_mystery.svg +1 -0
- package/media/icons/set-led_orange.svg +1 -0
- package/media/icons/set-led_purple.svg +1 -0
- package/media/icons/set-led_white.svg +1 -0
- package/media/icons/set-led_yellow.svg +1 -0
- package/media/icons/wedo_motor-clockwise.svg +1 -0
- package/media/icons/wedo_motor-counterclockwise.svg +1 -0
- package/media/icons/wedo_motor-speed_fast.svg +1 -0
- package/media/icons/wedo_motor-speed_med.svg +1 -0
- package/media/icons/wedo_motor-speed_slow.svg +1 -0
- package/media/icons/wedo_when-distance_close.svg +1 -0
- package/media/icons/wedo_when-tilt-backward.svg +1 -0
- package/media/icons/wedo_when-tilt-forward.svg +1 -0
- package/media/icons/wedo_when-tilt-left.svg +1 -0
- package/media/icons/wedo_when-tilt-right.svg +1 -0
- package/media/icons/wedo_when-tilt.svg +1 -0
- package/media/repeat.svg +18 -0
- package/media/rotate-left.svg +1 -0
- package/media/rotate-right.svg +1 -0
- package/media/sprites.png +0 -0
- package/media/status-not-ready.svg +13 -0
- package/media/status-ready.svg +13 -0
- package/media/zoom-in.svg +1 -0
- package/media/zoom-out.svg +1 -0
- package/media/zoom-reset.svg +1 -0
- package/msg/js/en.js +290 -0
- package/msg/json/en.json +285 -0
- package/msg/messages.js +359 -0
- package/msg/scratch_msgs.js +22969 -0
- package/package.json +60 -0
- package/pull_from_blockly.sh +151 -0
- package/renovate.json5 +15 -0
- package/shim/blockly_compressed_horizontal-blocks_compressed.js +1 -0
- package/shim/blockly_compressed_horizontal.Blockly.js +1 -0
- package/shim/blockly_compressed_horizontal.goog.js +1 -0
- package/shim/blockly_compressed_horizontal.js +1 -0
- package/shim/blockly_compressed_vertical-blocks_compressed.js +1 -0
- package/shim/blockly_compressed_vertical.Blockly.js +1 -0
- package/shim/blockly_compressed_vertical.goog.js +1 -0
- package/shim/blockly_compressed_vertical.js +1 -0
- package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +1 -0
- package/shim/blocks_compressed_horizontal.js +1 -0
- package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +1 -0
- package/shim/blocks_compressed_vertical.js +1 -0
- package/shim/gh-pages.js +1 -0
- package/shim/horizontal.js +1 -0
- package/shim/index.js +17 -0
- package/shim/vertical.js +1 -0
- package/universal-python.js +82 -0
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg width="8px" height="10px" viewBox="0 0 8 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
|
|
4
|
+
<title>arrow</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs></defs>
|
|
7
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="rotate(90, 4, 5)">
|
|
8
|
+
<g id="arrow" transform="translate(-4.000000, -3.000000)" fill="#4C97FF">
|
|
9
|
+
<path d="M8.01891083,6.68223055 L3.50991601,7.43372969 C3.24679131,7.4775838 3.01891083,7.73942151 3.01891083,8.01556388 C3.01891083,8.28363029 3.23874134,8.5522023 3.50991601,8.59739808 L8.01891083,9.34889722 L8.01891083,11.0185337 C8.01891083,11.5625276 8.38326686,11.7520032 8.83272279,11.4268847 L12.6410176,8.67211587 C13.0981638,8.34143455 13.0957223,7.81470518 12.6527411,7.48320806 L8.82099936,4.61579253 C8.37557664,4.28246838 8.01891083,4.46194948 8.01891083,5.01259402 L8.01891083,6.68223055 Z" transform="translate(8.001673, 8.017237) rotate(-90.000000) translate(-8.001673, -8.017237) "></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" enable-background="new 0 0 32 32"><style>.st2{fill:#fff}</style><g id="Tutorials_x2F_Navigation_x2F_Next"><path d="M22.6 16.3zM16.2 19l-5.6-.8a2.5 2.5 0 0 1-2.1-2.4v-.3c.2-1.1 1-1.9 2-2l5.6-.8v-1.1c0-.7.4-1.3 1-1.6.6-.3 1.3-.1 1.8.4l4.3 4.3c.3.3.5.7.5 1.2 0 .4-.2.9-.5 1.2L19 21.4c-.5.5-1.2.6-1.8.3-.6-.3-1-.9-1-1.5V19z" fill="none" stroke="#000" stroke-opacity=".1"/><defs><filter id="Adobe_OpacityMaskFilter" filterUnits="userSpaceOnUse" x="6" y="6" width="20" height="20"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></defs><mask maskUnits="userSpaceOnUse" x="6" y="6" width="20" height="20" id="mask-2_1_"><g filter="url(#Adobe_OpacityMaskFilter)"><path id="path-1_1_" class="st2" d="M23 16.7L18.7 21c-.4.3-.9.4-1.3.2s-.7-.6-.7-1.1v-1.6l-6-.8c-1-.1-1.7-.9-1.7-1.9v-.2c.1-.9.8-1.5 1.6-1.6l6-.9v-1.6c0-.5.3-.9.7-1.1.4-.2.9-.1 1.3.3L23 15c.2.2.3.5.3.8l-.3.9z"/></g></mask><g id="Color_x2F_White" mask="url(#mask-2_1_)"><path class="st2" d="M6 6h20v20H6z" id="Color"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>control_forever</title><path d="M20.09,35.49c-0.41,0-.83,0-1.24,0a13.9,13.9,0,0,1-1.74-.25,8.48,8.48,0,0,1-1-.25l-0.53-.15A14.87,14.87,0,0,1,10,31.49,14.63,14.63,0,0,1,6.75,27,16.82,16.82,0,0,1,6,24.89c-0.15-.64-0.27-1.2-0.33-1.7a6.67,6.67,0,0,1-.08-0.82V22.17l0-.33A1.82,1.82,0,0,1,7.26,19.9H7.37a1.8,1.8,0,0,1,1.78,1.48s0,0.14.06,0.35c0,0,0,.13,0,0.25a4,4,0,0,0,.12.53c0.09,0.33.22,0.73,0.39,1.18a11.2,11.2,0,0,0,.68,1.4A10,10,0,0,0,13,27.93a9.57,9.57,0,0,0,3.89,1.74h0l0.42,0.06a4.75,4.75,0,0,0,.61.08l0.68,0H19a9.64,9.64,0,0,0,2-.3A9,9,0,0,0,24.15,28c0.2-.16.39-0.31,0.57-0.48l-2-2a1.43,1.43,0,0,1,1-2.44h8.84A1.43,1.43,0,0,1,34,24.52v8.83a1.44,1.44,0,0,1-1.44,1.43,1.41,1.41,0,0,1-1-.42l-2.14-2.15a16.17,16.17,0,0,1-1.7,1.17,15.49,15.49,0,0,1-5.58,2A13.31,13.31,0,0,1,20.09,35.49Z" fill="#fff"/><path d="M7.37,20.4a1.31,1.31,0,0,1,1.29,1.07s0,0.12.06,0.33,0.09,0.56.19,0.86,0.22,0.72.39,1.19A11.65,11.65,0,0,0,10,25.33a10.41,10.41,0,0,0,2.69,3,10.12,10.12,0,0,0,4.09,1.83c0.24,0,.86.15,1.13,0.15h0c0.19,0,.4,0,0.62,0H19a10.12,10.12,0,0,0,2.1-.32,9.57,9.57,0,0,0,3.31-1.63,8.84,8.84,0,0,0,1-.87l-2.34-2.34a0.93,0.93,0,0,1,.65-1.59h8.84a0.93,0.93,0,0,1,.92.93v8.83a0.93,0.93,0,0,1-.94.93A0.91,0.91,0,0,1,31.91,34l-2.46-2.47-0.09.08A16.43,16.43,0,0,1,27.46,33a15,15,0,0,1-5.39,1.89,12.89,12.89,0,0,1-2,.14c-0.4,0-.81,0-1.21,0a13.29,13.29,0,0,1-1.66-.24,15.58,15.58,0,0,1-1.53-.39,14.28,14.28,0,0,1-5.39-3.19,14.06,14.06,0,0,1-3.09-4.38,16.32,16.32,0,0,1-.71-2c-0.14-.61-0.26-1.15-0.32-1.63a9.13,9.13,0,0,1-.09-1l0-.33a1.32,1.32,0,0,1,1.23-1.4H7.37m0-1H7.23a2.31,2.31,0,0,0-2.17,2.45l0,0.37c0,0.05,0,.11,0,0.17a7.39,7.39,0,0,0,.09.89c0.06,0.49.19,1.06,0.33,1.7v0a17.34,17.34,0,0,0,.75,2.12,15.14,15.14,0,0,0,3.32,4.71,15.35,15.35,0,0,0,5.77,3.42l0.06,0L16,35.43a9.09,9.09,0,0,0,1.09.26,14.07,14.07,0,0,0,1.74.25c0.47,0,.9,0,1.31,0a13.76,13.76,0,0,0,2.13-.15,16,16,0,0,0,5.74-2q0.72-.44,1.41-0.95l1.83,1.84a1.91,1.91,0,0,0,1.36.57,1.94,1.94,0,0,0,1.94-1.93V24.52a1.93,1.93,0,0,0-1.92-1.93H23.74a1.93,1.93,0,0,0-1.36,3.3l1.6,1.6-0.14.11a8.48,8.48,0,0,1-3,1.46,9.21,9.21,0,0,1-1.88.29H18.6c-0.18,0-.36,0-0.52,0H17.9l-0.5-.08L17,29.17a9.19,9.19,0,0,1-3.64-1.64,9.48,9.48,0,0,1-2.44-2.72,10.68,10.68,0,0,1-.65-1.34c-0.12-.32-0.27-0.76-0.35-1.07l0-.07a3.69,3.69,0,0,1-.1-0.46c0-.1,0-0.19-0.05-0.27s-0.05-.29-0.06-0.35A2.3,2.3,0,0,0,7.37,19.4h0Z" fill="#cf8b17"/><path d="M32.63,20.11a1.81,1.81,0,0,1-1.78-1.48l-0.1-.54a3.83,3.83,0,0,0-.13-0.59c-0.09-.33-0.22-0.73-0.39-1.18a12.68,12.68,0,0,0-.68-1.4A10,10,0,0,0,27,12.08a9.56,9.56,0,0,0-3.9-1.74l-0.4-.06a4.84,4.84,0,0,0-.62-0.08l-0.67,0H21a9.87,9.87,0,0,0-2,.3A9.2,9.2,0,0,0,15.86,12c-0.19.15-.37,0.3-0.55,0.47l2,2a1.43,1.43,0,0,1-1,2.44H7.44A1.43,1.43,0,0,1,6,15.49V6.66a1.43,1.43,0,0,1,2.44-1L10.61,7.8a16.77,16.77,0,0,1,1.7-1.18,15.5,15.5,0,0,1,5.57-2,13.44,13.44,0,0,1,2-.15c0.41,0,.83,0,1.24,0a13.73,13.73,0,0,1,1.75.25,8.46,8.46,0,0,1,1,.25l0.53,0.15a14.86,14.86,0,0,1,5.61,3.31,14.61,14.61,0,0,1,3.2,4.54A14.78,14.78,0,0,1,34,15.14a14.11,14.11,0,0,1,.34,1.69,6.83,6.83,0,0,1,.08.82v0.18c0,0.25,0,.37,0,0.37a1.81,1.81,0,0,1-1.69,1.9H32.63Z" fill="#fff"/><path d="M19.92,5c0.4,0,.81,0,1.21,0a13.16,13.16,0,0,1,1.67.24,15.56,15.56,0,0,1,1.53.39,14.28,14.28,0,0,1,5.39,3.19,14.06,14.06,0,0,1,3.09,4.38,14.3,14.3,0,0,1,.7,2,14.15,14.15,0,0,1,.33,1.62,9.15,9.15,0,0,1,.09,1c0,0.22,0,.33,0,0.33a1.31,1.31,0,0,1-1.22,1.4h-0.1a1.32,1.32,0,0,1-1.28-1.07s0-.12-0.06-0.33a6.67,6.67,0,0,0-.18-0.86C31,17,30.89,16.63,30.72,16.16A13.2,13.2,0,0,0,30,14.68a10.56,10.56,0,0,0-2.69-3,10.11,10.11,0,0,0-4.1-1.83c-0.23,0-.85-0.15-1.12-0.15h0c-0.19,0-.4,0-0.62,0H21a10.32,10.32,0,0,0-2.11.32,9.75,9.75,0,0,0-3.31,1.63,10.71,10.71,0,0,0-1,.86l2.34,2.35a0.93,0.93,0,0,1-.66,1.59H7.44a0.93,0.93,0,0,1-.93-0.93V6.66A0.93,0.93,0,0,1,8.11,6l2.46,2.47,0.09-.08A16.44,16.44,0,0,1,12.56,7a14.94,14.94,0,0,1,5.38-1.89,13,13,0,0,1,2-.14m0-1a14,14,0,0,0-2.13.15,16,16,0,0,0-5.73,2q-0.72.44-1.41,0.95L8.82,5.29a1.93,1.93,0,0,0-3.3,1.37v8.83a1.93,1.93,0,0,0,1.93,1.93h8.83a1.93,1.93,0,0,0,1.37-3.3L16,12.53l0.14-.11A8.65,8.65,0,0,1,19.12,11,9.4,9.4,0,0,1,21,10.68h0.4l0.53,0h0.18l0.5,0.08,0.43,0.07a9,9,0,0,1,3.65,1.64,9.56,9.56,0,0,1,2.44,2.72,12.19,12.19,0,0,1,.65,1.33c0.13,0.35.28,0.78,0.35,1.07l0,0.07a3.69,3.69,0,0,1,.11.51l0,0.23,0.05,0.3a2.32,2.32,0,0,0,2.27,1.91H32.8a2.32,2.32,0,0,0,2.15-2.43c0-.06,0-0.19,0-0.38s0-.11,0-0.17a7.39,7.39,0,0,0-.09-0.89,14.54,14.54,0,0,0-.35-1.7,15.3,15.3,0,0,0-.75-2.16,15.14,15.14,0,0,0-3.32-4.71,15.35,15.35,0,0,0-5.77-3.42l-0.06,0-0.52-.14A9.09,9.09,0,0,0,23,4.32a13.92,13.92,0,0,0-1.75-.25c-0.47,0-.9,0-1.3,0h0Z" fill="#cf8b17"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>control_repeat</title><path d="M34.75,23v0.1l0,0.25a13.62,13.62,0,0,1-1,4.69,14.19,14.19,0,0,1-2.33,3.8,15.36,15.36,0,0,1-3,2.57l-0.05,0a14.25,14.25,0,0,1-3,1.4,8.62,8.62,0,0,1-1.32.37,9.2,9.2,0,0,1-1.22.21l-0.26,0c-0.28,0-.54.07-0.78,0.08h-1a3,3,0,0,1-.28-6s0.18,0,.5,0l0.27,0,0.24,0a0.59,0.59,0,0,0,.19,0,1.57,1.57,0,0,1,.25,0l0.08,0a1.9,1.9,0,0,0,.44-0.12l0.06,0A3.28,3.28,0,0,0,23.15,30l0.07,0a7.69,7.69,0,0,0,1.52-.86,8.7,8.7,0,0,0,1.46-1.45,7.69,7.69,0,0,0,1.08-2,6.34,6.34,0,0,0,.37-2.34V23.06l0-.48V22.44a0.62,0.62,0,0,1,0-.13L27.52,22a0.15,0.15,0,0,1,0-.07c0-.13-0.06-0.29-0.12-0.48l-0.07-.22a2.28,2.28,0,0,0-.1-0.31l0-.08a6.75,6.75,0,0,0-3-3.47,6.24,6.24,0,0,0-2-.7l-0.25,0a5.73,5.73,0,0,0-.67-0.06H20c-0.92,0-1.78,0-2.53,0h-1v3A2.06,2.06,0,0,1,13,21.1L5.9,14a2.05,2.05,0,0,1,0-2.91L13,4a2,2,0,0,1,1.45-.62,2.06,2.06,0,0,1,2.06,2.06v3h1l2.52,0h0.79L21.69,8.6A13.63,13.63,0,0,1,23.83,9a14.36,14.36,0,0,1,10.24,9.5,8.29,8.29,0,0,1,.3,1.07l0,0.15A11.73,11.73,0,0,1,34.64,21l0.07,0.64c0,0.16,0,.28,0,0.39v1Z" fill="#cf8b17"/><path d="M33.75,23.08l0,0.29a12.59,12.59,0,0,1-1,4.34,13.32,13.32,0,0,1-2.15,3.52,14.17,14.17,0,0,1-2.78,2.4A12.88,12.88,0,0,1,25,34.94a8.25,8.25,0,0,1-1.23.35,7.56,7.56,0,0,1-1.11.19c-0.34,0-.69.09-0.92,0.1h-1a2,2,0,0,1-.2-4l0.45,0,0.54-.05a5,5,0,0,0,.53-0.11,3.21,3.21,0,0,0,.66-0.17,5.22,5.22,0,0,0,.8-0.29,8.57,8.57,0,0,0,1.76-1A10.06,10.06,0,0,0,27,28.26,8.42,8.42,0,0,0,28.22,26a7.44,7.44,0,0,0,.43-2.71V23l0-.47a2.62,2.62,0,0,0,0-.43l-0.07-.29a3.92,3.92,0,0,0-.15-0.62,5.11,5.11,0,0,0-.22-0.66,7.72,7.72,0,0,0-3.5-4,7.4,7.4,0,0,0-2.29-.81,7.21,7.21,0,0,0-1.12-.11H20c-1.84,0-3.38,0-4.47,0v4.05a1.05,1.05,0,0,1-1.8.74L6.6,13.31a1,1,0,0,1,0-1.49l7.08-7.09a1.05,1.05,0,0,1,1.8.74v4c1.09,0,2.64,0,4.48,0h0.72l1,0.06a12.86,12.86,0,0,1,2,.33,13,13,0,0,1,4,1.68,13.22,13.22,0,0,1,5.56,7.17,9,9,0,0,1,.31,1.13,10,10,0,0,1,.21,1.22l0.07,0.63c0,0.21,0,.33,0,0.49v0.83Z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>control_stop</title><polygon points="25.61 6.5 33.56 14.44 33.56 25.68 25.61 33.62 14.38 33.62 6.43 25.68 6.43 14.44 14.38 6.5 25.61 6.5" fill="#ec5858" stroke="#b64646" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>wait</title><rect x="17.29" y="1.22" width="5.6" height="3.29" rx="1.39" ry="1.39" fill="#cf8b17"/><rect x="18.64" y="4.1" width="2.8" height="1.79" fill="#cf8b17"/><ellipse cx="19.86" cy="19.99" rx="14.07" ry="14.1" fill="#fff" stroke="#cf8b17" stroke-miterlimit="10"/><path d="M33.93,20A14.07,14.07,0,1,1,5.8,20a14.6,14.6,0,0,1,.14-2,14.06,14.06,0,0,0,27.85,0A14.6,14.6,0,0,1,33.93,20Z" fill="#070707" opacity="0.1"/><path d="M30.2,7h1.62a0.6,0.6,0,0,1,.6.6v1.8a1.19,1.19,0,0,1-1.19,1.19H30.79A1.19,1.19,0,0,1,29.6,9.38V7.58A0.6,0.6,0,0,1,30.2,7Z" transform="translate(15.24 -19.34) rotate(44.91)" fill="#cf8b17"/><path d="M20,8.59V21.42L30.06,15S28,8.66,20,8.59Z" fill="#ffab19" opacity="0.5"/><rect x="18.43" y="16.5" width="13.2" height="1.98" rx="0.88" ry="0.88" transform="translate(-5.34 14.35) rotate(-29.05)" fill="#cf8b17"/><ellipse cx="19.86" cy="19.99" rx="14.07" ry="14.1" fill="none" stroke="#cf8b17" stroke-miterlimit="10" stroke-width="1.5"/><circle cx="20.39" cy="19.75" r="1.75" fill="#ffab19" stroke="#cf8b17" stroke-miterlimit="10"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>event_broadcast_blue</title><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="#4c97ff"/><polyline points="10.36 29.64 23.5 18.72 36.63 29.64" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M37.87,12.81L26,25.14a3.49,3.49,0,0,1-5.05,0L9.12,12.8A0.49,0.49,0,0,1,9,12.26,0.51,0.51,0,0,1,9.48,12h28a0.51,0.51,0,0,1,.46.3A0.53,0.53,0,0,1,37.87,12.81Z" fill="#231f20"/></g><path d="M37.51,11.47L25.45,21.83a3,3,0,0,1-3.91,0L9.49,11.46" fill="#4c97ff" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><line x1="7" y1="12" x2="4.53" y2="12" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="20.03" x2="4.53" y2="20.03" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="28" x2="4.53" y2="28" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="24" x2="1" y2="24" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="16" x2="1" y2="16" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>event_broadcast_coral</title><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="#f26d83"/><polyline points="10.36 29.64 23.5 18.72 36.63 29.64" fill="none" stroke="#bf5668" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M37.87,12.81L26,25.14a3.49,3.49,0,0,1-5.05,0L9.12,12.8A0.49,0.49,0,0,1,9,12.26,0.51,0.51,0,0,1,9.48,12h28a0.51,0.51,0,0,1,.46.3A0.53,0.53,0,0,1,37.87,12.81Z" fill="#231f20"/></g><path d="M37.51,11.47L25.45,21.83a3,3,0,0,1-3.91,0L9.49,11.46" fill="#f26d83" stroke="#bf5668" stroke-linecap="round" stroke-linejoin="round"/><line x1="7" y1="12" x2="4.53" y2="12" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="20.03" x2="4.53" y2="20.03" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="28" x2="4.53" y2="28" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="24" x2="1" y2="24" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="16" x2="1" y2="16" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="none" stroke="#bf5668" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>event_broadcast_green</title><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="#4cbf56"/><polyline points="10.36 29.64 23.5 18.72 36.63 29.64" fill="none" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M37.87,12.81L26,25.14a3.49,3.49,0,0,1-5.05,0L9.12,12.8A0.49,0.49,0,0,1,9,12.26,0.51,0.51,0,0,1,9.48,12h28a0.51,0.51,0,0,1,.46.3A0.53,0.53,0,0,1,37.87,12.81Z" fill="#231f20"/></g><path d="M37.51,11.47L25.45,21.83a3,3,0,0,1-3.91,0L9.49,11.46" fill="#4cbf56" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round"/><line x1="7" y1="12" x2="4.53" y2="12" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="20.03" x2="4.53" y2="20.03" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="28" x2="4.53" y2="28" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="24" x2="1" y2="24" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="16" x2="1" y2="16" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="none" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>event_broadcast_magenta</title><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="#d65cd6"/><polyline points="10.36 29.64 23.5 18.72 36.63 29.64" fill="none" stroke="#a63fa6" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M37.87,12.81L26,25.14a3.49,3.49,0,0,1-5.05,0L9.12,12.8A0.49,0.49,0,0,1,9,12.26,0.51,0.51,0,0,1,9.48,12h28a0.51,0.51,0,0,1,.46.3A0.53,0.53,0,0,1,37.87,12.81Z" fill="#231f20"/></g><path d="M37.51,11.47L25.45,21.83a3,3,0,0,1-3.91,0L9.49,11.46" fill="#d65cd6" stroke="#a63fa6" stroke-linecap="round" stroke-linejoin="round"/><line x1="7" y1="12" x2="4.53" y2="12" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="20.03" x2="4.53" y2="20.03" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="28" x2="4.53" y2="28" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="24" x2="1" y2="24" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="16" x2="1" y2="16" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="none" stroke="#a63fa6" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>event_broadcast_orange</title><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="#ffab19"/><polyline points="10.36 29.64 23.5 18.72 36.63 29.64" fill="none" stroke="#cf8b17" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M37.87,12.81L26,25.14a3.49,3.49,0,0,1-5.05,0L9.12,12.8A0.49,0.49,0,0,1,9,12.26,0.51,0.51,0,0,1,9.48,12h28a0.51,0.51,0,0,1,.46.3A0.53,0.53,0,0,1,37.87,12.81Z" fill="#231f20"/></g><path d="M37.51,11.47L25.45,21.83a3,3,0,0,1-3.91,0L9.49,11.46" fill="#ffab19" stroke="#cf8b17" stroke-linecap="round" stroke-linejoin="round"/><line x1="7" y1="12" x2="4.53" y2="12" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="20.03" x2="4.53" y2="20.03" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="28" x2="4.53" y2="28" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="24" x2="1" y2="24" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="16" x2="1" y2="16" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="none" stroke="#cf8b17" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>send-message-purple</title><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="#96f"/><polyline points="10.36 29.64 23.5 18.72 36.63 29.64" fill="none" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M37.87,12.81L26,25.14a3.49,3.49,0,0,1-5.05,0L9.12,12.8A0.49,0.49,0,0,1,9,12.26,0.51,0.51,0,0,1,9.48,12h28a0.51,0.51,0,0,1,.46.3A0.53,0.53,0,0,1,37.87,12.81Z" fill="#231f20"/></g><path d="M37.51,11.47L25.45,21.83a3,3,0,0,1-3.91,0L9.49,11.46" fill="#96f" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7" y1="12" x2="4.53" y2="12" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="20.03" x2="4.53" y2="20.03" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="28" x2="4.53" y2="28" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="24" x2="1" y2="24" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="7" y1="16" x2="1" y2="16" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M35.75,30.52H11.13a1.75,1.75,0,0,1-1.75-1.76l0.1-17.3a1.75,1.75,0,0,1,1.75-1.74H35.75a1.75,1.75,0,0,1,1.75,1.75v17.3A1.75,1.75,0,0,1,35.75,30.52Z" fill="none" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>LetterGet_Blue</title><path d="M34,36H5.87a2,2,0,0,1-2-2L4,17a2,2,0,0,1,.8-1.59L18.8,4.9a2,2,0,0,1,2.4,0l14,10.5A2,2,0,0,1,36,17V34A2,2,0,0,1,34,36Z" fill="#4c97ff" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><rect x="8" y="8" width="24" height="20" rx="2" ry="2" fill="#f9f8ff" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M36.5,17v1a0.5,0.5,0,0,1-.23.42L21.33,27.76a2.47,2.47,0,0,1-1.33.38,2.51,2.51,0,0,1-1.32-.37l-15-9.35A0.5,0.5,0,0,1,3.5,18V16.76A2.48,2.48,0,0,1,4.5,15l0.66-.5a0.5,0.5,0,0,1,.56,0L17,21.55l1.47-1.06a2.49,2.49,0,0,1,3,0L23,21.56l11.33-7.07a0.5,0.5,0,0,1,.56,0L35.5,15A2.52,2.52,0,0,1,36.5,17Z" fill="#231f20"/></g><path d="M36,18L21.06,27.34a2,2,0,0,1-2.12,0L4,18V34a2,2,0,0,0,2,2H34a2,2,0,0,0,2-2V18Z" fill="#4c97ff" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.86,35L18.8,24.89a2,2,0,0,1,2.39,0L35,35" fill="#4c97ff" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.82" y1="4.14" x2="10.15" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="5.31" y1="11.04" x2="2.05" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.17" y1="4.14" x2="29.84" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="34.69" y1="11.04" x2="37.94" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>LetterGet_Coral</title><path d="M34,36H5.87a2,2,0,0,1-2-2L4,17a2,2,0,0,1,.8-1.59L18.8,4.9a2,2,0,0,1,2.4,0l14,10.5A2,2,0,0,1,36,17V34A2,2,0,0,1,34,36Z" fill="#f26d83" stroke="#bf5668" stroke-linecap="round" stroke-linejoin="round"/><rect x="8" y="8" width="24" height="20" rx="2" ry="2" fill="#f9f8ff" stroke="#bf5668" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M36.5,17v1a0.5,0.5,0,0,1-.23.42L21.33,27.76a2.47,2.47,0,0,1-1.33.38,2.51,2.51,0,0,1-1.32-.37l-15-9.35A0.5,0.5,0,0,1,3.5,18V16.76A2.48,2.48,0,0,1,4.5,15l0.66-.5a0.5,0.5,0,0,1,.56,0L17,21.55l1.47-1.06a2.49,2.49,0,0,1,3,0L23,21.56l11.33-7.07a0.5,0.5,0,0,1,.56,0L35.5,15A2.52,2.52,0,0,1,36.5,17Z" fill="#231f20"/></g><path d="M36,18L21.06,27.34a2,2,0,0,1-2.12,0L4,18V34a2,2,0,0,0,2,2H34a2,2,0,0,0,2-2V18Z" fill="#f26d83" stroke="#bf5668" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.86,35L18.8,24.89a2,2,0,0,1,2.39,0L35,35" fill="#f26d83" stroke="#bf5668" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.82" y1="4.14" x2="10.15" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="5.31" y1="11.04" x2="2.05" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.17" y1="4.14" x2="29.84" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="34.69" y1="11.04" x2="37.94" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>LetterGet_Green</title><path d="M34,36H5.87a2,2,0,0,1-2-2L4,17a2,2,0,0,1,.8-1.59L18.8,4.9a2,2,0,0,1,2.4,0l14,10.5A2,2,0,0,1,36,17V34A2,2,0,0,1,34,36Z" fill="#4cbf56" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round"/><rect x="8" y="8" width="24" height="20" rx="2" ry="2" fill="#f9f8ff" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M36.5,17v1a0.5,0.5,0,0,1-.23.42L21.33,27.76a2.47,2.47,0,0,1-1.33.38,2.51,2.51,0,0,1-1.32-.37l-15-9.35A0.5,0.5,0,0,1,3.5,18V16.76A2.48,2.48,0,0,1,4.5,15l0.66-.5a0.5,0.5,0,0,1,.56,0L17,21.55l1.47-1.06a2.49,2.49,0,0,1,3,0L23,21.56l11.33-7.07a0.5,0.5,0,0,1,.56,0L35.5,15A2.52,2.52,0,0,1,36.5,17Z" fill="#231f20"/></g><path d="M36,18L21.06,27.34a2,2,0,0,1-2.12,0L4,18V34a2,2,0,0,0,2,2H34a2,2,0,0,0,2-2V18Z" fill="#4cbf56" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.86,35L18.8,24.89a2,2,0,0,1,2.39,0L35,35" fill="#4cbf56" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.82" y1="4.14" x2="10.15" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="5.31" y1="11.04" x2="2.05" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.17" y1="4.14" x2="29.84" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="34.69" y1="11.04" x2="37.94" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>LetterGet_Magenta</title><path d="M34,36H5.87a2,2,0,0,1-2-2L4,17a2,2,0,0,1,.8-1.59L18.8,4.9a2,2,0,0,1,2.4,0l14,10.5A2,2,0,0,1,36,17V34A2,2,0,0,1,34,36Z" fill="#d65cd6" stroke="#a63fa6" stroke-linecap="round" stroke-linejoin="round"/><rect x="8" y="8" width="24" height="20" rx="2" ry="2" fill="#f9f8ff" stroke="#a63fa6" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M36.5,17v1a0.5,0.5,0,0,1-.23.42L21.33,27.76a2.47,2.47,0,0,1-1.33.38,2.51,2.51,0,0,1-1.32-.37l-15-9.35A0.5,0.5,0,0,1,3.5,18V16.76A2.48,2.48,0,0,1,4.5,15l0.66-.5a0.5,0.5,0,0,1,.56,0L17,21.55l1.47-1.06a2.49,2.49,0,0,1,3,0L23,21.56l11.33-7.07a0.5,0.5,0,0,1,.56,0L35.5,15A2.52,2.52,0,0,1,36.5,17Z" fill="#231f20"/></g><path d="M36,18L21.06,27.34a2,2,0,0,1-2.12,0L4,18V34a2,2,0,0,0,2,2H34a2,2,0,0,0,2-2V18Z" fill="#d65cd6" stroke="#a63fa6" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.86,35L18.8,24.89a2,2,0,0,1,2.39,0L35,35" fill="#d65cd6" stroke="#a63fa6" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.82" y1="4.14" x2="10.15" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="5.31" y1="11.04" x2="2.05" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.17" y1="4.14" x2="29.84" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="34.69" y1="11.04" x2="37.94" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>LetterGet_Orange</title><path d="M34,36H5.87a2,2,0,0,1-2-2L4,17a2,2,0,0,1,.8-1.59L18.8,4.9a2,2,0,0,1,2.4,0l14,10.5A2,2,0,0,1,36,17V34A2,2,0,0,1,34,36Z" fill="#ffab19" stroke="#cf8b17" stroke-linecap="round" stroke-linejoin="round"/><rect x="8" y="8" width="24" height="20" rx="2" ry="2" fill="#f9f8ff" stroke="#cf8b17" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M36.5,17v1a0.5,0.5,0,0,1-.23.42L21.33,27.76a2.47,2.47,0,0,1-1.33.38,2.51,2.51,0,0,1-1.32-.37l-15-9.35A0.5,0.5,0,0,1,3.5,18V16.76A2.48,2.48,0,0,1,4.5,15l0.66-.5a0.5,0.5,0,0,1,.56,0L17,21.55l1.47-1.06a2.49,2.49,0,0,1,3,0L23,21.56l11.33-7.07a0.5,0.5,0,0,1,.56,0L35.5,15A2.52,2.52,0,0,1,36.5,17Z" fill="#231f20"/></g><path d="M36,18L21.06,27.34a2,2,0,0,1-2.12,0L4,18V34a2,2,0,0,0,2,2H34a2,2,0,0,0,2-2V18Z" fill="#ffab19" stroke="#cf8b17" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.86,35L18.8,24.89a2,2,0,0,1,2.39,0L35,35" fill="#ffab19" stroke="#cf8b17" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.82" y1="4.14" x2="10.15" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="5.31" y1="11.04" x2="2.05" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.17" y1="4.14" x2="29.84" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="34.69" y1="11.04" x2="37.94" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>LetterGet_Purple</title><path d="M34,36H5.87a2,2,0,0,1-2-2L4,17a2,2,0,0,1,.8-1.59L18.8,4.9a2,2,0,0,1,2.4,0l14,10.5A2,2,0,0,1,36,17V34A2,2,0,0,1,34,36Z" fill="#96f" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><rect x="8" y="8" width="24" height="20" rx="2" ry="2" fill="#f9f8ff" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M36.5,17v1a0.5,0.5,0,0,1-.23.42L21.33,27.76a2.47,2.47,0,0,1-1.33.38,2.51,2.51,0,0,1-1.32-.37l-15-9.35A0.5,0.5,0,0,1,3.5,18V16.76A2.48,2.48,0,0,1,4.5,15l0.66-.5a0.5,0.5,0,0,1,.56,0L17,21.55l1.47-1.06a2.49,2.49,0,0,1,3,0L23,21.56l11.33-7.07a0.5,0.5,0,0,1,.56,0L35.5,15A2.52,2.52,0,0,1,36.5,17Z" fill="#231f20"/></g><path d="M36,18L21.06,27.34a2,2,0,0,1-2.12,0L4,18V34a2,2,0,0,0,2,2H34a2,2,0,0,0,2-2V18Z" fill="#96f" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.86,35L18.8,24.89a2,2,0,0,1,2.39,0L35,35" fill="#96f" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.82" y1="4.14" x2="10.15" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="5.31" y1="11.04" x2="2.05" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.17" y1="4.14" x2="29.84" y2="0.97" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="34.69" y1="11.04" x2="37.94" y2="8.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>greenflag</title><path d="M33.47,10.64v13.7a0.9,0.9,0,0,1-.33.69,10.27,10.27,0,0,1-13,0,8.35,8.35,0,0,0-5.26-1.88A8.19,8.19,0,0,0,10,24.77v9.09a1,1,0,0,1-2,0V10.64a0.92,0.92,0,0,1,.61-0.87,10.25,10.25,0,0,1,12.77.18,8.34,8.34,0,0,0,10.52,0,1,1,0,0,1,1-.14A0.9,0.9,0,0,1,33.47,10.64Z" fill="#4cbf56" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9"/><rect x="8" y="6.91" width="1.88" height="27.88" rx="0.94" ry="0.94" fill="#45993d" stroke="#45993d" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9"/></svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 48.1 (47250) - http://www.bohemiancoding.com/sketch -->
|
|
4
|
+
<title>delete-argument v2</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs></defs>
|
|
7
|
+
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
+
<g id="delete-argument-v2" stroke="#FF661A">
|
|
9
|
+
<g id="Group" transform="translate(3.000000, 2.500000)">
|
|
10
|
+
<path d="M1,3 L13,3 L11.8900496,14.0995037 C11.8389294,14.6107055 11.4087639,15 10.8950124,15 L3.10498756,15 C2.59123611,15 2.16107055,14.6107055 2.10995037,14.0995037 L1,3 Z" id="Rectangle" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
11
|
+
<path d="M7,11 L7,6" id="Line" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
12
|
+
<path d="M9.5,11 L9.5,6" id="Line-Copy" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
13
|
+
<path d="M4.5,11 L4.5,6" id="Line-Copy-2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
14
|
+
<rect id="Rectangle-2" fill="#FF661A" x="0" y="2.5" width="14" height="1" rx="0.5"></rect>
|
|
15
|
+
<path d="M6,0 L8,0 C8.55228475,-1.01453063e-16 9,0.44771525 9,1 L9,3 L5,3 L5,1 C5,0.44771525 5.44771525,1.01453063e-16 6,0 Z" id="Rectangle-3" stroke-width="1.5"></path>
|
|
16
|
+
</g>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led_blue</title><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08h0c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="#4c97ff" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led_coral</title><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="#ef4d70" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led_green</title><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08h0c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="#4cbf56" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led-magenta</title><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="#e65eea" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led-mystery</title><path d="M26.93,13.19H13.26A8.75,8.75,0,0,1,20.11,9.9a9.19,9.19,0,0,1,1,.06A8.68,8.68,0,0,1,26.93,13.19Z" fill="#ef4d70"/><path d="M28.59,16.48h-17a8.55,8.55,0,0,1,1.63-3.29H26.93A8.61,8.61,0,0,1,28.59,16.48Z" fill="#ffab19"/><path d="M28.79,19.81H11.44a7.46,7.46,0,0,1-.09-1.16,8.9,8.9,0,0,1,.27-2.17h17a8.88,8.88,0,0,1,.23,1.3A9.13,9.13,0,0,1,28.79,19.81Z" fill="#fff200"/><path d="M28.79,19.81a8.65,8.65,0,0,1-1.14,3.29H12.58a8.49,8.49,0,0,1-1.14-3.29H28.79Z" fill="#4cbf56"/><path d="M27.65,23.1A7.07,7.07,0,0,1,27,24a12.83,12.83,0,0,0-1.6,2.37H14.8a1.09,1.09,0,0,0-.08-0.19A13.87,13.87,0,0,0,13.21,24a7.34,7.34,0,0,1-.63-0.94H27.65Z" fill="#4c97ff"/><path d="M25.43,26.27a6.4,6.4,0,0,0-.45,2.3,2.43,2.43,0,0,1-.13.82,0.81,0.81,0,0,0-.53-0.1l-1.18.17c-0.76.1-1.51,0.18-2.27,0.21H19.35c-0.76,0-1.51-.11-2.27-0.21l-1.18-.17a0.84,0.84,0,0,0-.52.09,2.27,2.27,0,0,1-.11-0.69,6.25,6.25,0,0,0-.47-2.42H25.43Z" fill="#c453ea"/><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08h0c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="none" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led-orange</title><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08h0c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="#ffab19" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led-purple</title><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08h0c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="#c453ea" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led-white</title><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08h0c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="#fff" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-led-yellow</title><path d="M28.75,17.79A8.75,8.75,0,0,1,27,24c-1.26,1.63-2.05,2.6-2.05,4.66V28.57a2.36,2.36,0,0,1-1.31,2.2l0,0a8.11,8.11,0,0,1-7.06,0h0a2.31,2.31,0,0,1-1.3-2.08h0c0-2.06-.8-3-2.07-4.65A8.76,8.76,0,1,1,28.75,17.79Z" fill="#fff200" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><circle cx="20.03" cy="34.16" r="2.96" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.91a2.17,2.17,0,0,1-1.34,2l-0.09,0a9.77,9.77,0,0,1-7.54,0h0A2.13,2.13,0,0,1,14.85,32V30.14a0.85,0.85,0,0,1,1-.85L17,29.47a21.15,21.15,0,0,0,6.06,0l1.18-.17a0.85,0.85,0,0,1,1,.85v1.77Z" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="7.84" y1="18.2" x2="4.84" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="35.22" y1="18.2" x2="32.22" y2="18.2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M14.85,31.21a6.89,6.89,0,0,0,1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.21,31.21a6.89,6.89,0,0,1-1.62.61" fill="#e6e7e8" stroke="#774dcb" stroke-linecap="round" stroke-linejoin="round"/><line x1="11.41" y1="26.82" x2="9.29" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="30.77" y1="7.47" x2="28.65" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="28.65" y1="26.82" x2="30.77" y2="28.94" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="9.29" y1="7.47" x2="11.41" y2="9.59" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><line x1="20.03" y1="3.02" x2="20.03" y2="6.02" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>wedo_motorclockwise</title><path d="M11.43,0.58h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.42a0,0,0,0,1,0,0v-3A1,1,0,0,1,11.43.58Z" fill="#e6e7e8"/><path d="M15.59,0.58v4H18.3V1.34a0.88,0.88,0,0,0-1-.76H15.59Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M11.43,0.58h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.42a0,0,0,0,1,0,0v-3A1,1,0,0,1,11.43.58Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M29.56,3.62H21.67v-2a1,1,0,0,1,1-1h5.87a1,1,0,0,1,1,1v2Z" fill="#e6e7e8"/><path d="M26.85,0.58v4h2.71V1.34a0.88,0.88,0,0,0-1-.76H26.85Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M7.09,37.15a1.59,1.59,0,0,1-1.59-1.59V29.44a17.46,17.46,0,0,1,0-19.51V6A1.84,1.84,0,0,1,7.33,4.12h25.3A1.84,1.84,0,0,1,34.48,6V9.91a17.46,17.46,0,0,1,0,19.55v6.1a1.59,1.59,0,0,1-1.59,1.59H7.09Z" fill="#e6e7e8"/><path d="M32.64,4.62A1.34,1.34,0,0,1,34,6v4.1A17,17,0,0,1,34,29.3v6.26a1.1,1.1,0,0,1-1.09,1.09H7.09A1.1,1.1,0,0,1,6,35.56V29.29a17,17,0,0,1-3-9.61,16.78,16.78,0,0,1,3-9.59V6A1.35,1.35,0,0,1,7.33,4.62h25.3m0-1H7.33A2.34,2.34,0,0,0,5,6V9.78A18,18,0,0,0,5,29.59v6a2.1,2.1,0,0,0,2.09,2.09h25.8A2.1,2.1,0,0,0,35,35.56v-6A18,18,0,0,0,35,9.75V6a2.34,2.34,0,0,0-2.34-2.34h0Z" fill="#3d79cc"/><g opacity="0.1"><path d="M37,19.68a16.88,16.88,0,0,1-3,9.62v6.26a1.11,1.11,0,0,1-1.1,1.1H7.08A1.1,1.1,0,0,1,6,35.56V33.77H30a1.11,1.11,0,0,0,1.1-1.1V26.41a17,17,0,0,0,0-19.24V4.62h1.55A1.34,1.34,0,0,1,34,6v4.09A16.88,16.88,0,0,1,37,19.68Z" fill="#231f20"/></g><path d="M22.59,0.58h6.06a0.91,0.91,0,0,1,.91.91V4a0,0,0,0,1,0,0H21.67a0,0,0,0,1,0,0V1.49A0.91,0.91,0,0,1,22.59.58Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M20,32.35A11.93,11.93,0,1,1,31.93,20.42,11.94,11.94,0,0,1,20,32.35Z" fill="#e6e7e8"/><path d="M20,8.87A11.55,11.55,0,1,1,8.45,20.42,11.55,11.55,0,0,1,20,8.87m0-.75a12.3,12.3,0,1,0,12.3,12.3A12.31,12.31,0,0,0,20,8.12h0Z" fill="#8e9bba"/><path d="M35.58,19.63a5.15,5.15,0,0,1-5.18,5.16H25.14v6a5.17,5.17,0,0,1-10.34,0v-6H9.54a5.16,5.16,0,1,1,0-10.33h7.14a5.17,5.17,0,0,1,6.58,0H30.4A5.17,5.17,0,0,1,35.58,19.63Z" fill="#e6e7e8" stroke="#8e9bba" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><circle cx="9.61" cy="19.71" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="30.37" cy="19.71" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="20" cy="30.81" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="19.99" cy="20.43" r="4.45" transform="translate(-8.59 20.12) rotate(-45)" fill="#e57055" stroke="#d65b56" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.53" y1="21.9" x2="21.46" y2="18.97" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.53" y1="18.97" x2="21.46" y2="21.9" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.94,10.26A15,15,0,1,0,31.47,30.07" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round" stroke-width="7"/><path d="M14.57,14.7a1.59,1.59,0,0,1-1.14-.48l-8.91-9A1.61,1.61,0,0,1,5.41,2.5L16.13,0.79l0.26,0A1.61,1.61,0,0,1,18,2.65L16.17,13.35A1.61,1.61,0,0,1,14.57,14.7Z" fill="#fff"/><path d="M16.39,1.27a1.11,1.11,0,0,1,1.09,1.3L15.67,13.27a1.11,1.11,0,0,1-1.1.93,1.09,1.09,0,0,1-.78-0.33l-8.91-9A1.11,1.11,0,0,1,5.49,3L16.21,1.28h0.18m0-1-0.34,0L5.33,2A2.11,2.11,0,0,0,4.16,5.58l8.91,9a2.11,2.11,0,0,0,3.58-1.13L18.47,2.73A2.11,2.11,0,0,0,16.39.27h0Z" fill="#3d79cc"/><path d="M8.94,10.26A15,15,0,1,0,31.47,30.07" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>wedo_motorclockwise</title><path d="M11.43,0.58h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.42a0,0,0,0,1,0,0v-3A1,1,0,0,1,11.43.58Z" fill="#e6e7e8"/><path d="M15.59,0.58v4H18.3V1.34a0.88,0.88,0,0,0-1-.76H15.59Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M11.43,0.58h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.42a0,0,0,0,1,0,0v-3A1,1,0,0,1,11.43.58Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M29.56,3.62H21.67v-2a1,1,0,0,1,1-1h5.87a1,1,0,0,1,1,1v2Z" fill="#e6e7e8"/><path d="M26.85,0.58v4h2.71V1.34a0.88,0.88,0,0,0-1-.76H26.85Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M7.09,37.15a1.59,1.59,0,0,1-1.59-1.59V29.44a17.46,17.46,0,0,1,0-19.51V6A1.84,1.84,0,0,1,7.33,4.12h25.3A1.84,1.84,0,0,1,34.48,6V9.91a17.46,17.46,0,0,1,0,19.55v6.1a1.59,1.59,0,0,1-1.59,1.59H7.09Z" fill="#e6e7e8"/><path d="M32.64,4.62A1.34,1.34,0,0,1,34,6v4.1A17,17,0,0,1,34,29.3v6.26a1.1,1.1,0,0,1-1.09,1.09H7.09A1.1,1.1,0,0,1,6,35.56V29.29a17,17,0,0,1-3-9.61,16.78,16.78,0,0,1,3-9.59V6A1.35,1.35,0,0,1,7.33,4.62h25.3m0-1H7.33A2.34,2.34,0,0,0,5,6V9.78A18,18,0,0,0,5,29.59v6a2.1,2.1,0,0,0,2.09,2.09h25.8A2.1,2.1,0,0,0,35,35.56v-6A18,18,0,0,0,35,9.75V6a2.34,2.34,0,0,0-2.34-2.34h0Z" fill="#3d79cc"/><g opacity="0.1"><path d="M37,19.68a16.88,16.88,0,0,1-3,9.62v6.26a1.11,1.11,0,0,1-1.1,1.1H7.08A1.1,1.1,0,0,1,6,35.56V33.77H30a1.11,1.11,0,0,0,1.1-1.1V26.41a17,17,0,0,0,0-19.24V4.62h1.55A1.34,1.34,0,0,1,34,6v4.09A16.88,16.88,0,0,1,37,19.68Z" fill="#231f20"/></g><path d="M22.59,0.58h6.06a0.91,0.91,0,0,1,.91.91V4a0,0,0,0,1,0,0H21.67a0,0,0,0,1,0,0V1.49A0.91,0.91,0,0,1,22.59.58Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M20,32.35A11.93,11.93,0,1,1,31.93,20.42,11.94,11.94,0,0,1,20,32.35Z" fill="#e6e7e8"/><path d="M20,8.87A11.55,11.55,0,1,1,8.45,20.42,11.55,11.55,0,0,1,20,8.87m0-.75a12.3,12.3,0,1,0,12.3,12.3A12.31,12.31,0,0,0,20,8.12h0Z" fill="#8e9bba"/><path d="M35.58,19.63a5.15,5.15,0,0,1-5.18,5.16H25.14v6a5.17,5.17,0,0,1-10.34,0v-6H9.54a5.16,5.16,0,1,1,0-10.33h7.14a5.17,5.17,0,0,1,6.58,0H30.4A5.17,5.17,0,0,1,35.58,19.63Z" fill="#e6e7e8" stroke="#8e9bba" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><circle cx="9.61" cy="19.71" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="30.37" cy="19.71" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="20" cy="30.81" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="19.99" cy="20.43" r="4.45" transform="translate(-8.59 20.12) rotate(-45)" fill="#e57055" stroke="#d65b56" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.53" y1="21.9" x2="21.46" y2="18.97" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.53" y1="18.97" x2="21.46" y2="21.9" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><path d="M31,10.26A15,15,0,1,1,8.52,30.07" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round" stroke-width="7"/><path d="M25.42,14.7a1.61,1.61,0,0,1-1.6-1.34L22,2.65A1.61,1.61,0,0,1,23.6.77l0.26,0L34.58,2.5a1.61,1.61,0,0,1,.89,2.73l-8.91,9a1.6,1.6,0,0,1-1.14.48h0Z" fill="#fff"/><path d="M23.6,1.27h0.18L34.5,3a1.11,1.11,0,0,1,.61,1.88l-8.91,9a1.09,1.09,0,0,1-.78.33,1.11,1.11,0,0,1-1.1-.93L22.51,2.56a1.11,1.11,0,0,1,1.09-1.3m0-1a2.11,2.11,0,0,0-2.08,2.46l1.81,10.71a2.11,2.11,0,0,0,3.58,1.13l8.91-9A2.11,2.11,0,0,0,34.66,2L23.94,0.29l-0.34,0h0Z" fill="#3d79cc"/><path d="M31,10.26A15,15,0,1,1,8.52,30.07" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="5"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-motor-speed_fast</title><path d="M11.51,0.76h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.51a0,0,0,0,1,0,0v-3a1,1,0,0,1,1-1Z" fill="#e6e7e8"/><path d="M15.68,0.76v4h2.71V1.52a0.88,0.88,0,0,0-1-.76H15.68Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M11.51,0.76h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.51a0,0,0,0,1,0,0v-3a1,1,0,0,1,1-1Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M29.65,3.8H21.76v-2a1,1,0,0,1,1-1h5.87a1,1,0,0,1,1,1v2Z" fill="#e6e7e8"/><path d="M26.94,0.76v4h2.71V1.52a0.88,0.88,0,0,0-1-.76H26.94Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M7.17,37.33a1.59,1.59,0,0,1-1.59-1.59V29.62a17.46,17.46,0,0,1,0-19.51v-4A1.84,1.84,0,0,1,7.42,4.3h25.3a1.84,1.84,0,0,1,1.84,1.84v3.94a17.46,17.46,0,0,1,0,19.55v6.1A1.6,1.6,0,0,1,33,37.33H7.17Z" fill="#e6e7e8"/><path d="M32.73,4.8a1.34,1.34,0,0,1,1.34,1.34v4.1a17,17,0,0,1,0,19.24v6.26A1.1,1.1,0,0,1,33,36.83H7.17a1.1,1.1,0,0,1-1.09-1.09V29.47a17,17,0,0,1-3-9.61,16.78,16.78,0,0,1,3-9.59V6.14A1.35,1.35,0,0,1,7.42,4.8h25.3m0-1H7.42A2.34,2.34,0,0,0,5.08,6.14V10a18,18,0,0,0,0,19.81v6a2.1,2.1,0,0,0,2.09,2.09H33a2.1,2.1,0,0,0,2.09-2.09v-6a18,18,0,0,0,0-19.86V6.14A2.34,2.34,0,0,0,32.73,3.8h0Z" fill="#3d79cc"/><g opacity="0.1"><path d="M37.06,19.86a16.88,16.88,0,0,1-3,9.62v6.26a1.11,1.11,0,0,1-1.1,1.1H7.17a1.1,1.1,0,0,1-1.09-1.1V33.94h24a1.11,1.11,0,0,0,1.1-1.1V26.59a17,17,0,0,0,0-19.24V4.8h1.55a1.34,1.34,0,0,1,1.34,1.35v4.09A16.88,16.88,0,0,1,37.06,19.86Z" fill="#231f20"/></g><path d="M22.68,0.76h6.06a0.91,0.91,0,0,1,.91.91V4.21a0,0,0,0,1,0,0H21.76a0,0,0,0,1,0,0V1.67A0.91,0.91,0,0,1,22.68.76Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M20.09,32.53A11.93,11.93,0,1,1,32,20.6,11.94,11.94,0,0,1,20.09,32.53Z" fill="#e6e7e8"/><path d="M20.09,9.05A11.55,11.55,0,1,1,8.54,20.6,11.55,11.55,0,0,1,20.09,9.05m0-.75a12.3,12.3,0,1,0,12.3,12.3A12.31,12.31,0,0,0,20.09,8.3h0Z" fill="#8e9bba"/><path d="M35.67,19.81A5.15,5.15,0,0,1,30.49,25H25.23v6a5.17,5.17,0,0,1-10.34,0V25H9.63a5.16,5.16,0,1,1,0-10.33h7.14a5.17,5.17,0,0,1,6.58,0h7.13A5.17,5.17,0,0,1,35.67,19.81Z" fill="#e6e7e8" stroke="#8e9bba" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><circle cx="9.7" cy="19.89" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="30.46" cy="19.89" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="20.08" cy="30.99" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="20.08" cy="20.61" r="4.45" transform="translate(-8.69 20.24) rotate(-45)" fill="#e57055" stroke="#d65b56" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.62" y1="22.08" x2="21.55" y2="19.15" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.62" y1="19.15" x2="21.55" y2="22.08" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><path d="M26,8.57H36.64a2.24,2.24,0,0,1,2.21,2.63L35.49,30.7a2.24,2.24,0,0,1-2.21,1.86H29.21A2.24,2.24,0,0,1,27,30.69L23.74,11.18A2.24,2.24,0,0,1,26,8.57Z" fill="#fff"/><path d="M38.81,11.37l-0.92,5.35H24.68l-0.89-5.36A2.23,2.23,0,0,1,26,8.76H36.61A2.23,2.23,0,0,1,38.81,11.37Z" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/><polygon points="37.89 16.71 36.52 24.66 26.01 24.66 24.68 16.71 37.89 16.71" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/><path d="M36.52,24.67l-1,6.1a2.22,2.22,0,0,1-2.2,1.85h-4A2.23,2.23,0,0,1,27,30.75l-1-6.08H36.52Z" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/><path d="M36.64,9.57A1.24,1.24,0,0,1,37.87,11L34.51,30.53a1.24,1.24,0,0,1-1.23,1H29.21a1.24,1.24,0,0,1-1.23-1L24.73,11A1.24,1.24,0,0,1,26,9.57H36.64m0-1H26a2.24,2.24,0,0,0-2.21,2.61L27,30.69a2.24,2.24,0,0,0,2.21,1.88h4.07a2.24,2.24,0,0,0,2.21-1.86l3.36-19.51a2.24,2.24,0,0,0-2.21-2.63h0Z" fill="#fff"/><path d="M36.64,8.57a2.24,2.24,0,0,1,2.21,2.63L35.49,30.7a2.24,2.24,0,0,1-2.21,1.86H29.21A2.24,2.24,0,0,1,27,30.69L23.74,11.18A2.24,2.24,0,0,1,26,8.57H36.64m0-1H26a3.24,3.24,0,0,0-3.2,3.78L26,30.86a3.23,3.23,0,0,0,3.2,2.71h4.07a3.24,3.24,0,0,0,3.2-2.69l3.36-19.51a3.24,3.24,0,0,0-3.2-3.8h0Z" fill="#3d79cc"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-motor-speed_med</title><path d="M11.51,0.76h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.51a0,0,0,0,1,0,0v-3a1,1,0,0,1,1-1Z" fill="#e6e7e8"/><path d="M15.68,0.76v4h2.71V1.52a0.88,0.88,0,0,0-1-.76H15.68Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M11.51,0.76h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.51a0,0,0,0,1,0,0v-3a1,1,0,0,1,1-1Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M29.65,3.8H21.76v-2a1,1,0,0,1,1-1h5.87a1,1,0,0,1,1,1v2Z" fill="#e6e7e8"/><path d="M26.94,0.76v4h2.71V1.52a0.88,0.88,0,0,0-1-.76H26.94Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M7.17,37.33a1.59,1.59,0,0,1-1.59-1.59V29.62a17.46,17.46,0,0,1,0-19.51v-4A1.84,1.84,0,0,1,7.42,4.3h25.3a1.84,1.84,0,0,1,1.84,1.84v3.94a17.46,17.46,0,0,1,0,19.55v6.1A1.6,1.6,0,0,1,33,37.33H7.17Z" fill="#e6e7e8"/><path d="M32.73,4.8a1.34,1.34,0,0,1,1.34,1.34v4.1a17,17,0,0,1,0,19.24v6.26A1.1,1.1,0,0,1,33,36.83H7.17a1.1,1.1,0,0,1-1.09-1.09V29.47a17,17,0,0,1-3-9.61,16.78,16.78,0,0,1,3-9.59V6.14A1.35,1.35,0,0,1,7.42,4.8h25.3m0-1H7.42A2.34,2.34,0,0,0,5.08,6.14V10a18,18,0,0,0,0,19.81v6a2.1,2.1,0,0,0,2.09,2.09H33a2.1,2.1,0,0,0,2.09-2.09v-6a18,18,0,0,0,0-19.86V6.14A2.34,2.34,0,0,0,32.73,3.8h0Z" fill="#3d79cc"/><g opacity="0.1"><path d="M37.06,19.86a16.88,16.88,0,0,1-3,9.62v6.26a1.11,1.11,0,0,1-1.1,1.1H7.17a1.1,1.1,0,0,1-1.09-1.1V33.94h24a1.11,1.11,0,0,0,1.1-1.1V26.59a17,17,0,0,0,0-19.24V4.8h1.55a1.34,1.34,0,0,1,1.34,1.35v4.09A16.88,16.88,0,0,1,37.06,19.86Z" fill="#231f20"/></g><path d="M22.68,0.76h6.06a0.91,0.91,0,0,1,.91.91V4.21a0,0,0,0,1,0,0H21.76a0,0,0,0,1,0,0V1.67A0.91,0.91,0,0,1,22.68.76Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M20.09,32.53A11.93,11.93,0,1,1,32,20.6,11.94,11.94,0,0,1,20.09,32.53Z" fill="#e6e7e8"/><path d="M20.09,9.05A11.55,11.55,0,1,1,8.54,20.6,11.55,11.55,0,0,1,20.09,9.05m0-.75a12.3,12.3,0,1,0,12.3,12.3A12.31,12.31,0,0,0,20.09,8.3h0Z" fill="#8e9bba"/><path d="M35.67,19.81A5.15,5.15,0,0,1,30.49,25H25.23v6a5.17,5.17,0,0,1-10.34,0V25H9.63a5.16,5.16,0,1,1,0-10.33h7.14a5.17,5.17,0,0,1,6.58,0h7.13A5.17,5.17,0,0,1,35.67,19.81Z" fill="#e6e7e8" stroke="#8e9bba" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><circle cx="9.7" cy="19.89" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="30.46" cy="19.89" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="20.08" cy="30.99" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="20.08" cy="20.61" r="4.45" transform="translate(-8.69 20.24) rotate(-45)" fill="#e57055" stroke="#d65b56" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.62" y1="22.08" x2="21.55" y2="19.15" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.62" y1="19.15" x2="21.55" y2="22.08" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><path d="M26,8.57H36.64a2.24,2.24,0,0,1,2.21,2.63L35.49,30.7a2.24,2.24,0,0,1-2.21,1.86H29.21A2.24,2.24,0,0,1,27,30.69L23.74,11.18A2.24,2.24,0,0,1,26,8.57Z" fill="#fff"/><path d="M38.81,11.37l-0.92,5.35H24.68l-0.89-5.36A2.23,2.23,0,0,1,26,8.76H36.61A2.23,2.23,0,0,1,38.81,11.37Z" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" opacity="0.2"/><polygon points="37.89 16.71 36.52 24.66 26.01 24.66 24.68 16.71 37.89 16.71" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/><path d="M36.52,24.67l-1,6.1a2.22,2.22,0,0,1-2.2,1.85h-4A2.23,2.23,0,0,1,27,30.75l-1-6.08H36.52Z" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/><path d="M36.64,9.57A1.24,1.24,0,0,1,37.87,11L34.51,30.53a1.24,1.24,0,0,1-1.23,1H29.21a1.24,1.24,0,0,1-1.23-1L24.73,11A1.24,1.24,0,0,1,26,9.57H36.64m0-1H26a2.24,2.24,0,0,0-2.21,2.61L27,30.69a2.24,2.24,0,0,0,2.21,1.88h4.07a2.24,2.24,0,0,0,2.21-1.86l3.36-19.51a2.24,2.24,0,0,0-2.21-2.63h0Z" fill="#fff"/><path d="M36.64,8.57a2.24,2.24,0,0,1,2.21,2.63L35.49,30.7a2.24,2.24,0,0,1-2.21,1.86H29.21A2.24,2.24,0,0,1,27,30.69L23.74,11.18A2.24,2.24,0,0,1,26,8.57H36.64m0-1H26a3.24,3.24,0,0,0-3.2,3.78L26,30.86a3.23,3.23,0,0,0,3.2,2.71h4.07a3.24,3.24,0,0,0,3.2-2.69l3.36-19.51a3.24,3.24,0,0,0-3.2-3.8h0Z" fill="#3d79cc"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>set-motor-speed_slow</title><path d="M11.51,0.76h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.51a0,0,0,0,1,0,0v-3a1,1,0,0,1,1-1Z" fill="#e6e7e8"/><path d="M15.68,0.76v4h2.71V1.52a0.88,0.88,0,0,0-1-.76H15.68Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M11.51,0.76h5.87a1,1,0,0,1,1,1v3a0,0,0,0,1,0,0H10.51a0,0,0,0,1,0,0v-3a1,1,0,0,1,1-1Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M29.65,3.8H21.76v-2a1,1,0,0,1,1-1h5.87a1,1,0,0,1,1,1v2Z" fill="#e6e7e8"/><path d="M26.94,0.76v4h2.71V1.52a0.88,0.88,0,0,0-1-.76H26.94Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M7.17,37.33a1.59,1.59,0,0,1-1.59-1.59V29.62a17.46,17.46,0,0,1,0-19.51v-4A1.84,1.84,0,0,1,7.42,4.3h25.3a1.84,1.84,0,0,1,1.84,1.84v3.94a17.46,17.46,0,0,1,0,19.55v6.1A1.6,1.6,0,0,1,33,37.33H7.17Z" fill="#e6e7e8"/><path d="M32.73,4.8a1.34,1.34,0,0,1,1.34,1.34v4.1a17,17,0,0,1,0,19.24v6.26A1.1,1.1,0,0,1,33,36.83H7.17a1.1,1.1,0,0,1-1.09-1.09V29.47a17,17,0,0,1-3-9.61,16.78,16.78,0,0,1,3-9.59V6.14A1.35,1.35,0,0,1,7.42,4.8h25.3m0-1H7.42A2.34,2.34,0,0,0,5.08,6.14V10a18,18,0,0,0,0,19.81v6a2.1,2.1,0,0,0,2.09,2.09H33a2.1,2.1,0,0,0,2.09-2.09v-6a18,18,0,0,0,0-19.86V6.14A2.34,2.34,0,0,0,32.73,3.8h0Z" fill="#3d79cc"/><g opacity="0.1"><path d="M37.06,19.86a16.88,16.88,0,0,1-3,9.62v6.26a1.11,1.11,0,0,1-1.1,1.1H7.17a1.1,1.1,0,0,1-1.09-1.1V33.94h24a1.11,1.11,0,0,0,1.1-1.1V26.59a17,17,0,0,0,0-19.24V4.8h1.55a1.34,1.34,0,0,1,1.34,1.35v4.09A16.88,16.88,0,0,1,37.06,19.86Z" fill="#231f20"/></g><path d="M22.68,0.76h6.06a0.91,0.91,0,0,1,.91.91V4.21a0,0,0,0,1,0,0H21.76a0,0,0,0,1,0,0V1.67A0.91,0.91,0,0,1,22.68.76Z" fill="none" stroke="#3d79cc" stroke-linecap="round" stroke-linejoin="round"/><path d="M20.09,32.53A11.93,11.93,0,1,1,32,20.6,11.94,11.94,0,0,1,20.09,32.53Z" fill="#e6e7e8"/><path d="M20.09,9.05A11.55,11.55,0,1,1,8.54,20.6,11.55,11.55,0,0,1,20.09,9.05m0-.75a12.3,12.3,0,1,0,12.3,12.3A12.31,12.31,0,0,0,20.09,8.3h0Z" fill="#8e9bba"/><path d="M35.67,19.81A5.15,5.15,0,0,1,30.49,25H25.23v6a5.17,5.17,0,0,1-10.34,0V25H9.63a5.16,5.16,0,1,1,0-10.33h7.14a5.17,5.17,0,0,1,6.58,0h7.13A5.17,5.17,0,0,1,35.67,19.81Z" fill="#e6e7e8" stroke="#8e9bba" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><circle cx="9.7" cy="19.89" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="30.46" cy="19.89" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="20.08" cy="30.99" r="2.64" fill="#231f20" opacity="0.15"/><circle cx="20.08" cy="20.61" r="4.45" transform="translate(-8.69 20.24) rotate(-45)" fill="#e57055" stroke="#d65b56" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.62" y1="22.08" x2="21.55" y2="19.15" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><line x1="18.62" y1="19.15" x2="21.55" y2="22.08" fill="#e57055" stroke="#58595b" stroke-linecap="round" stroke-linejoin="round"/><path d="M26,8.57H36.64a2.24,2.24,0,0,1,2.21,2.63L35.49,30.7a2.24,2.24,0,0,1-2.21,1.86H29.21A2.24,2.24,0,0,1,27,30.69L23.74,11.18A2.24,2.24,0,0,1,26,8.57Z" fill="#fff"/><path d="M38.81,11.37l-0.92,5.35H24.68l-0.89-5.36A2.23,2.23,0,0,1,26,8.76H36.61A2.23,2.23,0,0,1,38.81,11.37Z" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" opacity="0.2"/><polygon points="37.89 16.71 36.52 24.66 26.01 24.66 24.68 16.71 37.89 16.71" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" opacity="0.2"/><path d="M36.52,24.67l-1,6.1a2.22,2.22,0,0,1-2.2,1.85h-4A2.23,2.23,0,0,1,27,30.75l-1-6.08H36.52Z" fill="#2ff42f" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/><path d="M36.64,9.57A1.24,1.24,0,0,1,37.87,11L34.51,30.53a1.24,1.24,0,0,1-1.23,1H29.21a1.24,1.24,0,0,1-1.23-1L24.73,11A1.24,1.24,0,0,1,26,9.57H36.64m0-1H26a2.24,2.24,0,0,0-2.21,2.61L27,30.69a2.24,2.24,0,0,0,2.21,1.88h4.07a2.24,2.24,0,0,0,2.21-1.86l3.36-19.51a2.24,2.24,0,0,0-2.21-2.63h0Z" fill="#fff"/><path d="M36.64,8.57a2.24,2.24,0,0,1,2.21,2.63L35.49,30.7a2.24,2.24,0,0,1-2.21,1.86H29.21A2.24,2.24,0,0,1,27,30.69L23.74,11.18A2.24,2.24,0,0,1,26,8.57H36.64m0-1H26a3.24,3.24,0,0,0-3.2,3.78L26,30.86a3.23,3.23,0,0,0,3.2,2.71h4.07a3.24,3.24,0,0,0,3.2-2.69l3.36-19.51a3.24,3.24,0,0,0-3.2-3.8h0Z" fill="#3d79cc"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>wedo_whendistanceclose</title><rect x="8.46" y="4.35" width="22.79" height="13.29" rx="1" ry="1" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.36,0.54h5.82a1,1,0,0,1,1,1V4.35a0,0,0,0,1,0,0H10.36a0,0,0,0,1,0,0V1.54a1,1,0,0,1,1-1Z" fill="#fff"/><g opacity="0.1"><path d="M18.69,1.49V4.35a0.5,0.5,0,0,1-.5.5H15.5a0.5,0.5,0,0,1-.5-0.5V0.54A0.5,0.5,0,0,1,15.5,0h1.74A1.46,1.46,0,0,1,18.69,1.49Z" fill="#231f20"/></g><path d="M11.36,0.54h5.82a1,1,0,0,1,1,1V4.35a0,0,0,0,1,0,0H10.36a0,0,0,0,1,0,0V1.54a1,1,0,0,1,1-1Z" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.53,0.54h5.82a1,1,0,0,1,1,1V4.35a0,0,0,0,1,0,0H21.53a0,0,0,0,1,0,0V1.54a1,1,0,0,1,1-1Z" fill="#fff"/><g opacity="0.1"><path d="M29.85,1.49V4.35a0.5,0.5,0,0,1-.5.5H26.67a0.5,0.5,0,0,1-.5-0.5V0.54a0.5,0.5,0,0,1,.5-0.5H28.4A1.45,1.45,0,0,1,29.85,1.49Z" fill="#231f20"/></g><path d="M22.53,0.54h5.82a1,1,0,0,1,1,1V4.35a0,0,0,0,1,0,0H21.53a0,0,0,0,1,0,0V1.54a1,1,0,0,1,1-1Z" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.46,10.85h1.9V7.71A4.18,4.18,0,0,1,13.6,3.56,4.09,4.09,0,0,1,18.47,6.9,1.58,1.58,0,0,0,19.17,8h0a1.58,1.58,0,0,0,1.72,0h0a1.58,1.58,0,0,0,.7-1.08,4.09,4.09,0,0,1,4.87-3.33,4.18,4.18,0,0,1,3.24,4.15v3.14h1.56" fill="#fff"/><path d="M30.38,12.6H25.23a3.18,3.18,0,0,1-2.94-2h0a1,1,0,0,0-1.23-.52l-0.5.2a1.41,1.41,0,0,1-1.07,0l-0.37-.16a1,1,0,0,0-1.32.53h0a3.18,3.18,0,0,1-2.93,1.94H9.34a0.87,0.87,0,0,0-.87.87v3.3a0.87,0.87,0,0,0,.87.87h21a0.87,0.87,0,0,0,.87-0.87v-3.3A0.87,0.87,0,0,0,30.38,12.6Z" fill="#e6e7e8" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="14.44" cy="7.69" r="2.17" fill="#7c87a5" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="25.72" cy="7.69" r="2.17" fill="#e6e7e8" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.47,6.9A1.58,1.58,0,0,0,19.17,8h0a1.58,1.58,0,0,0,1.72,0h0a1.58,1.58,0,0,0,.7-1.08" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.46,10.85h1.9V7.71A4.18,4.18,0,0,1,13.6,3.56,4.09,4.09,0,0,1,18.47,6.9,1.58,1.58,0,0,0,19.17,8h0a1.58,1.58,0,0,0,1.72,0h0a1.58,1.58,0,0,0,.7-1.08,4.09,4.09,0,0,1,4.87-3.33,4.18,4.18,0,0,1,3.24,4.15v3.14h1.56" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><g opacity="0.1"><path d="M31.75,5.3V16.7a1.45,1.45,0,0,1-1.45,1.45H9.41A1.45,1.45,0,0,1,8,16.7v-1a0.5,0.5,0,0,1,.5-0.5H25.54a3.3,3.3,0,0,0,3.3-3.3V4.35a0.51,0.51,0,0,1,.5-0.5h1A1.45,1.45,0,0,1,31.75,5.3Z" fill="#231f20"/></g><path d="M34.15,4.43A23.69,23.69,0,0,0,32.94,2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M33.5,23.13A22.34,22.34,0,0,0,35.14,7.25" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M38.62,8.59C38.47,7.65,38.28,6.69,38,5.71" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M35.91,27.38A29.86,29.86,0,0,0,39,12.93" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M32.31,10.38q-0.1-.77-0.24-1.6" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M22.19,25.18l8.08,2.41a1.73,1.73,0,0,0,2.41-1c0.59-1.82-1.48-2.36-1.48-2.36l-6.77-2s-5.74-2-6.25-3.43a9.34,9.34,0,0,0,4-1.32c1.91-1.21,3.53-.67,3.85-3.31s-2.36-1.55-3.28-1.33-5.48.68-7.22,0.82S9.52,15,8.93,15.74a9.38,9.38,0,0,0-.87,1.33L6.23,17s-1.35-.55-3.52,4.81S2.1,28.18,2.1,28.18a13.81,13.81,0,0,1,3.38,1.37c0.65,0.6.79,2.06,3.08,3.21S20.5,38.6,20.5,38.6s1.87,1.21,2.71-.31-1-2.27-1.53-2.47-5.25-2.57-5.25-2.57l0.73-.83,8.54,3.85s1.95,1.29,3-.54-1.5-2.68-1.5-2.68l-7.95-3.66,0.23-.3,10.15,3.77S31.9,34,32.69,32.2s-1.76-2.45-1.76-2.45l-9.18-3.66Z" fill="#fff"/><path d="M30.16,21.93s2.56-2.58,2.35-9.1" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/><path d="M22.19,25.18l8.08,2.41a1.73,1.73,0,0,0,2.41-1c0.59-1.82-1.48-2.36-1.48-2.36l-6.77-2s-5.74-2-6.25-3.43a9.34,9.34,0,0,0,4-1.32c1.91-1.21,3.53-.67,3.85-3.31s-2.36-1.55-3.28-1.33-5.48.68-7.22,0.82S9.52,15,8.93,15.74a9.38,9.38,0,0,0-.87,1.33L6.23,17s-1.35-.55-3.52,4.81S2.1,28.18,2.1,28.18a13.81,13.81,0,0,1,3.38,1.37c0.65,0.6.79,2.06,3.08,3.21S20.5,38.6,20.5,38.6s1.87,1.21,2.71-.31-1-2.27-1.53-2.47-5.25-2.57-5.25-2.57l0.73-.83,8.54,3.85s1.95,1.29,3-.54-1.5-2.68-1.5-2.68l-7.95-3.66,0.23-.3,10.15,3.77S31.9,34,32.69,32.2s-1.76-2.45-1.76-2.45l-9.18-3.66Z" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>wedo_whentiltbackward</title><path d="M5.57,34.45h0a5.65,5.65,0,0,1-4,1.66H1.07" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M18.54,4.18a1.37,1.37,0,0,1-1.38,1.26H16.84l-0.18,0a2.34,2.34,0,0,0-.3,0H16a6.75,6.75,0,0,0-1.19.1,7,7,0,0,0-2,.63,7.18,7.18,0,0,0-1.84,1.32,9.61,9.61,0,0,0-.74.91,8.08,8.08,0,0,0-.51.92A6.15,6.15,0,0,0,9.2,11a4.84,4.84,0,0,0,0,.81H9.79a1.59,1.59,0,0,1,1.47,1,1.61,1.61,0,0,1-.34,1.75l-4,4A1.62,1.62,0,0,1,5.77,19a1.58,1.58,0,0,1-1.13-.46l-4-4a1.6,1.6,0,0,1,1.13-2.73H2.38a0.43,0.43,0,0,1,0,0,12.91,12.91,0,0,1,.72-2.48,11.9,11.9,0,0,1,3.2-4.48A12.39,12.39,0,0,1,7.92,3.59a11.37,11.37,0,0,1,3.58-1.4A11.52,11.52,0,0,1,13.69,2a8.88,8.88,0,0,1,1,0,11,11,0,0,1,2.2.45l0.57,0.2h0l0.19,0.08A1.39,1.39,0,0,1,18.54,4.18Z" fill="#3d79cc"/><rect x="0.91" y="15.37" width="40.55" height="11.83" rx="0.84" ry="0.84" transform="translate(-8.85 21.21) rotate(-45)" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.24,33.84l7.52-7.52a0.84,0.84,0,0,1,.6-0.25h4.08a0.84,0.84,0,0,0,.6-0.25l6.68-6.68a0.84,0.84,0,0,0,.25-0.6V14.47a0.84,0.84,0,0,1,.25-0.6l7.52-7.52a0.84,0.84,0,0,1,1.19,0l4.18,4.18a0.84,0.84,0,0,1,0,1.19L11.61,39.21a0.84,0.84,0,0,1-1.19,0L6.24,35A0.84,0.84,0,0,1,6.24,33.84Z" fill="#e6e7e8" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.19,17.24a5.07,5.07,0,0,0-5.12,5" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><polyline points="21.33 18.72 22.72 17.36 21.36 15.97" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><polyline points="15.84 21.4 17.2 22.78 18.58 21.42" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><path d="M23,3.53h7a0,0,0,0,1,0,0V5.92a1,1,0,0,1-1,1H24a1,1,0,0,1-1-1V3.53A0,0,0,0,1,23,3.53Z" transform="translate(48.9 -9.81) rotate(135)" fill="#fff"/><path d="M24.52,4.79l2.4,2.4L25.22,8.88l-1.8-1.8a0.84,0.84,0,0,1,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M23,3.53h7a0,0,0,0,1,0,0V5.92a1,1,0,0,1-1,1H24a1,1,0,0,1-1-1V3.53A0,0,0,0,1,23,3.53Z" transform="translate(48.9 -9.81) rotate(135)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M16,10.55h7a0,0,0,0,1,0,0v2.39a1,1,0,0,1-1,1H17a1,1,0,0,1-1-1V10.55a0,0,0,0,1,0,0Z" transform="translate(41.88 7.15) rotate(135)" fill="#fff"/><path d="M17.49,11.82l2.4,2.4L18.2,15.91l-1.8-1.8a0.84,0.84,0,0,1,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M16,10.55h7a0,0,0,0,1,0,0v2.39a1,1,0,0,1-1,1H17a1,1,0,0,1-1-1V10.55a0,0,0,0,1,0,0Z" transform="translate(41.88 7.15) rotate(135)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.67,17.86h7a0,0,0,0,1,0,0v2.39a1,1,0,0,1-1,1h-5a1,1,0,0,1-1-1V17.86A0,0,0,0,1,8.67,17.86Z" transform="translate(34.57 24.8) rotate(135)" fill="#fff"/><path d="M10.18,19.13l2.4,2.4-1.69,1.69-1.8-1.8a0.84,0.84,0,0,1,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M8.67,17.86h7a0,0,0,0,1,0,0v2.39a1,1,0,0,1-1,1h-5a1,1,0,0,1-1-1V17.86A0,0,0,0,1,8.67,17.86Z" transform="translate(34.57 24.8) rotate(135)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.64,24.89h7a0,0,0,0,1,0,0v2.39a1,1,0,0,1-1,1h-5a1,1,0,0,1-1-1V24.89a0,0,0,0,1,0,0Z" transform="translate(27.54 41.76) rotate(135)" fill="#fff"/><path d="M3.15,26.15l2.4,2.4L3.86,30.24l-1.8-1.8a0.84,0.84,0,0,1,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M1.64,24.89h7a0,0,0,0,1,0,0v2.39a1,1,0,0,1-1,1h-5a1,1,0,0,1-1-1V24.89a0,0,0,0,1,0,0Z" transform="translate(27.54 41.76) rotate(135)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M38.51,9.93L13.42,35a3.38,3.38,0,0,1-4.78,0L3.87,30.24l-0.6.6a0.84,0.84,0,0,0,0,1.19l7.17,7.17a0.84,0.84,0,0,0,1.19,0L39.1,11.73a0.84,0.84,0,0,0,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M1.33,13.79l4,4a0.61,0.61,0,0,0,.85,0l4-4a0.6,0.6,0,0,0-.43-1H8.24c0-.07,0-0.24,0-0.5a6.31,6.31,0,0,1,0-1.43,7.05,7.05,0,0,1,.56-2,8.57,8.57,0,0,1,.59-1.06,10.47,10.47,0,0,1,.84-1,7.76,7.76,0,0,1,2.14-1.55,8.16,8.16,0,0,1,2.31-.72,8.29,8.29,0,0,1,1.76-.1c0.21,0,.4,0,0.52,0l0.19,0a0.39,0.39,0,0,0,.43-0.35,0.4,0.4,0,0,0-.24-0.41h0s-0.23-.1-0.69-0.25a10,10,0,0,0-2-.41A10,10,0,0,0,8.44,4.45,10.49,10.49,0,0,0,7,5.51a11.1,11.1,0,0,0-1.27,1.3A11.29,11.29,0,0,0,4,9.62a11.67,11.67,0,0,0-.66,2.27c-0.08.47-.12,0.78-0.13,0.88H1.75A0.6,0.6,0,0,0,1.33,13.79Z" fill="#4c97ff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>start-when-tilted-forward</title><path d="M5.66,5.61h0A5.65,5.65,0,0,1,4,1.61V1.11" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path d="M39.46,14.5l-4,4a1.58,1.58,0,0,1-1.13.46,1.65,1.65,0,0,1-1.14-.46l-4-4a1.6,1.6,0,0,1,1.15-2.72h0.63a6.37,6.37,0,0,0,0-.81,6,6,0,0,0-.47-1.69,6.43,6.43,0,0,0-.51-0.92,7.39,7.39,0,0,0-.74-0.91A6.72,6.72,0,0,0,27.3,6.09a6.83,6.83,0,0,0-2-.63,6.37,6.37,0,0,0-1.17-.1H23.72a2.73,2.73,0,0,0-.31,0l-0.18,0H22.92A1.37,1.37,0,0,1,21.54,4.2a1.39,1.39,0,0,1,.83-1.44l0.2-.08h0l0.58-.2A11.43,11.43,0,0,1,25.37,2c0.33,0,.67,0,1,0a11.71,11.71,0,0,1,2.2.21A11.28,11.28,0,0,1,32.16,3.6a10.87,10.87,0,0,1,1.59,1.15,12,12,0,0,1,1.4,1.43,12.25,12.25,0,0,1,2.54,5.54v0h0.64A1.6,1.6,0,0,1,39.46,14.5Z" fill="#3d79cc"/><rect x="12.98" y="1.01" width="11.83" height="40.55" rx="0.84" ry="0.84" transform="translate(-9.52 19.59) rotate(-45)" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M33.84,33.84l-7.52-7.52a0.84,0.84,0,0,0-.6-0.25H21.64a0.84,0.84,0,0,1-.6-0.25l-6.68-6.68a0.84,0.84,0,0,1-.25-0.6V14.47a0.84,0.84,0,0,0-.25-0.6L6.35,6.35a0.84,0.84,0,0,0-1.19,0L1,10.53a0.84,0.84,0,0,0,0,1.19L28.46,39.21a0.84,0.84,0,0,0,1.19,0L33.84,35A0.84,0.84,0,0,0,33.84,33.84Z" fill="#e6e7e8" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.89,17.24a5.07,5.07,0,0,1,5.12,5" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><polyline points="18.74 18.72 17.36 17.36 18.72 15.97" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><polyline points="24.24 21.4 22.88 22.78 21.5 21.42" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><path d="M11.11,3.53h5a1,1,0,0,1,1,1V6.92a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V4.53A1,1,0,0,1,11.11,3.53Z" transform="translate(7.67 -8.08) rotate(45)" fill="#fff"/><path d="M15.56,4.79l-2.4,2.4,1.69,1.69,1.8-1.8a0.84,0.84,0,0,0,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M11.11,3.53h5a1,1,0,0,1,1,1V6.92a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V4.53A1,1,0,0,1,11.11,3.53Z" transform="translate(7.67 -8.08) rotate(45)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.14,10.55h5a1,1,0,0,1,1,1v2.39a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V11.55A1,1,0,0,1,18.14,10.55Z" transform="translate(14.7 -10.99) rotate(45)" fill="#fff"/><path d="M22.59,11.82l-2.4,2.4,1.69,1.69,1.8-1.8a0.84,0.84,0,0,0,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M18.14,10.55h5a1,1,0,0,1,1,1v2.39a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V11.55A1,1,0,0,1,18.14,10.55Z" transform="translate(14.7 -10.99) rotate(45)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.45,17.86h5a1,1,0,0,1,1,1v2.39a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V18.86a1,1,0,0,1,1-1Z" transform="translate(22.01 -14.02) rotate(45)" fill="#fff"/><path d="M29.9,19.13l-2.4,2.4,1.69,1.69,1.8-1.8a0.84,0.84,0,0,0,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M25.45,17.86h5a1,1,0,0,1,1,1v2.39a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V18.86a1,1,0,0,1,1-1Z" transform="translate(22.01 -14.02) rotate(45)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M32.47,24.89h5a1,1,0,0,1,1,1v2.39a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V25.89A1,1,0,0,1,32.47,24.89Z" transform="translate(29.03 -16.93) rotate(45)" fill="#fff"/><path d="M36.92,26.15l-2.4,2.4,1.69,1.69,1.8-1.8a0.84,0.84,0,0,0,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M32.47,24.89h5a1,1,0,0,1,1,1v2.39a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V25.89A1,1,0,0,1,32.47,24.89Z" transform="translate(29.03 -16.93) rotate(45)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.57,9.93L26.65,35a3.38,3.38,0,0,0,4.78,0l4.78-4.78,0.6,0.6a0.84,0.84,0,0,1,0,1.19l-7.17,7.17a0.84,0.84,0,0,1-1.19,0L1,11.73a0.84,0.84,0,0,1,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M38.75,13.79l-4,4a0.61,0.61,0,0,1-.85,0l-4-4a0.6,0.6,0,0,1,.43-1h1.55c0-.07,0-0.24,0-0.5a6.31,6.31,0,0,0,0-1.43,7.05,7.05,0,0,0-.56-2,8.57,8.57,0,0,0-.59-1.06,10.47,10.47,0,0,0-.84-1,7.76,7.76,0,0,0-2.14-1.55,8.16,8.16,0,0,0-2.31-.72,8.29,8.29,0,0,0-1.76-.1c-0.21,0-.4,0-0.52,0L23,4.44a0.39,0.39,0,0,1-.43-0.35,0.4,0.4,0,0,1,.24-0.41h0s0.23-.1.69-0.25a10,10,0,0,1,2-.41,10,10,0,0,1,6.18,1.43A10.49,10.49,0,0,1,33.1,5.51a11.1,11.1,0,0,1,1.27,1.3A11.29,11.29,0,0,1,36,9.62a11.67,11.67,0,0,1,.66,2.27c0.08,0.47.12,0.78,0.13,0.88h1.5A0.6,0.6,0,0,1,38.75,13.79Z" fill="#4c97ff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>start-when-tilted-left</title><rect x="11.06" y="15.3" width="20.28" height="11.83" rx="1" ry="1" transform="translate(51.2 21.23) rotate(135)" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.85,10.63h7a0,0,0,0,1,0,0V13a1,1,0,0,1-1,1h-5a1,1,0,0,1-1-1V10.63a0,0,0,0,1,0,0Z" transform="translate(41.72 7.37) rotate(135)" fill="#fff"/><path d="M13.43,26.59L15,25a0.84,0.84,0,0,1,.6-0.25h4.08a0.84,0.84,0,0,0,.6-0.25l4.28-4.28a0.84,0.84,0,0,0,.25-0.6V15.59A0.84,0.84,0,0,1,25,15l1.54-1.54a0.84,0.84,0,0,1,1.19,0L32,17.63a0.84,0.84,0,0,1,0,1.19L18.81,32a0.84,0.84,0,0,1-1.19,0l-4.18-4.18A0.84,0.84,0,0,1,13.43,26.59Z" fill="#e6e7e8" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M22.21,17.17a5.07,5.07,0,0,0-5.12,5" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><polyline points="21.35 18.65 22.74 17.29 21.38 15.91" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><polyline points="15.86 21.33 17.22 22.72 18.6 21.36" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><path d="M17.36,11.9l2.4,2.4L18.07,16l-1.8-1.8a0.84,0.84,0,0,1,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M15.85,10.63h7a0,0,0,0,1,0,0V13a1,1,0,0,1-1,1h-5a1,1,0,0,1-1-1V10.63a0,0,0,0,1,0,0Z" transform="translate(41.72 7.37) rotate(135)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.83,17.65h7a0,0,0,0,1,0,0V20a1,1,0,0,1-1,1h-5a1,1,0,0,1-1-1V17.65a0,0,0,0,1,0,0Z" transform="translate(34.69 24.33) rotate(135)" fill="#fff"/><path d="M10.34,18.92l2.4,2.4L11,23l-1.8-1.8a0.84,0.84,0,0,1,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M8.83,17.65h7a0,0,0,0,1,0,0V20a1,1,0,0,1-1,1h-5a1,1,0,0,1-1-1V17.65a0,0,0,0,1,0,0Z" transform="translate(34.69 24.33) rotate(135)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M31.36,17L20.61,27.78a3.38,3.38,0,0,1-4.78,0L11.05,23l-0.6.6a0.84,0.84,0,0,0,0,1.19L17.62,32a0.84,0.84,0,0,0,1.19,0L32,18.83a0.84,0.84,0,0,0,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M18.54,4.18a1.37,1.37,0,0,1-1.38,1.26H16.84l-0.18,0a2.34,2.34,0,0,0-.3,0H16a6.75,6.75,0,0,0-1.19.1,7,7,0,0,0-2,.63,7.18,7.18,0,0,0-1.84,1.32,9.61,9.61,0,0,0-.74.91,8.08,8.08,0,0,0-.51.92A6.15,6.15,0,0,0,9.2,11a4.84,4.84,0,0,0,0,.81H9.79a1.59,1.59,0,0,1,1.47,1,1.61,1.61,0,0,1-.34,1.75l-4,4A1.62,1.62,0,0,1,5.77,19a1.58,1.58,0,0,1-1.13-.46l-4-4a1.6,1.6,0,0,1,1.13-2.73H2.38a0.43,0.43,0,0,1,0,0,12.91,12.91,0,0,1,.72-2.48,11.9,11.9,0,0,1,3.2-4.48A12.39,12.39,0,0,1,7.92,3.59a11.37,11.37,0,0,1,3.58-1.4A11.52,11.52,0,0,1,13.69,2a8.88,8.88,0,0,1,1,0,11,11,0,0,1,2.2.45l0.57,0.2h0l0.19,0.08A1.39,1.39,0,0,1,18.54,4.18Z" fill="#3d79cc"/><path d="M1.33,13.79l4,4a0.61,0.61,0,0,0,.85,0l4-4a0.6,0.6,0,0,0-.43-1H8.24c0-.07,0-0.24,0-0.5a6.31,6.31,0,0,1,0-1.43,7.05,7.05,0,0,1,.56-2,8.57,8.57,0,0,1,.59-1.06,10.47,10.47,0,0,1,.84-1,7.76,7.76,0,0,1,2.14-1.55,8.16,8.16,0,0,1,2.31-.72,8.29,8.29,0,0,1,1.76-.1c0.21,0,.4,0,0.52,0l0.19,0a0.39,0.39,0,0,0,.43-0.35,0.4,0.4,0,0,0-.24-0.41h0s-0.23-.1-0.69-0.25a10,10,0,0,0-2-.41A10,10,0,0,0,8.44,4.45,10.49,10.49,0,0,0,7,5.51a11.1,11.1,0,0,0-1.27,1.3A11.29,11.29,0,0,0,4,9.62a11.67,11.67,0,0,0-.66,2.27c-0.08.47-.12,0.78-0.13,0.88H1.75A0.6,0.6,0,0,0,1.33,13.79Z" fill="#4c97ff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>start-when-tilted-right</title><path d="M39.46,14.5l-4,4a1.58,1.58,0,0,1-1.13.46,1.65,1.65,0,0,1-1.14-.46l-4-4a1.6,1.6,0,0,1,1.15-2.72h0.63a6.37,6.37,0,0,0,0-.81,6,6,0,0,0-.47-1.69,6.43,6.43,0,0,0-.51-0.92,7.39,7.39,0,0,0-.74-0.91A6.72,6.72,0,0,0,27.3,6.09a6.83,6.83,0,0,0-2-.63,6.37,6.37,0,0,0-1.17-.1H23.72a2.73,2.73,0,0,0-.31,0l-0.18,0H22.92A1.37,1.37,0,0,1,21.54,4.2a1.39,1.39,0,0,1,.83-1.44l0.2-.08h0l0.58-.2A11.43,11.43,0,0,1,25.37,2c0.33,0,.67,0,1,0a11.71,11.71,0,0,1,2.2.21A11.28,11.28,0,0,1,32.16,3.6a10.87,10.87,0,0,1,1.59,1.15,12,12,0,0,1,1.4,1.43,12.25,12.25,0,0,1,2.54,5.54v0h0.64A1.6,1.6,0,0,1,39.46,14.5Z" fill="#3d79cc"/><rect x="8.64" y="15.3" width="20.28" height="11.83" rx="1" ry="1" transform="translate(20.5 -7.07) rotate(45)" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M18.17,10.63h5a1,1,0,0,1,1,1V14a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V11.63A1,1,0,0,1,18.17,10.63Z" transform="translate(14.76 -10.99) rotate(45)" fill="#fff"/><path d="M26.55,26.59L25,25a0.84,0.84,0,0,0-.6-0.25H20.33a0.84,0.84,0,0,1-.6-0.25l-4.28-4.28a0.84,0.84,0,0,1-.25-0.6V15.59A0.84,0.84,0,0,0,15,15l-1.54-1.54a0.84,0.84,0,0,0-1.19,0L8,17.63a0.84,0.84,0,0,0,0,1.19L21.17,32a0.84,0.84,0,0,0,1.19,0l4.18-4.18A0.84,0.84,0,0,0,26.55,26.59Z" fill="#e6e7e8" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.77,17.17a5.07,5.07,0,0,1,5.12,5" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><polyline points="18.63 18.65 17.25 17.29 18.61 15.91" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><polyline points="24.13 21.33 22.77 22.72 21.38 21.36" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75"/><path d="M22.62,11.9l-2.4,2.4L21.91,16l1.8-1.8a0.84,0.84,0,0,0,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M18.17,10.63h5a1,1,0,0,1,1,1V14a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V11.63A1,1,0,0,1,18.17,10.63Z" transform="translate(14.76 -10.99) rotate(45)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M25.2,17.65h5a1,1,0,0,1,1,1V21a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V18.65A1,1,0,0,1,25.2,17.65Z" transform="translate(21.79 -13.9) rotate(45)" fill="#fff"/><path d="M29.64,18.92l-2.4,2.4L28.94,23l1.8-1.8a0.84,0.84,0,0,0,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M25.2,17.65h5a1,1,0,0,1,1,1V21a0,0,0,0,1,0,0h-7a0,0,0,0,1,0,0V18.65A1,1,0,0,1,25.2,17.65Z" transform="translate(21.79 -13.9) rotate(45)" fill="none" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.63,17L19.37,27.78a3.38,3.38,0,0,0,4.78,0L28.93,23l0.6,0.6a0.84,0.84,0,0,1,0,1.19L22.37,32a0.84,0.84,0,0,1-1.19,0L8,18.83a0.84,0.84,0,0,1,0-1.19Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><path d="M38.75,13.79l-4,4a0.61,0.61,0,0,1-.85,0l-4-4a0.6,0.6,0,0,1,.43-1h1.55c0-.07,0-0.24,0-0.5a6.31,6.31,0,0,0,0-1.43,7.05,7.05,0,0,0-.56-2,8.57,8.57,0,0,0-.59-1.06,10.47,10.47,0,0,0-.84-1,7.76,7.76,0,0,0-2.14-1.55,8.16,8.16,0,0,0-2.31-.72,8.29,8.29,0,0,0-1.76-.1c-0.21,0-.4,0-0.52,0L23,4.44a0.39,0.39,0,0,1-.43-0.35,0.4,0.4,0,0,1,.24-0.41h0s0.23-.1.69-0.25a10,10,0,0,1,2-.41,10,10,0,0,1,6.18,1.43A10.49,10.49,0,0,1,33.1,5.51a11.1,11.1,0,0,1,1.27,1.3A11.29,11.29,0,0,1,36,9.62a11.67,11.67,0,0,1,.66,2.27c0.08,0.47.12,0.78,0.13,0.88h1.5A0.6,0.6,0,0,1,38.75,13.79Z" fill="#4c97ff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><title>start-when-tilted-any</title><rect x="11.7" y="3.71" width="16.77" height="32.6" rx="0.85" ry="0.85" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M11.7,34.61H23.38a3.38,3.38,0,0,0,3.38-3.38V3.81h0.85a0.84,0.84,0,0,1,.84.84v30.8a0.84,0.84,0,0,1-.84.84H12.54a0.84,0.84,0,0,1-.84-0.84V34.61Z" fill="#231f20" stroke="#231f20" stroke-linecap="round" stroke-linejoin="round" opacity="0.1"/><circle cx="24" cy="31.62" r="2.59" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="16.16" cy="31.62" r="2.59" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="24" cy="23.88" r="2.59" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="16.16" cy="23.88" r="2.59" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="24" cy="16.13" r="2.59" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="16.16" cy="16.13" r="2.59" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="24" cy="8.39" r="2.59" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><circle cx="16.16" cy="8.39" r="2.59" fill="#fff" stroke="#7c87a5" stroke-linecap="round" stroke-linejoin="round"/><path d="M34.34,25.12a1.1,1.1,0,0,1-1.1-1.1V22.88L27,21.58a1.64,1.64,0,0,1-1-.7,1.61,1.61,0,0,1-.23-1.23A1.65,1.65,0,0,1,27,18.38l6.21-1.3V16a1.11,1.11,0,0,1,1.11-1.1,1.08,1.08,0,0,1,.77.32l4,4a1.08,1.08,0,0,1,0,1.55l-4,4A1.07,1.07,0,0,1,34.34,25.12Z" fill="#4c97ff"/><path d="M34.34,15.38a0.58,0.58,0,0,1,.41.17l4,4a0.58,0.58,0,0,1,0,.84l-4,4a0.57,0.57,0,0,1-.42.18,0.6,0.6,0,0,1-.6-0.6V22.47l-6.61-1.38a1.14,1.14,0,0,1-.88-1.34,1.15,1.15,0,0,1,.88-0.88l6.61-1.38V16a0.6,0.6,0,0,1,.61-0.6m0-1h0A1.61,1.61,0,0,0,32.74,16v0.7l-5.81,1.21a2.15,2.15,0,0,0-1.65,1.65,2.11,2.11,0,0,0,.3,1.61,2.13,2.13,0,0,0,1.34.92l5.82,1.21V24a1.6,1.6,0,0,0,1.6,1.6,1.57,1.57,0,0,0,1.13-.48l4-4a1.58,1.58,0,0,0,0-2.27l-4-4a1.58,1.58,0,0,0-1.12-.47h0Z" fill="#3d79cc"/><path d="M5.63,25.12a1.08,1.08,0,0,1-.77-0.32l-4-4a1.08,1.08,0,0,1,0-1.55l4-4a1.07,1.07,0,0,1,.77-0.32A1.1,1.1,0,0,1,6.74,16v1.14l6.21,1.3a1.63,1.63,0,0,1,0,3.2l-6.21,1.3V24A1.11,1.11,0,0,1,5.63,25.12Z" fill="#4c97ff"/><path d="M5.63,15.38a0.6,0.6,0,0,1,.6.6v1.55l6.61,1.38a1.14,1.14,0,0,1,.88,1.34,1.15,1.15,0,0,1-.88.88L6.24,22.51V24a0.6,0.6,0,0,1-.61.6,0.58,0.58,0,0,1-.41-0.17l-4-4a0.58,0.58,0,0,1,0-.84l4-4a0.57,0.57,0,0,1,.42-0.18m0-1a1.57,1.57,0,0,0-1.13.48l-4,4a1.58,1.58,0,0,0,0,2.27l4,4a1.58,1.58,0,0,0,1.12.47A1.61,1.61,0,0,0,7.24,24v-0.7l5.81-1.21a2.15,2.15,0,0,0,1.65-1.65,2.11,2.11,0,0,0-.3-1.61,2.13,2.13,0,0,0-1.34-.92L7.24,16.71V16a1.6,1.6,0,0,0-1.6-1.6h0Z" fill="#3d79cc"/><path d="M20,39.47a1.07,1.07,0,0,1-.78-0.33l-4-4a1.08,1.08,0,0,1-.24-1.19,1.09,1.09,0,0,1,1-.69h1.14L18.4,27a1.65,1.65,0,0,1,1.6-1.3,1.62,1.62,0,0,1,.34,0A1.65,1.65,0,0,1,21.6,27l1.3,6.21H24a1.1,1.1,0,0,1,.78,1.87l-4,4A1.06,1.06,0,0,1,20,39.47Z" fill="#4c97ff"/><path d="M20,26.24l0.23,0a1.15,1.15,0,0,1,.88.88l1.38,6.61H24a0.6,0.6,0,0,1,.43,1l-4,4a0.58,0.58,0,0,1-.84,0l-4-4a0.6,0.6,0,0,1,.42-1h1.55l1.38-6.61a1.14,1.14,0,0,1,1.11-.9m0-1a2.15,2.15,0,0,0-2.09,1.7L16.7,32.75H16a1.6,1.6,0,0,0-1.12,2.74l4,4a1.58,1.58,0,0,0,2.27,0l4-4A1.6,1.6,0,0,0,24,32.75h-0.7l-1.21-5.81a2.15,2.15,0,0,0-1.65-1.65,2.13,2.13,0,0,0-.44,0h0Z" fill="#3d79cc"/><path d="M20,14.26a1.6,1.6,0,0,1-.34,0A1.65,1.65,0,0,1,18.37,13l-1.3-6.21H16a1.1,1.1,0,0,1-.78-1.87l4-4a1.08,1.08,0,0,1,1.55,0l4,4A1.1,1.1,0,0,1,24,6.75H22.86L21.57,13A1.64,1.64,0,0,1,20,14.26Z" fill="#4c97ff"/><path d="M20,1a0.58,0.58,0,0,1,.42.18l4,4a0.6,0.6,0,0,1-.42,1H22.46l-1.38,6.61a1.14,1.14,0,0,1-1.11.9l-0.23,0a1.15,1.15,0,0,1-.88-0.88L17.48,6.25H16a0.6,0.6,0,0,1-.43-1l4-4A0.58,0.58,0,0,1,20,1m0-1a1.59,1.59,0,0,0-1.14.49l-4,4A1.6,1.6,0,0,0,16,7.25h0.7l1.21,5.81a2.15,2.15,0,0,0,1.65,1.65,2.13,2.13,0,0,0,2.53-1.65l1.21-5.82H24a1.6,1.6,0,0,0,1.12-2.74l-4-4A1.58,1.58,0,0,0,20,0h0Z" fill="#3d79cc"/></svg>
|
package/media/repeat.svg
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="repeat" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#CF8B17;}
|
|
7
|
+
.st1{fill:#FFFFFF;}
|
|
8
|
+
</style>
|
|
9
|
+
<title>repeat</title>
|
|
10
|
+
<path class="st0" d="M23.3,11c-0.3,0.6-0.9,1-1.5,1h-1.6c-0.1,1.3-0.5,2.5-1.1,3.6c-0.9,1.7-2.3,3.2-4.1,4.1
|
|
11
|
+
c-1.7,0.9-3.6,1.2-5.5,0.9c-1.8-0.3-3.5-1.1-4.9-2.3c-0.7-0.7-0.7-1.9,0-2.6c0.6-0.6,1.6-0.7,2.3-0.2H7c0.9,0.6,1.9,0.9,2.9,0.9
|
|
12
|
+
s1.9-0.3,2.7-0.9c1.1-0.8,1.8-2.1,1.8-3.5h-1.5c-0.9,0-1.7-0.7-1.7-1.7c0-0.4,0.2-0.9,0.5-1.2l4.4-4.4c0.7-0.6,1.7-0.6,2.4,0L23,9.2
|
|
13
|
+
C23.5,9.7,23.6,10.4,23.3,11z"/>
|
|
14
|
+
<path class="st1" d="M21.8,11h-2.6c0,1.5-0.3,2.9-1,4.2c-0.8,1.6-2.1,2.8-3.7,3.6c-1.5,0.8-3.3,1.1-4.9,0.8c-1.6-0.2-3.2-1-4.4-2.1
|
|
15
|
+
c-0.4-0.3-0.4-0.9-0.1-1.2c0.3-0.4,0.9-0.4,1.2-0.1l0,0c1,0.7,2.2,1.1,3.4,1.1s2.3-0.3,3.3-1c0.9-0.6,1.6-1.5,2-2.6
|
|
16
|
+
c0.3-0.9,0.4-1.8,0.2-2.8h-2.4c-0.4,0-0.7-0.3-0.7-0.7c0-0.2,0.1-0.3,0.2-0.4l4.4-4.4c0.3-0.3,0.7-0.3,0.9,0L22,9.8
|
|
17
|
+
c0.3,0.3,0.4,0.6,0.3,0.9S22,11,21.8,11z"/>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="rotate-clockwise" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#3d79cc;}.cls-2{fill:#fff;}</style></defs><title>rotate-clockwise</title><path class="cls-1" d="M20.34,18.21a10.24,10.24,0,0,1-8.1,4.22,2.26,2.26,0,0,1-.16-4.52h0a5.58,5.58,0,0,0,4.25-2.53,5.06,5.06,0,0,0,.54-4.62A4.25,4.25,0,0,0,15.55,9a4.31,4.31,0,0,0-2-.8A4.82,4.82,0,0,0,10.4,9l1.12,1.41A1.59,1.59,0,0,1,10.36,13H2.67a1.56,1.56,0,0,1-1.26-.63A1.54,1.54,0,0,1,1.13,11L2.85,3.57A1.59,1.59,0,0,1,4.38,2.4,1.57,1.57,0,0,1,5.62,3L6.7,4.35a10.66,10.66,0,0,1,7.72-1.68A9.88,9.88,0,0,1,19,4.81,9.61,9.61,0,0,1,21.83,9,10.08,10.08,0,0,1,20.34,18.21Z"/><path class="cls-2" d="M19.56,17.65a9.29,9.29,0,0,1-7.35,3.83,1.31,1.31,0,0,1-.08-2.62,6.53,6.53,0,0,0,5-2.92,6.05,6.05,0,0,0,.67-5.51,5.32,5.32,0,0,0-1.64-2.16,5.21,5.21,0,0,0-2.48-1A5.86,5.86,0,0,0,9,8.84L10.74,11a.59.59,0,0,1-.43,1H2.7a.6.6,0,0,1-.6-.75L3.81,3.83a.59.59,0,0,1,1-.21l1.67,2.1a9.71,9.71,0,0,1,7.75-2.07,8.84,8.84,0,0,1,4.12,1.92,8.68,8.68,0,0,1,2.54,3.72A9.14,9.14,0,0,1,19.56,17.65Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="rotate-counter-clockwise" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#3d79cc;}.cls-2{fill:#fff;}</style></defs><title>rotate-counter-clockwise</title><path class="cls-1" d="M22.68,12.2a1.6,1.6,0,0,1-1.27.63H13.72a1.59,1.59,0,0,1-1.16-2.58l1.12-1.41a4.82,4.82,0,0,0-3.14-.77,4.31,4.31,0,0,0-2,.8,4.25,4.25,0,0,0-1.34,1.73,5.06,5.06,0,0,0,.54,4.62A5.58,5.58,0,0,0,12,17.74h0a2.26,2.26,0,0,1-.16,4.52A10.25,10.25,0,0,1,3.74,18,10.14,10.14,0,0,1,2.25,8.78,9.7,9.7,0,0,1,5.08,4.64,9.92,9.92,0,0,1,9.66,2.5a10.66,10.66,0,0,1,7.72,1.68l1.08-1.35a1.57,1.57,0,0,1,1.24-.6,1.6,1.6,0,0,1,1.54,1.21l1.7,7.37A1.57,1.57,0,0,1,22.68,12.2Z"/><path class="cls-2" d="M21.38,11.83H13.77a.59.59,0,0,1-.43-1l1.75-2.19a5.9,5.9,0,0,0-4.7-1.58,5.07,5.07,0,0,0-4.11,3.17A6,6,0,0,0,7,15.77a6.51,6.51,0,0,0,5,2.92,1.31,1.31,0,0,1-.08,2.62,9.3,9.3,0,0,1-7.35-3.82A9.16,9.16,0,0,1,3.17,9.12,8.51,8.51,0,0,1,5.71,5.4,8.76,8.76,0,0,1,9.82,3.48a9.71,9.71,0,0,1,7.75,2.07l1.67-2.1a.59.59,0,0,1,1,.21L22,11.08A.59.59,0,0,1,21.38,11.83Z"/></svg>
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 51 (57462) - http://www.bohemiancoding.com/sketch -->
|
|
4
|
+
<title>not-connected</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs></defs>
|
|
7
|
+
<g id="not-connected" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
+
<g id="Group">
|
|
9
|
+
<circle id="Oval" fill="#FF8C1A" cx="10" cy="10" r="10"></circle>
|
|
10
|
+
<path d="M10,11.4248721 C9.19745507,11.4248721 8.5477052,12.0648358 8.5477052,12.8552932 C8.5477052,13.6457506 9.19745507,14.2857143 10,14.2857143 C10.8025449,14.2857143 11.4522948,13.6457506 11.4522948,12.8552932 C11.4522948,12.0648358 10.8025449,11.4248721 10,11.4248721 M10.8336973,10.1215891 C10.464319,10.9363689 9.53568103,10.9363689 9.16630268,10.1215891 L7.98696216,7.53489722 C7.61758381,6.72573655 8.08041933,5.71428571 8.82065948,5.71428571 L11.1793405,5.71428571 C11.9195807,5.71428571 12.3824162,6.72573655 12.0130378,7.53489722 L10.8336973,10.1215891 Z" id="Fill-1" fill="#FFFFFF"></path>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 51 (57462) - http://www.bohemiancoding.com/sketch -->
|
|
4
|
+
<title>connected</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs></defs>
|
|
7
|
+
<g id="connected" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
+
<g id="Group">
|
|
9
|
+
<circle id="Oval" fill="#0FBD8C" cx="10" cy="10" r="10"></circle>
|
|
10
|
+
<path d="M8.4575,14.9846429 C8.09178571,14.9846429 7.72607143,14.8446429 7.4475,14.5660714 L4.70464286,11.8232143 C4.14607143,11.2646429 4.14607143,10.3617857 4.70464286,9.80321429 C5.26321429,9.24464286 6.16607143,9.24464286 6.72464286,9.80321429 L8.4575,11.5360714 L13.8617857,6.13321429 C14.4189286,5.57464286 15.3232143,5.57464286 15.8817857,6.13321429 C16.4389286,6.69035714 16.4389286,7.59464286 15.8817857,8.15321429 L9.4675,14.5660714 C9.18892857,14.8446429 8.82321429,14.9846429 8.4575,14.9846429" id="Fill-1" fill="#FFFFFF"></path>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><defs><style>.cls-1{fill:#231f20;opacity:0.15;}.cls-2{fill:#fff;}.cls-3{opacity:0.75;}.cls-4{fill:none;stroke:#575e75;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}</style></defs><title>zoom-in</title><circle class="cls-1" cx="18" cy="18" r="18"/><circle class="cls-2" cx="18" cy="18" r="16"/><g class="cls-3"><circle class="cls-4" cx="18" cy="18" r="7"/><line class="cls-4" x1="23" y1="23" x2="26" y2="26"/><line class="cls-4" x1="16" y1="18" x2="20" y2="18"/><line class="cls-4" x1="18" y1="16" x2="18" y2="20"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><defs><style>.cls-1{fill:#231f20;opacity:0.15;}.cls-2{fill:#fff;}.cls-3{opacity:0.75;}.cls-4{fill:none;stroke:#575e75;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5px;}</style></defs><title>zoom-out</title><circle class="cls-1" cx="18" cy="18" r="18"/><circle class="cls-2" cx="18" cy="18" r="16"/><g class="cls-3"><circle class="cls-4" cx="18" cy="18" r="7"/><line class="cls-4" x1="23" y1="23" x2="26" y2="26"/><line class="cls-4" x1="16" y1="18" x2="20" y2="18"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><defs><style>.cls-1{fill:#231f20;opacity:0.15;}.cls-2{fill:#fff;}.cls-3{opacity:0.75;}.cls-4{fill:#575e75;}</style></defs><title>zoom-reset</title><circle class="cls-1" cx="18" cy="18" r="18"/><circle class="cls-2" cx="18" cy="18" r="16"/><g class="cls-3"><rect class="cls-4" x="13" y="14" width="10" height="2" rx="1" ry="1"/><rect class="cls-4" x="13" y="20" width="10" height="2" rx="1" ry="1"/></g></svg>
|