@globalbrain/sefirot 2.0.0-draft.8 → 2.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.
Files changed (182) hide show
  1. package/README.md +6 -6
  2. package/lib/components/SAvatar.vue +17 -17
  3. package/lib/components/SButton.vue +520 -276
  4. package/lib/components/SButtonGroup.vue +149 -0
  5. package/lib/components/SDropdown.vue +26 -150
  6. package/lib/components/SDropdownSection.vue +48 -0
  7. package/lib/components/SDropdownSectionFilter.vue +190 -0
  8. package/lib/components/SDropdownSectionFilterItem.vue +21 -0
  9. package/lib/components/SDropdownSectionFilterItemAvatar.vue +31 -0
  10. package/lib/components/SDropdownSectionFilterItemText.vue +20 -0
  11. package/lib/components/SDropdownSectionMenu.vue +39 -0
  12. package/lib/components/SIcon.vue +13 -0
  13. package/lib/components/SInputBase.vue +31 -31
  14. package/lib/components/SInputCheckbox.vue +4 -3
  15. package/lib/components/SInputCheckboxes.vue +74 -0
  16. package/lib/components/SInputDate.vue +182 -0
  17. package/lib/components/SInputDropdown.vue +159 -157
  18. package/lib/components/SInputDropdownItem.vue +46 -48
  19. package/lib/components/SInputDropdownItemAvatar.vue +99 -0
  20. package/lib/components/SInputDropdownItemText.vue +79 -16
  21. package/lib/components/SInputFile.vue +56 -60
  22. package/lib/components/SInputHMS.vue +120 -110
  23. package/lib/components/SInputNumber.vue +38 -9
  24. package/lib/components/SInputRadio.vue +39 -36
  25. package/lib/components/SInputRadios.vue +40 -53
  26. package/lib/components/SInputSelect.vue +7 -6
  27. package/lib/components/SInputSwitch.vue +193 -0
  28. package/lib/components/SInputSwitches.vue +88 -0
  29. package/lib/components/SInputText.vue +207 -62
  30. package/lib/components/SInputTextarea.vue +46 -32
  31. package/lib/components/SInputYMD.vue +123 -126
  32. package/lib/components/SMarkdown.vue +52 -0
  33. package/lib/components/SModal.vue +33 -57
  34. package/lib/components/SMount.vue +19 -0
  35. package/lib/components/SSheet.vue +50 -55
  36. package/lib/components/SSheetFooter.vue +1 -1
  37. package/lib/components/SSheetFooterAction.vue +24 -17
  38. package/lib/components/SSheetFooterActions.vue +1 -4
  39. package/lib/components/SSheetForm.vue +15 -0
  40. package/lib/components/SSheetMedium.vue +8 -10
  41. package/lib/components/SSheetTitle.vue +7 -14
  42. package/lib/components/SSnackbar.vue +58 -47
  43. package/lib/components/{SPortalSnackbars.vue → SSnackbars.vue} +17 -20
  44. package/lib/components/{icons/SIconPreloader.vue → SSpinner.vue} +5 -4
  45. package/lib/components/SStep.vue +107 -0
  46. package/lib/components/SSteps.vue +59 -0
  47. package/lib/components/STable.vue +242 -0
  48. package/lib/components/STableCell.vue +82 -0
  49. package/lib/components/STableCellAvatar.vue +69 -0
  50. package/lib/components/STableCellAvatars.vue +93 -0
  51. package/lib/components/STableCellDay.vue +40 -0
  52. package/lib/components/STableCellPill.vue +84 -0
  53. package/lib/components/STableCellText.vue +103 -0
  54. package/lib/components/STableColumn.vue +255 -0
  55. package/lib/components/STableFooter.vue +115 -0
  56. package/lib/components/STableHeader.vue +74 -0
  57. package/lib/components/STableItem.vue +38 -0
  58. package/lib/components/STooltip.vue +112 -0
  59. package/lib/composables/Dropdown.ts +40 -99
  60. package/lib/composables/Form.ts +21 -18
  61. package/lib/composables/Grid.ts +117 -0
  62. package/lib/composables/Markdown.ts +138 -0
  63. package/lib/composables/Step.ts +7 -0
  64. package/lib/composables/Table.ts +103 -0
  65. package/lib/composables/Tooltip.ts +91 -0
  66. package/lib/composables/Validation.ts +5 -9
  67. package/lib/composables/markdown/LinkPlugin.ts +45 -0
  68. package/lib/mixins/Sheet.ts +5 -3
  69. package/lib/stores/Snackbars.ts +48 -0
  70. package/lib/{assets/styles → styles}/base.css +0 -0
  71. package/lib/{assets/styles → styles}/bootstrap.css +1 -0
  72. package/lib/{assets/styles → styles}/variables.css +55 -48
  73. package/lib/support/Day.ts +8 -0
  74. package/lib/support/Num.ts +3 -0
  75. package/lib/support/Time.ts +5 -2
  76. package/lib/support/Utils.ts +4 -3
  77. package/lib/types/shims.d.ts +3 -0
  78. package/lib/validation/validators/requiredYmd.ts +1 -1
  79. package/lib/validation/validators/ymd.ts +4 -4
  80. package/package.json +59 -37
  81. package/CHANGELOG.md +0 -47
  82. package/lib/.DS_Store +0 -0
  83. package/lib/components/.DS_Store +0 -0
  84. package/lib/components/SDialog.vue +0 -140
  85. package/lib/components/SDropdownItem.vue +0 -78
  86. package/lib/components/SDropdownItemText.vue +0 -22
  87. package/lib/components/SDropdownItemUser.vue +0 -40
  88. package/lib/components/SInputDropdownItemTextTag.vue +0 -94
  89. package/lib/components/SInputDropdownItemUser.vue +0 -41
  90. package/lib/components/SInputDropdownItemUserTag.vue +0 -100
  91. package/lib/components/SPortalModals.vue +0 -74
  92. package/lib/components/icons/.DS_Store +0 -0
  93. package/lib/components/icons/SIconActivity.vue +0 -5
  94. package/lib/components/icons/SIconArrowDown.vue +0 -5
  95. package/lib/components/icons/SIconArrowLeft.vue +0 -5
  96. package/lib/components/icons/SIconArrowRight.vue +0 -5
  97. package/lib/components/icons/SIconArrowUp.vue +0 -5
  98. package/lib/components/icons/SIconBarChart.vue +0 -7
  99. package/lib/components/icons/SIconBriefcase.vue +0 -5
  100. package/lib/components/icons/SIconBuilding.vue +0 -5
  101. package/lib/components/icons/SIconCalendar.vue +0 -5
  102. package/lib/components/icons/SIconCheck.vue +0 -5
  103. package/lib/components/icons/SIconCheckCircle.vue +0 -6
  104. package/lib/components/icons/SIconCheckCircleThin.vue +0 -6
  105. package/lib/components/icons/SIconCheckSquare.vue +0 -6
  106. package/lib/components/icons/SIconChevronDown.vue +0 -5
  107. package/lib/components/icons/SIconChevronLeft.vue +0 -5
  108. package/lib/components/icons/SIconChevronRight.vue +0 -5
  109. package/lib/components/icons/SIconChevronUp.vue +0 -5
  110. package/lib/components/icons/SIconClock.vue +0 -6
  111. package/lib/components/icons/SIconCode.vue +0 -6
  112. package/lib/components/icons/SIconDatabase.vue +0 -5
  113. package/lib/components/icons/SIconDollarSign.vue +0 -5
  114. package/lib/components/icons/SIconDownload.vue +0 -6
  115. package/lib/components/icons/SIconDownloadCloud.vue +0 -6
  116. package/lib/components/icons/SIconEdit.vue +0 -6
  117. package/lib/components/icons/SIconEdit2.vue +0 -5
  118. package/lib/components/icons/SIconEdit3.vue +0 -6
  119. package/lib/components/icons/SIconEdit3Off.vue +0 -6
  120. package/lib/components/icons/SIconExternalLink.vue +0 -6
  121. package/lib/components/icons/SIconEye.vue +0 -6
  122. package/lib/components/icons/SIconFile.vue +0 -5
  123. package/lib/components/icons/SIconFilePlus.vue +0 -6
  124. package/lib/components/icons/SIconFileText.vue +0 -8
  125. package/lib/components/icons/SIconFlag.vue +0 -5
  126. package/lib/components/icons/SIconGitBranch.vue +0 -5
  127. package/lib/components/icons/SIconGitCommit.vue +0 -5
  128. package/lib/components/icons/SIconGitPullRequest.vue +0 -6
  129. package/lib/components/icons/SIconGlobe.vue +0 -5
  130. package/lib/components/icons/SIconGrab.vue +0 -10
  131. package/lib/components/icons/SIconGrid.vue +0 -8
  132. package/lib/components/icons/SIconHome.vue +0 -5
  133. package/lib/components/icons/SIconImage.vue +0 -6
  134. package/lib/components/icons/SIconInbox.vue +0 -5
  135. package/lib/components/icons/SIconInfo.vue +0 -7
  136. package/lib/components/icons/SIconLayout.vue +0 -5
  137. package/lib/components/icons/SIconList.vue +0 -10
  138. package/lib/components/icons/SIconLock.vue +0 -5
  139. package/lib/components/icons/SIconLogout.vue +0 -6
  140. package/lib/components/icons/SIconMail.vue +0 -6
  141. package/lib/components/icons/SIconMapPin.vue +0 -6
  142. package/lib/components/icons/SIconMoon.vue +0 -5
  143. package/lib/components/icons/SIconMoreHorizontal.vue +0 -7
  144. package/lib/components/icons/SIconMoreVertical.vue +0 -7
  145. package/lib/components/icons/SIconPauseFill.vue +0 -6
  146. package/lib/components/icons/SIconPlayCircle.vue +0 -6
  147. package/lib/components/icons/SIconPlayFill.vue +0 -5
  148. package/lib/components/icons/SIconPlus.vue +0 -5
  149. package/lib/components/icons/SIconPlusCircle.vue +0 -8
  150. package/lib/components/icons/SIconPlusOff.vue +0 -7
  151. package/lib/components/icons/SIconPreloaderDark.vue +0 -52
  152. package/lib/components/icons/SIconPreloaderLight.vue +0 -52
  153. package/lib/components/icons/SIconProgress.vue +0 -5
  154. package/lib/components/icons/SIconRadio.vue +0 -6
  155. package/lib/components/icons/SIconSave.vue +0 -5
  156. package/lib/components/icons/SIconSearch.vue +0 -5
  157. package/lib/components/icons/SIconSend.vue +0 -5
  158. package/lib/components/icons/SIconSettings.vue +0 -6
  159. package/lib/components/icons/SIconShare2.vue +0 -5
  160. package/lib/components/icons/SIconSkipBackFill.vue +0 -6
  161. package/lib/components/icons/SIconSliders.vue +0 -12
  162. package/lib/components/icons/SIconSun.vue +0 -13
  163. package/lib/components/icons/SIconTelescope.vue +0 -5
  164. package/lib/components/icons/SIconTrash.vue +0 -5
  165. package/lib/components/icons/SIconTrash2.vue +0 -7
  166. package/lib/components/icons/SIconTrash2Off.vue +0 -6
  167. package/lib/components/icons/SIconTrello.vue +0 -7
  168. package/lib/components/icons/SIconUser.vue +0 -6
  169. package/lib/components/icons/SIconUsers.vue +0 -8
  170. package/lib/components/icons/SIconWarning.vue +0 -7
  171. package/lib/components/icons/SIconX.vue +0 -5
  172. package/lib/components/icons/SIconXCircle.vue +0 -6
  173. package/lib/components/icons/SIconXCircleThin.vue +0 -6
  174. package/lib/components/icons/SIconXSquare.vue +0 -6
  175. package/lib/components/icons/SIconZap.vue +0 -5
  176. package/lib/composables/Dialog.ts +0 -38
  177. package/lib/composables/Modal.ts +0 -34
  178. package/lib/composables/Snackbar.ts +0 -18
  179. package/lib/store/Sefirot.ts +0 -17
  180. package/lib/store/dialog/index.ts +0 -42
  181. package/lib/store/modal/index.ts +0 -61
  182. package/lib/store/snackbars/index.ts +0 -70
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,16c-0.3,0-0.5-0.1-0.7-0.3l-6-6c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l5.3,5.3l5.3-5.3c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-6,6C12.5,15.9,12.3,16,12,16z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M15,19c-0.3,0-0.5-0.1-0.7-0.3l-6-6c-0.4-0.4-0.4-1,0-1.4l6-6c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4L10.4,12l5.3,5.3c0.4,0.4,0.4,1,0,1.4C15.5,18.9,15.3,19,15,19z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M9,19c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l5.3-5.3L8.3,6.7c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l6,6c0.4,0.4,0.4,1,0,1.4l-6,6C9.5,18.9,9.3,19,9,19z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M18,16c-0.3,0-0.5-0.1-0.7-0.3L12,10.4l-5.3,5.3c-0.4,0.4-1,0.4-1.4,0s-0.4-1,0-1.4l6-6c0.4-0.4,1-0.4,1.4,0l6,6c0.4,0.4,0.4,1,0,1.4C18.5,15.9,18.3,16,18,16z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,23C5.9,23,1,18.1,1,12S5.9,1,12,1s11,4.9,11,11S18.1,23,12,23zM12,3c-5,0-9,4-9,9c0,5,4,9,9,9c5,0,9-4,9-9C21,7,17,3,12,3z" />
4
- <path d="M16,15c-0.2,0-0.3,0-0.4-0.1l-4-2C11.2,12.7,11,12.4,11,12V6c0-0.6,0.4-1,1-1s1,0.4,1,1v5.4l3.4,1.7c0.5,0.2,0.7,0.8,0.4,1.3C16.7,14.8,16.4,15,16,15z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M16,19c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l5.3-5.3l-5.3-5.3c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l6,6c0.4,0.4,0.4,1,0,1.4l-6,6C16.5,18.9,16.3,19,16,19z" />
4
- <path d="M8,19c-0.3,0-0.5-0.1-0.7-0.3l-6-6c-0.4-0.4-0.4-1,0-1.4l6-6c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4L3.4,12l5.3,5.3c0.4,0.4,0.4,1,0,1.4C8.5,18.9,8.3,19,8,19z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,1C7.2,1,2,2.3,2,5v14c0,2.7,5.2,4,10,4s10-1.3,10-4V5C22,2.3,16.8,1,12,1z M20,12c0,0.5-2.5,2-8,2c-5.5,0-8-1.5-8-2V7.5C5.9,8.5,9,9,12,9s6.1-0.5,8-1.5V12zM12,3c5.2,0,8,1.5,8,2s-2.8,2-8,2C6.8,7,4,5.5,4,5S6.8,3,12,3z M12,21c-5.5,0-8-1.5-8-2v-4.5c1.9,1,5,1.5,8,1.5s6.1-0.5,8-1.5V19C20,19.5,17.5,21,12,21z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M14.5,11H13V6h4c0.6,0,1-0.4,1-1s-0.4-1-1-1h-4V1c0-0.6-0.4-1-1-1s-1,0.4-1,1v3H9.5C7,4,5,6,5,8.5S7,13,9.5,13H11v5H6c-0.6,0-1,0.4-1,1s0.4,1,1,1h5v3c0,0.6,0.4,1,1,1s1-0.4,1-1v-3h1.5c2.5,0,4.5-2,4.5-4.5S17,11,14.5,11zM9.5,11C8.1,11,7,9.9,7,8.5S8.1,6,9.5,6H11v5H9.5zM14.5,18H13v-5h1.5c1.4,0,2.5,1.1,2.5,2.5S15.9,18,14.5,18z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M21,14c-0.6,0-1,0.4-1,1v4c0,0.6-0.4,1-1,1H5c-0.6,0-1-0.4-1-1v-4c0-0.6-0.4-1-1-1s-1,0.4-1,1v4c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3v-4C22,14.4,21.6,14,21,14z" />
4
- <path d="M11.3,15.7c0.1,0.1,0.2,0.2,0.3,0.2C11.7,16,11.9,16,12,16s0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2l5-5c0.4-0.4,0.4-1,0-1.4s-1-0.4-1.4,0L13,12.6V3c0-0.6-0.4-1-1-1s-1,0.4-1,1v9.6L7.7,9.3c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4L11.3,15.7z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M15.3,16.3L13,18.6V12c0-0.6-0.4-1-1-1s-1,0.4-1,1v6.6l-2.3-2.3c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4l4,4c0.1,0.1,0.2,0.2,0.3,0.2C11.7,22,11.9,22,12,22s0.3,0,0.4-0.1c0.1-0.1,0.2-0.1,0.3-0.2l4-4c0.4-0.4,0.4-1,0-1.4S15.7,15.9,15.3,16.3z" />
4
- <path d="M22.9,10.5C21.8,9,20,8,18,8c0,0,0,0,0,0h-0.5C16,3.6,11.3,1.1,6.8,2.3C1.9,3.5-1,8.4,0.3,13.2c0.4,1.4,1,2.7,2,3.7c0.4,0.4,1,0.5,1.4,0.1c0.4-0.4,0.5-1,0.1-1.4c-0.7-0.8-1.3-1.8-1.5-2.9c-1-3.7,1.3-7.6,5-8.5c3.7-1,7.6,1.3,8.5,5c0.1,0.4,0.5,0.8,1,0.8H18c0,0,0,0,0,0c1.3,0,2.5,0.6,3.3,1.7c1.3,1.8,0.8,4.3-1,5.6c-0.5,0.3-0.6,0.9-0.2,1.4c0.2,0.3,0.5,0.4,0.8,0.4c0.2,0,0.4-0.1,0.6-0.2C24.2,17,24.8,13.3,22.9,10.5z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M18,23H4c-1.7,0-3-1.3-3-3V6c0-1.7,1.3-3,3-3h7c0.6,0,1,0.4,1,1s-0.4,1-1,1H4C3.4,5,3,5.4,3,6v14c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1v-7c0-0.6,0.4-1,1-1s1,0.4,1,1v7C21,21.7,19.7,23,18,23z" />
4
- <path d="M8,17c-0.3,0-0.5-0.1-0.7-0.3C7,16.5,6.9,16.1,7,15.8l1-4c0-0.2,0.1-0.3,0.3-0.5l9.5-9.5c1.2-1.2,3.2-1.2,4.4,0c1.2,1.2,1.2,3.2,0,4.4l-9.5,9.5c-0.1,0.1-0.3,0.2-0.5,0.3l-4,1C8.2,17,8.1,17,8,17zM9.9,12.5l-0.5,2.1l2.1-0.5l9.3-9.3c0.4-0.4,0.4-1.1,0-1.6c-0.4-0.4-1.2-0.4-1.6,0l0,0L9.9,12.5z M18.5,2.5L18.5,2.5L18.5,2.5z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M2,23c-0.3,0-0.5-0.1-0.7-0.3c-0.3-0.3-0.4-0.6-0.3-1l1.5-5.5c0-0.2,0.1-0.3,0.3-0.4L16.3,2.3c1.5-1.5,3.9-1.5,5.4,0c1.5,1.5,1.5,3.9,0,5.4L8.2,21.2c-0.1,0.1-0.3,0.2-0.4,0.3L2.3,23C2.2,23,2.1,23,2,23zM4.4,17l-1,3.6l3.6-1L20.3,6.3c0.7-0.7,0.7-1.9,0-2.6s-1.9-0.7-2.6,0L4.4,17z M7.5,20.5L7.5,20.5L7.5,20.5z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M21,21h-9c-0.6,0-1-0.4-1-1s0.4-1,1-1h9c0.6,0,1,0.4,1,1S21.6,21,21,21z" />
4
- <path d="M3,21c-0.3,0-0.5-0.1-0.7-0.3C2,20.5,1.9,20.1,2,19.8l1-4c0-0.2,0.1-0.3,0.3-0.5L15.8,2.8c1.2-1.2,3.2-1.2,4.4,0c1.2,1.2,1.2,3.2,0,4.4L7.7,19.7c-0.1,0.1-0.3,0.2-0.5,0.3l-4,1C3.2,21,3.1,21,3,21zM4.9,16.5l-0.5,2.1l2.1-0.5L18.8,5.8c0.4-0.4,0.4-1.1,0-1.6c-0.4-0.4-1.2-0.4-1.6,0l0,0L4.9,16.5z M16.5,3.5L16.5,3.5L16.5,3.5z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M23.71,22.29l-22-22A1,1,0,0,0,.29,1.71L8.59,10l-5.3,5.29a1,1,0,0,0-.26.47l-1,4a1,1,0,0,0,.26.95A1,1,0,0,0,3,21a1,1,0,0,0,.24,0l4-1a1,1,0,0,0,.47-.26L13,14.41,17.59,19H12a1,1,0,0,0,0,2h7.59l2.7,2.71a1,1,0,0,0,1.42,0A1,1,0,0,0,23.71,22.29ZM6.49,18.1l-2.12.53.53-2.12,5.1-5.1L11.59,13Z" />
4
- <path d="M12.75,7.25a1,1,0,0,0,1.42,0l3-3a1.12,1.12,0,1,1,1.58,1.58l-3,3a1,1,0,0,0,1.42,1.42l3-3a3.24,3.24,0,0,0,.92-1.65,3.1,3.1,0,0,0-1.08-3,3.22,3.22,0,0,0-4.3.32L12.75,5.83a1,1,0,0,0,0,1.42Z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M18,12c-0.6,0-1,0.4-1,1v6c0,0.6-0.4,1-1,1H5c-0.6,0-1-0.4-1-1V8c0-0.6,0.4-1,1-1h6c0.6,0,1-0.4,1-1s-0.4-1-1-1H5C3.3,5,2,6.3,2,8v11c0,1.7,1.3,3,3,3h11c1.7,0,3-1.3,3-3v-6C19,12.4,18.6,12,18,12z" />
4
- <path d="M21.9,2.6c-0.1-0.2-0.3-0.4-0.5-0.5C21.3,2,21.1,2,21,2h-6c-0.6,0-1,0.4-1,1s0.4,1,1,1h3.6l-9.3,9.3c-0.4,0.4-0.4,1,0,1.4C9.5,14.9,9.7,15,10,15s0.5-0.1,0.7-0.3L20,5.4V9c0,0.6,0.4,1,1,1s1-0.4,1-1V3C22,2.9,22,2.7,21.9,2.6z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,21c-7.5,0-11.7-8.2-11.9-8.6c-0.1-0.3-0.1-0.6,0-0.9C0.3,11.2,4.5,3,12,3s11.7,8.2,11.9,8.6c0.1,0.3,0.1,0.6,0,0.9C23.7,12.8,19.5,21,12,21zM2.1,12c0.9,1.6,4.5,7,9.9,7c5.4,0,8.9-5.4,9.9-7c-0.9-1.6-4.5-7-9.9-7C6.6,5,3.1,10.4,2.1,12z" />
4
- <path d="M12,16c-2.2,0-4-1.8-4-4c0-2.2,1.8-4,4-4c2.2,0,4,1.8,4,4C16,14.2,14.2,16,12,16zM12,10c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2C14,10.9,13.1,10,12,10z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M20.9,8.6c-0.1-0.1-0.1-0.2-0.2-0.3l-7-7c-0.1-0.1-0.2-0.2-0.3-0.2C13.3,1,13.1,1,13,1H6C4.3,1,3,2.3,3,4v16c0,1.7,1.3,3,3,3h12c1.7,0,3-1.3,3-3V9C21,8.9,21,8.7,20.9,8.6z M14,4.4L17.6,8H14V4.4z M18,21H6c-0.6,0-1-0.4-1-1V4c0-0.6,0.4-1,1-1h6v6c0,0.6,0.4,1,1,1h6v10C19,20.6,18.6,21,18,21z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M20.9,7.6c-0.1-0.1-0.1-0.2-0.2-0.3l-6-6c-0.1-0.1-0.2-0.2-0.3-0.2C14.3,1,14.1,1,14,1H6C4.3,1,3,2.3,3,4v16c0,1.7,1.3,3,3,3h12c1.7,0,3-1.3,3-3V8C21,7.9,21,7.7,20.9,7.6z M15,4.4L17.6,7H15V4.4zM18,21H6c-0.6,0-1-0.4-1-1V4c0-0.6,0.4-1,1-1h7v5c0,0.6,0.4,1,1,1h5v11C19,20.6,18.6,21,18,21z" />
4
- <path d="M15,14h-2v-2c0-0.6-0.4-1-1-1s-1,0.4-1,1v2H9c-0.6,0-1,0.4-1,1s0.4,1,1,1h2v2c0,0.6,0.4,1,1,1s1-0.4,1-1v-2h2c0.6,0,1-0.4,1-1S15.6,14,15,14z" />
5
- </svg>
6
- </template>
@@ -1,8 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M20.9,7.6c-0.1-0.1-0.1-0.2-0.2-0.3l-6-6c-0.1-0.1-0.2-0.2-0.3-0.2C14.3,1,14.1,1,14,1H6C4.3,1,3,2.3,3,4v16c0,1.7,1.3,3,3,3h12c1.7,0,3-1.3,3-3V8C21,7.9,21,7.7,20.9,7.6z M15,4.4L17.6,7H15V4.4z M18,21H6c-0.6,0-1-0.4-1-1V4c0-0.6,0.4-1,1-1h7v5c0,0.6,0.4,1,1,1h5v11C19,20.6,18.6,21,18,21z" />
4
- <path d="M16,12H8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C17,12.4,16.6,12,16,12z" />
5
- <path d="M16,16H8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S16.6,16,16,16z" />
6
- <path d="M8,10h2c0.6,0,1-0.4,1-1s-0.4-1-1-1H8C7.4,8,7,8.4,7,9S7.4,10,8,10z" />
7
- </svg>
8
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M20.4,2.1C20,1.9,19.6,2,19.3,2.3c0,0-0.9,0.7-3.3,0.7c-1.3,0-2.4-0.5-3.6-0.9C11.1,1.5,9.7,1,8,1C4.8,1,3.5,2.1,3.3,2.3C3.1,2.5,3,2.7,3,3v12v7c0,0.6,0.4,1,1,1s1-0.4,1-1v-6.5C5.4,15.3,6.4,15,8,15c1.3,0,2.4,0.5,3.6,0.9c1.3,0.5,2.7,1.1,4.4,1.1c3.2,0,4.5-1.1,4.7-1.3c0.2-0.2,0.3-0.4,0.3-0.7V3C21,2.6,20.8,2.3,20.4,2.1z M19,14.5c-0.4,0.2-1.4,0.5-3,0.5c-1.3,0-2.4-0.5-3.6-0.9C11.1,13.5,9.7,13,8,13c-1.3,0-2.3,0.2-3,0.4V3.5C5.4,3.3,6.4,3,8,3c1.3,0,2.4,0.5,3.6,0.9C12.9,4.5,14.3,5,16,5c1.3,0,2.3-0.2,3-0.4V14.5z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M22,6c0-2.2-1.8-4-4-4s-4,1.8-4,4c0,1.8,1.3,3.4,3,3.8c-0.4,3.7-3.4,6.7-7.1,7.1c-0.4-1.4-1.5-2.5-2.8-2.8V3c0-0.6-0.4-1-1-1S5,2.4,5,3v11.1c-1.7,0.4-3,2-3,3.9c0,2.2,1.8,4,4,4c1.9,0,3.4-1.3,3.9-3c4.8-0.4,8.7-4.3,9.1-9.1C20.7,9.4,22,7.9,22,6z M6,20c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S7.1,20,6,20zM18,8c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S19.1,8,18,8z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M23,11h-6c0,0-0.1,0-0.1,0c-0.5-2.3-2.5-4-4.9-4c-2.4,0-4.4,1.7-4.9,4c0,0-0.1,0-0.1,0H1c-0.6,0-1,0.4-1,1s0.4,1,1,1h6c0,0,0.1,0,0.1,0c0.5,2.3,2.5,4,4.9,4c2.4,0,4.4-1.7,4.9-4c0,0,0.1,0,0.1,0h6c0.6,0,1-0.4,1-1S23.5,11,23,11z M12,15c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S13.7,15,12,15z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M19,14.1V8c0-1.7-1.3-3-3-3h-3c-0.6,0-1,0.4-1,1s0.4,1,1,1h3c0.6,0,1,0.4,1,1v6.1c-1.7,0.4-3,2-3,3.9c0,2.2,1.8,4,4,4s4-1.8,4-4C22,16.1,20.7,14.6,19,14.1zM18,20c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S19.1,20,18,20z" />
4
- <path d="M6,2C3.8,2,2,3.8,2,6c0,1.9,1.3,3.4,3,3.9V21c0,0.6,0.4,1,1,1s1-0.4,1-1V9.9c1.7-0.4,3-2,3-3.9C10,3.8,8.2,2,6,2z M6,8C4.9,8,4,7.1,4,6s0.9-2,2-2s2,0.9,2,2S7.1,8,6,8z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11S18.1,1,12,1z M20.9,11h-4c-0.2-2.8-1.1-5.4-2.7-7.7C17.8,4.2,20.5,7.3,20.9,11zM9.1,13h5.9c-0.3,2.7-1.3,5.3-2.9,7.4C10.3,18.3,9.3,15.7,9.1,13zM9.1,11c0.3-2.7,1.3-5.3,2.9-7.4c1.7,2.2,2.7,4.8,2.9,7.4H9.1z M9.7,3.3C8.2,5.6,7.3,8.2,7.1,11h-4C3.5,7.3,6.2,4.2,9.7,3.3zM3.1,13h4c0.2,2.8,1.1,5.4,2.7,7.7C6.2,19.8,3.5,16.7,3.1,13z M14.3,20.7c1.5-2.3,2.4-4.9,2.7-7.7h4C20.5,16.7,17.8,19.8,14.3,20.7z" />
4
- </svg>
5
- </template>
@@ -1,10 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <circle cx="8.83" cy="12" r="2" />
4
- <circle cx="8.83" cy="5" r="2" />
5
- <circle cx="8.83" cy="19" r="2" />
6
- <circle cx="15.17" cy="12" r="2" />
7
- <circle cx="15.17" cy="5" r="2" />
8
- <circle cx="15.17" cy="19" r="2" />
9
- </svg>
10
- </template>
@@ -1,8 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M10,11H3a1,1,0,0,1-1-1V3A1,1,0,0,1,3,2h7a1,1,0,0,1,1,1v7A1,1,0,0,1,10,11ZM4,9H9V4H4Z" />
4
- <path d="M21,11H14a1,1,0,0,1-1-1V3a1,1,0,0,1,1-1h7a1,1,0,0,1,1,1v7A1,1,0,0,1,21,11ZM15,9h5V4H15Z" />
5
- <path d="M21,22H14a1,1,0,0,1-1-1V14a1,1,0,0,1,1-1h7a1,1,0,0,1,1,1v7A1,1,0,0,1,21,22Zm-6-2h5V15H15Z" />
6
- <path d="M10,22H3a1,1,0,0,1-1-1V14a1,1,0,0,1,1-1h7a1,1,0,0,1,1,1v7A1,1,0,0,1,10,22ZM4,20H9V15H4Z" />
7
- </svg>
8
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M21.6,8.2l-9-7c-0.4-0.3-0.9-0.3-1.2,0l-9,7C2.1,8.4,2,8.7,2,9v11c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V9C22,8.7,21.9,8.4,21.6,8.2z M14,21h-4v-8h4V21zM20,20c0,0.6-0.4,1-1,1h-3v-9c0-0.6-0.4-1-1-1H9c-0.6,0-1,0.4-1,1v9H5c-0.6,0-1-0.4-1-1V9.5l8-6.2l8,6.2V20z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M19,2H5C3.3,2,2,3.3,2,5v14c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V5C22,3.3,20.7,2,19,2zM4,5c0-0.6,0.4-1,1-1h14c0.6,0,1,0.4,1,1v7.6l-3.3-3.3c-0.4-0.4-1-0.4-1.4,0L4.7,19.9C4.3,19.8,4,19.4,4,19V5z M19,20H7.4l8.6-8.6l4,4V19C20,19.6,19.6,20,19,20z" />
4
- <path d="M8.5,11C9.9,11,11,9.9,11,8.5S9.9,6,8.5,6S6,7.1,6,8.5S7.1,11,8.5,11zM8.5,8C8.8,8,9,8.2,9,8.5S8.8,9,8.5,9S8,8.8,8,8.5S8.2,8,8.5,8z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M22.9,11.6C22.9,11.6,22.9,11.6,22.9,11.6l-3.5-6.9c-0.5-1-1.5-1.7-2.7-1.7H7.2C6.1,3,5.1,3.6,4.6,4.7l-3.4,6.9c0,0,0,0,0,0C1,11.7,1,11.8,1,12v6c0,1.7,1.3,3,3,3h16c1.7,0,3-1.3,3-3v-6C23,11.8,23,11.7,22.9,11.6z M6.3,5.6C6.3,5.6,6.3,5.6,6.3,5.6C6.5,5.2,6.9,5,7.2,5h9.5c0.4,0,0.7,0.2,0.9,0.6l2.7,5.4H16c-0.3,0-0.6,0.2-0.8,0.4L13.5,14h-2.9l-1.7-2.6C8.6,11.2,8.3,11,8,11H3.6L6.3,5.6z M20,19H4c-0.6,0-1-0.4-1-1v-5h4.5l1.7,2.6C9.4,15.8,9.7,16,10,16h4c0.3,0,0.6-0.2,0.8-0.4l1.7-2.6H21v5C21,18.6,20.6,19,20,19z" />
4
- </svg>
5
- </template>
@@ -1,7 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,23C5.9,23,1,18.1,1,12S5.9,1,12,1s11,4.9,11,11S18.1,23,12,23zM12,3c-5,0-9,4-9,9c0,5,4,9,9,9c5,0,9-4,9-9C21,7,17,3,12,3z" />
4
- <path d="M12,17c-0.6,0-1-0.4-1-1v-4c0-0.6,0.4-1,1-1s1,0.4,1,1v4C13,16.6,12.6,17,12,17z" />
5
- <path d="M12,9c-0.6,0-1-0.4-1-1s0.4-1,1-1h0c0.6,0,1,0.4,1,1S12.6,9,12,9z" />
6
- </svg>
7
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M19,2H5C3.3,2,2,3.3,2,5v14c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V5C22,3.3,20.7,2,19,2z M5,4h14c0.6,0,1,0.4,1,1v3H4V5C4,4.4,4.4,4,5,4z M4,19v-9h4v10H5C4.4,20,4,19.6,4,19z M19,20h-9V10h10v9C20,19.6,19.6,20,19,20z" />
4
- </svg>
5
- </template>
@@ -1,10 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M21,7H8C7.4,7,7,6.6,7,6s0.4-1,1-1h13c0.6,0,1,0.4,1,1S21.6,7,21,7z" />
4
- <path d="M21,13H8c-0.6,0-1-0.4-1-1s0.4-1,1-1h13c0.6,0,1,0.4,1,1S21.6,13,21,13z" />
5
- <path d="M21,19H8c-0.6,0-1-0.4-1-1s0.4-1,1-1h13c0.6,0,1,0.4,1,1S21.6,19,21,19z" />
6
- <path d="M3,7C2.5,7,2,6.6,2,6s0.4-1,1-1h0c0.6,0,1,0.4,1,1S3.6,7,3,7z" />
7
- <path d="M3,13c-0.6,0-1-0.4-1-1s0.4-1,1-1h0c0.6,0,1,0.4,1,1S3.6,13,3,13z" />
8
- <path d="M3,19c-0.6,0-1-0.4-1-1s0.4-1,1-1h0c0.6,0,1,0.4,1,1S3.6,19,3,19z" />
9
- </svg>
10
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M19.64,9.82H18.55V6.55a6.55,6.55,0,0,0-13.1,0V9.82H4.36a3.28,3.28,0,0,0-3.27,3.27v7.64A3.28,3.28,0,0,0,4.36,24H19.64a3.28,3.28,0,0,0,3.27-3.27V13.09A3.28,3.28,0,0,0,19.64,9.82Zm-12-3.27a4.36,4.36,0,1,1,8.72,0V9.82H7.64ZM20.73,20.73a1.09,1.09,0,0,1-1.09,1.09H4.36a1.09,1.09,0,0,1-1.09-1.09V13.09A1.09,1.09,0,0,1,4.36,12H19.64a1.09,1.09,0,0,1,1.09,1.09Z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M8.4,21.6H3.6a1.2,1.2,0,0,1-1.2-1.2V3.6A1.2,1.2,0,0,1,3.6,2.4H8.4A1.2,1.2,0,0,0,8.4,0H3.6A3.6,3.6,0,0,0,0,3.6V20.4A3.6,3.6,0,0,0,3.6,24H8.4a1.2,1.2,0,1,0,0-2.4Z" />
4
- <path d="M23.91,12.46a1.22,1.22,0,0,0,0-.92,1.16,1.16,0,0,0-.26-.39l-6-6A1.2,1.2,0,1,0,16,6.85l3.95,4H8.4a1.2,1.2,0,0,0,0,2.4H19.9L16,17.15a1.2,1.2,0,0,0,0,1.7,1.21,1.21,0,0,0,1.7,0l6-6A1.16,1.16,0,0,0,23.91,12.46Z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M20,21H4a3,3,0,0,1-3-3V6A3,3,0,0,1,4,3H20a3,3,0,0,1,3,3V18A3,3,0,0,1,20,21ZM4,5A1,1,0,0,0,3,6V18a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V6a1,1,0,0,0-1-1Z" />
4
- <path d="M12,14a1,1,0,0,1-.57-.18l-10-7A1,1,0,1,1,2.57,5.18L12,11.78l9.43-6.6a1,1,0,1,1,1.14,1.64l-10,7A1,1,0,0,1,12,14Z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,24c-0.2,0-0.4-0.1-0.6-0.2C11.1,23.6,2,17.4,2,10C2,4.5,6.5,0,12,0c5.5,0,10,4.5,10,10c0,7.4-9.1,13.6-9.4,13.8C12.4,23.9,12.2,24,12,24zM12,2c-4.4,0-8,3.6-8,8c0,5.4,6.1,10.4,8,11.8c1.9-1.4,8-6.4,8-11.8C20,5.6,16.4,2,12,2z" />
4
- <path d="M12,14c-2.2,0-4-1.8-4-4s1.8-4,4-4c2.2,0,4,1.8,4,4S14.2,14,12,14zM12,8c-1.1,0-2,0.9-2,2s0.9,2,2,2c1.1,0,2-0.9,2-2S13.1,8,12,8z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12.1,22c-0.3,0-0.6,0-0.9,0c-5.5-0.5-9.5-5.4-9-10.9c0.4-4.8,4.2-8.6,9-9c0.4,0,0.8,0.2,1,0.5c0.2,0.3,0.2,0.8-0.1,1.1c-2,2.7-1.4,6.4,1.3,8.4c2.1,1.6,5,1.6,7.1,0c0.3-0.2,0.7-0.3,1.1-0.1c0.3,0.2,0.5,0.6,0.5,1c-0.2,2.7-1.5,5.1-3.6,6.8C16.6,21.2,14.4,22,12.1,22zM9.3,4.4c-2.9,1-5,3.6-5.2,6.8c-0.4,4.4,2.8,8.3,7.2,8.7c2.1,0.2,4.2-0.4,5.8-1.8c1.1-0.9,1.9-2.1,2.4-3.4c-2.5,0.9-5.3,0.5-7.5-1.1C9.2,11.4,8.1,7.7,9.3,4.4z" />
4
- </svg>
5
- </template>
@@ -1,7 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <circle cx="12" cy="12" r="2" />
4
- <circle cx="19" cy="12" r="2" />
5
- <circle cx="5" cy="12" r="2" />
6
- </svg>
7
- </template>
@@ -1,7 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <circle cx="12" cy="12" r="2" />
4
- <circle cx="12" cy="5" r="2" />
5
- <circle cx="12" cy="19" r="2" />
6
- </svg>
7
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M10,21H6c-0.6,0-1-0.4-1-1V4c0-0.6,0.4-1,1-1h4c0.6,0,1,0.4,1,1v16C11,20.6,10.6,21,10,21z" />
4
- <path d="M18,21h-4c-0.6,0-1-0.4-1-1V4c0-0.6,0.4-1,1-1h4c0.6,0,1,0.4,1,1v16C19,20.6,18.6,21,18,21z" />
5
- </svg>
6
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,23C5.9,23,1,18.1,1,12S5.9,1,12,1s11,4.9,11,11S18.1,23,12,23zM12,3c-5,0-9,4-9,9c0,5,4,9,9,9c5,0,9-4,9-9C21,7,17,3,12,3z" />
4
- <path d="M10,17c-0.2,0-0.3,0-0.5-0.1C9.2,16.7,9,16.4,9,16V8c0-0.4,0.2-0.7,0.5-0.9c0.3-0.2,0.7-0.2,1,0l6,4c0.3,0.2,0.4,0.5,0.4,0.8s-0.2,0.6-0.4,0.8l-6,4C10.4,16.9,10.2,17,10,17z M11,9.9v4.3l3.2-2.1L11,9.9z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M8,22c-0.3,0-0.6-0.1-0.9-0.2C6.4,21.4,6,20.7,6,20V4c0-0.7,0.4-1.4,1.1-1.8c0.6-0.3,1.4-0.3,2.1,0.1l12,8c0.6,0.4,0.9,1,0.9,1.7s-0.3,1.3-0.9,1.7l-12,8C8.8,21.9,8.4,22,8,22z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M18.9,10.9h-6v-6c0-0.6-0.4-1-1-1s-1,0.4-1,1v6h-6c-0.6,0-1,0.4-1,1s0.4,1,1,1h6v6c0,0.6,0.4,1,1,1s1-0.4,1-1v-6h6c0.6,0,1-0.4,1-1S19.5,10.9,18.9,10.9z" />
4
- </svg>
5
- </template>
@@ -1,8 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <g>
4
- <path d="M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11S18.1,1,12,1z M12,21c-5,0-9-4-9-9c0-5,4-9,9-9c5,0,9,4,9,9C21,17,17,21,12,21z" />
5
- <path d="M16,11h-3V8c0-0.6-0.4-1-1-1s-1,0.4-1,1v3H8c-0.6,0-1,0.4-1,1s0.4,1,1,1h3v3c0,0.6,0.4,1,1,1s1-0.4,1-1v-3h3c0.6,0,1-0.4,1-1S16.6,11,16,11z" />
6
- </g>
7
- </svg>
8
- </template>
@@ -1,7 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M17,13h2a1,1,0,0,0,0-2H17a1,1,0,0,0,0,2Z" />
4
- <path d="M12,8a1,1,0,0,0,1-1V5a1,1,0,0,0-2,0V7A1,1,0,0,0,12,8Z" />
5
- <path d="M23.71,22.29l-22-22A1,1,0,0,0,.29,1.71L9.59,11H5a1,1,0,0,0,0,2h6v6a1,1,0,0,0,2,0V14.41l9.29,9.3a1,1,0,0,0,1.42,0A1,1,0,0,0,23.71,22.29Z" />
6
- </svg>
7
- </template>
@@ -1,52 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
3
- <g transform="rotate(0 50 50)">
4
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
5
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.9166666666666666s" repeatCount="indefinite" />
6
- </rect>
7
- </g><g transform="rotate(30 50 50)">
8
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
9
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.8333333333333334s" repeatCount="indefinite" />
10
- </rect>
11
- </g><g transform="rotate(60 50 50)">
12
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
13
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.75s" repeatCount="indefinite" />
14
- </rect>
15
- </g><g transform="rotate(90 50 50)">
16
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
17
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.6666666666666666s" repeatCount="indefinite" />
18
- </rect>
19
- </g><g transform="rotate(120 50 50)">
20
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
21
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5833333333333334s" repeatCount="indefinite" />
22
- </rect>
23
- </g><g transform="rotate(150 50 50)">
24
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
25
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5s" repeatCount="indefinite" />
26
- </rect>
27
- </g><g transform="rotate(180 50 50)">
28
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
29
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.4166666666666667s" repeatCount="indefinite" />
30
- </rect>
31
- </g><g transform="rotate(210 50 50)">
32
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
33
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.3333333333333333s" repeatCount="indefinite" />
34
- </rect>
35
- </g><g transform="rotate(240 50 50)">
36
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
37
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.25s" repeatCount="indefinite" />
38
- </rect>
39
- </g><g transform="rotate(270 50 50)">
40
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
41
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.16666666666666666s" repeatCount="indefinite" />
42
- </rect>
43
- </g><g transform="rotate(300 50 50)">
44
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
45
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.08333333333333333s" repeatCount="indefinite" />
46
- </rect>
47
- </g><g transform="rotate(330 50 50)">
48
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#000000">
49
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite" />
50
- </rect>
51
- </g></svg>
52
- </template>
@@ -1,52 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid">
3
- <g transform="rotate(0 50 50)">
4
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
5
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.9166666666666666s" repeatCount="indefinite" />
6
- </rect>
7
- </g><g transform="rotate(30 50 50)">
8
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
9
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.8333333333333334s" repeatCount="indefinite" />
10
- </rect>
11
- </g><g transform="rotate(60 50 50)">
12
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
13
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.75s" repeatCount="indefinite" />
14
- </rect>
15
- </g><g transform="rotate(90 50 50)">
16
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
17
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.6666666666666666s" repeatCount="indefinite" />
18
- </rect>
19
- </g><g transform="rotate(120 50 50)">
20
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
21
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5833333333333334s" repeatCount="indefinite" />
22
- </rect>
23
- </g><g transform="rotate(150 50 50)">
24
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
25
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.5s" repeatCount="indefinite" />
26
- </rect>
27
- </g><g transform="rotate(180 50 50)">
28
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
29
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.4166666666666667s" repeatCount="indefinite" />
30
- </rect>
31
- </g><g transform="rotate(210 50 50)">
32
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
33
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.3333333333333333s" repeatCount="indefinite" />
34
- </rect>
35
- </g><g transform="rotate(240 50 50)">
36
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
37
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.25s" repeatCount="indefinite" />
38
- </rect>
39
- </g><g transform="rotate(270 50 50)">
40
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
41
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.16666666666666666s" repeatCount="indefinite" />
42
- </rect>
43
- </g><g transform="rotate(300 50 50)">
44
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
45
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="-0.08333333333333333s" repeatCount="indefinite" />
46
- </rect>
47
- </g><g transform="rotate(330 50 50)">
48
- <rect x="48" y="23" rx="9.6" ry="4.6000000000000005" width="4" height="14" fill="#ffffff">
49
- <animate attributeName="opacity" values="1;0" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite" />
50
- </rect>
51
- </g></svg>
52
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M21.81,13,16.56,7.25A.75.75,0,0,0,16,7H14.16l-1.6-1.75A.75.75,0,0,0,12,5H4.25A2.21,2.21,0,0,0,2,7.17v8.66A2.21,2.21,0,0,0,4.25,18H6a2.2,2.2,0,0,0,2.23,2H16a.75.75,0,0,0,.56-.25L21.81,14A.71.71,0,0,0,21.81,13Zm-6.15,5.54H8.25a.74.74,0,0,1-.75-.73V9.17a.74.74,0,0,1,.75-.73h7.41l4.59,5.06Z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,15c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S13.7,15,12,15zM12,11c-0.6,0-1,0.4-1,1s0.4,1,1,1s1-0.4,1-1S12.6,11,12,11z" />
4
- <path d="M19.1,20.1c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4c3.5-3.5,3.5-9.2,0-12.7c-0.4-0.4-0.4-1,0-1.4c0.4-0.4,1-0.4,1.4,0c4.3,4.3,4.3,11.3,0,15.6C19.6,20,19.3,20.1,19.1,20.1zM4.9,20.1c-0.3,0-0.5-0.1-0.7-0.3c-4.3-4.3-4.3-11.3,0-15.6c0.4-0.4,1-0.4,1.4,0c0.4,0.4,0.4,1,0,1.4c-3.5,3.5-3.5,9.2,0,12.7c0.4,0.4,0.4,1,0,1.4C5.4,20,5.2,20.1,4.9,20.1z M16.2,17.2c-0.2,0-0.3,0-0.4-0.1c-0.5-0.2-0.7-0.8-0.4-1.3c0.1-0.1,0.2-0.2,0.3-0.3c1.9-1.9,1.9-5.1-0.1-7c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0c2.7,2.7,2.7,7.2,0,9.9C16.8,17.1,16.5,17.2,16.2,17.2zM7.8,17.2c-0.3,0-0.5-0.1-0.7-0.3c-2.7-2.7-2.7-7.2,0-9.9c0,0,0,0,0,0c0.4-0.4,1-0.4,1.4,0c0.4,0.4,0.4,1,0,1.4c0,0,0,0,0,0C7.5,9.4,7,10.7,7,12c0,1.3,0.5,2.6,1.5,3.5c0.4,0.4,0.4,1,0,1.4C8.3,17.1,8,17.2,7.8,17.2z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M21.7,7.3l-5-5C16.5,2.1,16.3,2,16,2H5C3.3,2,2,3.3,2,5v14c0,1.7,1.3,3,3,3h14c1.7,0,3-1.3,3-3V8C22,7.7,21.9,7.5,21.7,7.3zM16,20H8v-6h8V20zM20,19c0,0.6-0.4,1-1,1h-1v-7c0-0.6-0.4-1-1-1H7c-0.6,0-1,0.4-1,1v7H5c-0.6,0-1-0.4-1-1V5c0-0.6,0.4-1,1-1h1v4c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1s-0.4-1-1-1H8V4h7.6L20,8.4V19z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M21.7,20.3L18,16.6c1.2-1.5,2-3.5,2-5.6c0-5-4-9-9-9c-5,0-9,4-9,9c0,5,4,9,9,9c2.1,0,4.1-0.7,5.6-2l3.7,3.7c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3C22.1,21.3,22.1,20.7,21.7,20.3zM4,11c0-3.9,3.1-7,7-7c3.9,0,7,3.1,7,7c0,1.9-0.8,3.7-2,4.9c0,0,0,0,0,0s0,0,0,0c-1.3,1.3-3,2-4.9,2C7.1,18,4,14.9,4,11z" />
4
- </svg>
5
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M23,1.9c0-0.1,0-0.2-0.1-0.3c0,0,0-0.1,0-0.1c0-0.1-0.1-0.2-0.2-0.3c-0.1-0.1-0.2-0.1-0.3-0.2c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.3-0.1C22,1,22,1,22,1c-0.1,0-0.2,0-0.3,0.1l-20,7C1.3,8.2,1,8.5,1,9c0,0.4,0.2,0.8,0.6,1l8.6,3.8l3.8,8.6c0.2,0.4,0.5,0.6,0.9,0.6c0,0,0,0,0,0c0.4,0,0.8-0.3,0.9-0.7l7-20C23,2.2,23,2.1,23,1.9C23,2,23,2,23,1.9z M18.2,4.4l-7.4,7.4L4.7,9.1L18.2,4.4z M14.9,19.3l-2.7-6.1l7.4-7.4L14.9,19.3z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,16c-2.2,0-4-1.8-4-4c0-2.2,1.8-4,4-4c2.2,0,4,1.8,4,4C16,14.2,14.2,16,12,16z M12,10c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2C14,10.9,13.1,10,12,10z" />
4
- <path d="M12.1,24c-1.7,0-3-1.3-3-3c0-0.3-0.2-0.6-0.4-0.7c-0.3-0.1-0.6-0.1-0.8,0.1c-0.6,0.6-1.4,0.9-2.2,0.9c0,0,0,0,0,0c-0.8,0-1.6-0.3-2.1-0.9c-0.6-0.6-0.9-1.3-0.9-2.1c0-0.8,0.3-1.5,0.9-2.1c0,0,0,0,0,0l0,0c0.2-0.2,0.3-0.5,0.2-0.8c-0.1-0.2-0.3-0.4-0.6-0.4H3c-1.7,0-3-1.3-3-3s1.3-3,3-3c0.3,0,0.6-0.2,0.7-0.4c0.1-0.3,0.1-0.6-0.1-0.8C2.9,7.3,2.6,6.5,2.6,5.7s0.3-1.6,0.9-2.1c1.2-1.2,3.1-1.2,4.2,0c0,0,0,0,0,0C8,3.8,8.3,3.9,8.5,3.8c0.1,0,0.1,0,0.2-0.1C8.9,3.6,9,3.4,9,3.2V3c0-1.7,1.3-3,3-3s3,1.3,3,3c0,0.3,0.2,0.6,0.4,0.7c0.3,0.1,0.5,0.1,0.7-0.1c0.6-0.6,1.4-0.9,2.2-0.9c0,0,0,0,0,0c0.8,0,1.5,0.3,2.1,0.9c0,0,0,0,0,0v0c1.2,1.2,1.2,3.1,0,4.2c-0.2,0.2-0.3,0.5-0.2,0.8c0,0.1,0,0.1,0.1,0.2C20.4,8.9,20.6,9,20.8,9H21c1.7,0,3,1.3,3,3s-1.3,3-3,3c-0.3,0-0.6,0.2-0.7,0.4c0,0,0,0,0,0c-0.1,0.2-0.1,0.5,0.1,0.7c1.2,1.2,1.2,3.1,0.1,4.3c-1.2,1.2-3.1,1.2-4.2,0c-0.2-0.2-0.5-0.3-0.8-0.2c-0.2,0.1-0.4,0.3-0.4,0.6V21C15.1,22.7,13.7,24,12.1,24zM8.3,18.3c0.4,0,0.7,0.1,1.1,0.2c1,0.4,1.7,1.3,1.7,2.4c0,0,0,0.1,0,0.1c0,0.6,0.4,1,1,1s1-0.4,1-1v-0.2c0-1.1,0.6-2,1.6-2.4c1-0.4,2.1-0.2,2.9,0.5c0,0,0.1,0.1,0.1,0.1c0.2,0.2,0.4,0.3,0.7,0.3c0,0,0,0,0,0c0.3,0,0.5-0.1,0.7-0.3c0.2-0.2,0.3-0.4,0.3-0.7c0-0.3-0.1-0.5-0.3-0.7c-0.8-0.8-1-2-0.6-3c0.4-1,1.4-1.6,2.4-1.6c0.6,0,1.1-0.4,1.1-1s-0.4-1-1-1h-0.2c-1.1,0-2-0.6-2.4-1.6c0-0.1-0.1-0.2-0.1-0.3c-0.3-0.9-0.1-2,0.6-2.7c0.5-0.5,0.5-1.1,0.1-1.5c0,0,0,0,0,0c-0.2-0.2-0.4-0.3-0.7-0.3c0,0,0,0,0,0c-0.3,0-0.5,0.1-0.7,0.3c-0.8,0.8-2,1-3,0.6c-1-0.4-1.6-1.4-1.6-2.4C13,2.4,12.6,2,12,2s-1,0.4-1,1v0.2c0,1.1-0.6,2-1.6,2.4c-0.1,0-0.2,0.1-0.3,0.1c-1,0.3-2,0.1-2.7-0.6c0,0,0,0-0.1-0.1l0,0c-0.4-0.4-1-0.4-1.4,0C4.7,5.2,4.6,5.4,4.6,5.7s0.1,0.5,0.3,0.7c0.8,0.8,1,2,0.6,3c-0.4,1-1.3,1.6-2.4,1.7c0,0-0.1,0-0.1,0c-0.6,0-1,0.4-1,1s0.4,1,1,1h0.2c1.1,0,2,0.6,2.4,1.6c0.4,1,0.2,2.1-0.5,2.9c0,0,0,0,0,0c0,0,0,0,0,0c-0.4,0.4-0.4,1,0,1.4c0.4,0.4,1,0.4,1.4,0C7,18.5,7.7,18.3,8.3,18.3z M19.4,15L19.4,15L19.4,15z" />
5
- </svg>
6
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M18,15c-1.1,0-2.1,0.5-2.8,1.2l-5.3-3.1C9.9,12.7,10,12.4,10,12c0-0.4-0.1-0.7-0.2-1.1l5.3-3.1C15.9,8.5,16.9,9,18,9c2.2,0,4-1.8,4-4s-1.8-4-4-4s-4,1.8-4,4c0,0.4,0.1,0.7,0.2,1.1L8.8,9.2C8.1,8.5,7.1,8,6,8c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4c1.1,0,2.1-0.5,2.8-1.2l5.3,3.1C14.1,18.3,14,18.6,14,19c0,2.2,1.8,4,4,4s4-1.8,4-4S20.2,15,18,15z M18,3c1.1,0,2,0.9,2,2s-0.9,2-2,2s-2-0.9-2-2S16.9,3,18,3zM6,14c-1.1,0-2-0.9-2-2s0.9-2,2-2s2,0.9,2,2S7.1,14,6,14z M18,21c-1.1,0-2-0.9-2-2c0-0.4,0.1-0.7,0.3-1c0,0,0,0,0,0c0,0,0,0,0,0c0.3-0.6,1-1,1.7-1c1.1,0,2,0.9,2,2S19.1,21,18,21z" />
4
- </svg>
5
- </template>
@@ -1,6 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M19,21c-0.2,0-0.4-0.1-0.6-0.2l-10-8C8.1,12.6,8,12.3,8,12s0.1-0.6,0.4-0.8l10-8c0.3-0.2,0.7-0.3,1.1-0.1C19.8,3.3,20,3.6,20,4v16c0,0.4-0.2,0.7-0.6,0.9C19.3,21,19.1,21,19,21z" />
4
- <path d="M5,20c-0.6,0-1-0.4-1-1V5c0-0.6,0.4-1,1-1s1,0.4,1,1v14C6,19.6,5.6,20,5,20z" />
5
- </svg>
6
- </template>
@@ -1,12 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <g>
4
- <path d="M4,11c0.6,0,1-0.4,1-1V3c0-0.6-0.4-1-1-1S3,2.4,3,3v7C3,10.6,3.4,11,4,11z" />
5
- <path d="M12,11c-0.6,0-1,0.4-1,1v9c0,0.6,0.4,1,1,1s1-0.4,1-1v-9C13,11.4,12.6,11,12,11z" />
6
- <path d="M20,13c0.6,0,1-0.4,1-1V3c0-0.6-0.4-1-1-1s-1,0.4-1,1v9C19,12.6,19.4,13,20,13z" />
7
- <path d="M7,13H1c-0.6,0-1,0.4-1,1s0.4,1,1,1h2v6c0,0.6,0.4,1,1,1s1-0.4,1-1v-6h2c0.6,0,1-0.4,1-1S7.6,13,7,13z" />
8
- <path d="M15,7h-2V3c0-0.6-0.4-1-1-1s-1,0.4-1,1v4H9C8.4,7,8,7.4,8,8s0.4,1,1,1h6c0.6,0,1-0.4,1-1S15.6,7,15,7z" />
9
- <path d="M23,15h-6c-0.6,0-1,0.4-1,1s0.4,1,1,1h2v4c0,0.6,0.4,1,1,1s1-0.4,1-1v-4h2c0.6,0,1-0.4,1-1S23.6,15,23,15z" />
10
- </g>
11
- </svg>
12
- </template>
@@ -1,13 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M12,18c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S15.3,18,12,18zM12,8c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C16,9.8,14.2,8,12,8z" />
4
- <path d="M12,4c-0.6,0-1-0.4-1-1V1c0-0.6,0.4-1,1-1s1,0.4,1,1v2C13,3.6,12.6,4,12,4z" />
5
- <path d="M12,24c-0.6,0-1-0.4-1-1v-2c0-0.6,0.4-1,1-1s1,0.4,1,1v2C13,23.6,12.6,24,12,24z" />
6
- <path d="M5.6,6.6c-0.3,0-0.5-0.1-0.7-0.3L3.5,4.9c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l1.4,1.4c0.4,0.4,0.4,1,0,1.4C6.2,6.5,5.9,6.6,5.6,6.6z" />
7
- <path d="M19.8,20.8c-0.3,0-0.5-0.1-0.7-0.3l-1.4-1.4c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l1.4,1.4c0.4,0.4,0.4,1,0,1.4C20.3,20.7,20,20.8,19.8,20.8z" />
8
- <path d="M3,13H1c-0.6,0-1-0.4-1-1s0.4-1,1-1h2c0.6,0,1,0.4,1,1S3.6,13,3,13z" />
9
- <path d="M23,13h-2c-0.6,0-1-0.4-1-1s0.4-1,1-1h2c0.6,0,1,0.4,1,1S23.6,13,23,13z" />
10
- <path d="M4.2,20.8c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l1.4-1.4c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-1.4,1.4C4.7,20.7,4.5,20.8,4.2,20.8z" />
11
- <path d="M18.4,6.6c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l1.4-1.4c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-1.4,1.4C18.9,6.5,18.6,6.6,18.4,6.6z" />
12
- </svg>
13
- </template>
@@ -1,5 +0,0 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
3
- <path d="M22.88,8,19.22,1.47A.9.9,0,0,0,18,1.13L11.63,4.87a1,1,0,0,0-.33,1.28L4.17,10.36a1,1,0,0,0-.34,1.28h0L1.46,13h0a.94.94,0,0,0-.34,1.27L3,17.57a.93.93,0,0,0,.79.47.94.94,0,0,0,.46-.13l2.38-1.4h0a.9.9,0,0,0,.79.47.94.94,0,0,0,.46-.13L10,15.54l-2.1,6.22h0A1,1,0,0,0,8.5,23a1,1,0,0,0,.3.05.9.9,0,0,0,.86-.63L12.16,15l2.5,7.37a.9.9,0,0,0,.86.63,1,1,0,0,0,.3-.05h0a.93.93,0,0,0,.56-1.19l-2.81-8.3L15,12.64a.89.89,0,0,0,.79.46.93.93,0,0,0,.46-.12l6.33-3.75A1,1,0,0,0,22.88,8ZM4.08,15.82,3.16,14.2l1.59-.94.91,1.62ZM7.7,14.76h0L5.88,11.52l6.33-3.75L14,11Zm8.38-3.87h0L13.34,6l4.76-2.8,2.74,4.86Z" />
4
- </svg>
5
- </template>