@gm-pc/react 1.25.1-beta.1 → 1.26.0-beta.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 (399) hide show
  1. package/package.json +3 -3
  2. package/src/common/hooks/index.ts +5 -5
  3. package/src/common/hooks/use_form/index.ts +2 -2
  4. package/src/common/hooks/use_form/use_form.ts +184 -184
  5. package/src/common/hooks/use_form/utils.ts +23 -23
  6. package/src/common/hooks/use_mutation_observer.ts +19 -19
  7. package/src/common/utils/date.ts +28 -28
  8. package/src/common/utils/get_record_partical_object.ts +4 -4
  9. package/src/common/utils/index.ts +3 -3
  10. package/src/common/utils/utils.ts +16 -16
  11. package/src/component/affix/affix.tsx +31 -31
  12. package/src/component/affix/index.ts +2 -2
  13. package/src/component/affix/stories.tsx +16 -16
  14. package/src/component/affix/style.less +3 -3
  15. package/src/component/auto_complete/auto_complete.tsx +202 -202
  16. package/src/component/auto_complete/index.ts +6 -6
  17. package/src/component/auto_complete/stories.tsx +37 -37
  18. package/src/component/auto_full/auto_full.tsx +36 -36
  19. package/src/component/auto_full/index.ts +1 -1
  20. package/src/component/box/box.tsx +29 -29
  21. package/src/component/box/box_form.tsx +83 -83
  22. package/src/component/box/box_pagination.tsx +12 -12
  23. package/src/component/box/box_panel.tsx +91 -91
  24. package/src/component/box/box_table.tsx +57 -57
  25. package/src/component/box/index.ts +10 -10
  26. package/src/component/box/stories.tsx +119 -119
  27. package/src/component/box/style.less +41 -41
  28. package/src/component/button/button.tsx +94 -94
  29. package/src/component/button/button_text.tsx +33 -33
  30. package/src/component/button/index.ts +4 -4
  31. package/src/component/button/stories.tsx +131 -131
  32. package/src/component/button/style.less +158 -158
  33. package/src/component/calendar/calendar.tsx +25 -25
  34. package/src/component/calendar/content.tsx +87 -87
  35. package/src/component/calendar/day.tsx +106 -106
  36. package/src/component/calendar/head.tsx +244 -244
  37. package/src/component/calendar/index.ts +4 -4
  38. package/src/component/calendar/range_calendar.tsx +121 -121
  39. package/src/component/calendar/stories.tsx +54 -54
  40. package/src/component/calendar/style.less +136 -136
  41. package/src/component/calendar/types.ts +56 -56
  42. package/src/component/calendar/week.tsx +27 -27
  43. package/src/component/card/card.tsx +148 -148
  44. package/src/component/card/form_card.tsx +42 -42
  45. package/src/component/card/index.ts +2 -2
  46. package/src/component/card/stories.tsx +90 -90
  47. package/src/component/card/style.less +125 -125
  48. package/src/component/checkbox/checkbox.tsx +75 -75
  49. package/src/component/checkbox/checkbox_group.tsx +51 -51
  50. package/src/component/checkbox/index.ts +5 -5
  51. package/src/component/checkbox/stories.tsx +152 -152
  52. package/src/component/checkbox/style.less +73 -73
  53. package/src/component/checkbox/util.ts +19 -19
  54. package/src/component/collapse/collapse.tsx +27 -27
  55. package/src/component/collapse/index.ts +2 -2
  56. package/src/component/collapse/stories.tsx +21 -21
  57. package/src/component/color_picker/color_list.ts +34 -34
  58. package/src/component/color_picker/color_picker.tsx +43 -43
  59. package/src/component/color_picker/color_select.tsx +97 -97
  60. package/src/component/color_picker/index.ts +2 -2
  61. package/src/component/color_picker/stories.tsx +20 -20
  62. package/src/component/color_picker/style.less +41 -41
  63. package/src/component/config_provider/config_provider.tsx +16 -16
  64. package/src/component/config_provider/context.ts +10 -10
  65. package/src/component/config_provider/index.ts +3 -3
  66. package/src/component/controlled_form/context.tsx +18 -18
  67. package/src/component/controlled_form/controlled_form.tsx +141 -141
  68. package/src/component/controlled_form/index.ts +8 -8
  69. package/src/component/controlled_form/items/index.tsx +115 -115
  70. package/src/component/controlled_form/items/utils.ts +132 -132
  71. package/src/component/controlled_form/stories/components/date_range_filter.tsx +83 -83
  72. package/src/component/controlled_form/stories/components/index.ts +2 -2
  73. package/src/component/controlled_form/stories/components/search_filter.tsx +52 -52
  74. package/src/component/controlled_form/stories/stories.tsx +372 -372
  75. package/src/component/date_picker/date_picker.tsx +187 -187
  76. package/src/component/date_picker/index.ts +2 -2
  77. package/src/component/date_picker/overlay.tsx +115 -115
  78. package/src/component/date_picker/stories.tsx +109 -109
  79. package/src/component/date_picker/style.less +23 -23
  80. package/src/component/date_picker/time_select.tsx +58 -58
  81. package/src/component/date_picker/types.ts +7 -7
  82. package/src/component/date_range_picker/date_range_picker.tsx +144 -144
  83. package/src/component/date_range_picker/index.ts +2 -2
  84. package/src/component/date_range_picker/left.tsx +107 -107
  85. package/src/component/date_range_picker/overlay.tsx +204 -204
  86. package/src/component/date_range_picker/stories.tsx +181 -181
  87. package/src/component/date_range_picker/style.less +41 -41
  88. package/src/component/date_range_picker/time_range_select.tsx +144 -144
  89. package/src/component/date_range_picker/two.tsx +108 -108
  90. package/src/component/date_range_picker/types.ts +42 -42
  91. package/src/component/date_range_picker/util.ts +11 -11
  92. package/src/component/dialog/alert.tsx +38 -38
  93. package/src/component/dialog/confirm.tsx +120 -120
  94. package/src/component/dialog/delete_com.tsx +27 -27
  95. package/src/component/dialog/dialog.tsx +70 -70
  96. package/src/component/dialog/index.ts +16 -16
  97. package/src/component/dialog/prompt.tsx +95 -95
  98. package/src/component/dialog/stories.tsx +195 -195
  99. package/src/component/dialog/types.ts +70 -70
  100. package/src/component/divider/divider.tsx +25 -25
  101. package/src/component/divider/index.ts +2 -2
  102. package/src/component/divider/stories.tsx +14 -14
  103. package/src/component/divider/style.less +29 -29
  104. package/src/component/flex/flex.tsx +133 -133
  105. package/src/component/flex/index.ts +2 -2
  106. package/src/component/flex/stories.tsx +17 -17
  107. package/src/component/flex/style.less +105 -105
  108. package/src/component/flip_number/flip_number.tsx +209 -209
  109. package/src/component/flip_number/index.ts +2 -2
  110. package/src/component/flip_number/stories.tsx +28 -28
  111. package/src/component/flip_number/utils.ts +58 -58
  112. package/src/component/form/context.tsx +15 -15
  113. package/src/component/form/form.tsx +142 -142
  114. package/src/component/form/form_block.tsx +39 -39
  115. package/src/component/form/form_button.tsx +28 -28
  116. package/src/component/form/form_group.tsx +157 -157
  117. package/src/component/form/form_item.tsx +141 -141
  118. package/src/component/form/form_panel.tsx +63 -63
  119. package/src/component/form/index.ts +15 -15
  120. package/src/component/form/stories.tsx +448 -448
  121. package/src/component/form/style.less +159 -159
  122. package/src/component/form/types.ts +110 -110
  123. package/src/component/function_set/function_set.tsx +84 -84
  124. package/src/component/function_set/index.ts +2 -2
  125. package/src/component/function_set/overlay.tsx +41 -41
  126. package/src/component/function_set/stories.tsx +71 -71
  127. package/src/component/function_set/types.ts +15 -15
  128. package/src/component/function_set/utils.ts +21 -21
  129. package/src/component/grid/col.tsx +55 -55
  130. package/src/component/grid/index.ts +3 -3
  131. package/src/component/grid/mixin.less +48 -48
  132. package/src/component/grid/row.tsx +27 -27
  133. package/src/component/grid/stories.tsx +65 -65
  134. package/src/component/grid/style.less +27 -27
  135. package/src/component/grid/types.ts +35 -35
  136. package/src/component/grid/util.ts +12 -12
  137. package/src/component/icon_down_up/icon_down_up.tsx +22 -22
  138. package/src/component/icon_down_up/index.ts +2 -2
  139. package/src/component/icon_down_up/stories.tsx +21 -21
  140. package/src/component/icon_down_up/style.less +10 -10
  141. package/src/component/icon_expand/icon_expand.tsx +22 -22
  142. package/src/component/icon_expand/index.ts +1 -1
  143. package/src/component/img_uploader/img_uploader.tsx +168 -168
  144. package/src/component/img_uploader/index.ts +2 -2
  145. package/src/component/img_uploader/stories.tsx +58 -58
  146. package/src/component/img_uploader/style.less +22 -22
  147. package/src/component/input/index.ts +5 -5
  148. package/src/component/input/input.tsx +24 -24
  149. package/src/component/input/input_close.tsx +51 -51
  150. package/src/component/input/stories.tsx +56 -56
  151. package/src/component/input/style.less +33 -33
  152. package/src/component/input_number/index.ts +2 -2
  153. package/src/component/input_number/input_number.tsx +115 -115
  154. package/src/component/input_number/stories.tsx +27 -27
  155. package/src/component/input_number/style.less +10 -10
  156. package/src/component/input_number/utils.ts +44 -44
  157. package/src/component/label/index.tsx +19 -19
  158. package/src/component/label/stories.tsx +26 -26
  159. package/src/component/label/style.less +34 -34
  160. package/src/component/layout_root/index.ts +2 -2
  161. package/src/component/layout_root/layout_root.tsx +116 -116
  162. package/src/component/layout_root/types.ts +38 -38
  163. package/src/component/level_list/index.ts +2 -2
  164. package/src/component/level_list/level_item.tsx +79 -79
  165. package/src/component/level_list/level_list.tsx +123 -123
  166. package/src/component/level_list/stories/constants.ts +72 -72
  167. package/src/component/level_list/stories/stories.tsx +87 -87
  168. package/src/component/level_list/style.less +41 -41
  169. package/src/component/level_list/types.ts +36 -36
  170. package/src/component/level_list/utils.ts +19 -19
  171. package/src/component/level_select/index.ts +7 -7
  172. package/src/component/level_select/level_select.tsx +216 -216
  173. package/src/component/level_select/multiple_level_select.tsx +104 -104
  174. package/src/component/level_select/stories.tsx +102 -102
  175. package/src/component/level_select/types.ts +38 -38
  176. package/src/component/level_select/util.ts +20 -20
  177. package/src/component/list/base.tsx +129 -129
  178. package/src/component/list/index.ts +3 -3
  179. package/src/component/list/list.tsx +61 -61
  180. package/src/component/list/stories.tsx +113 -113
  181. package/src/component/list/style.less +58 -58
  182. package/src/component/list/types.ts +37 -37
  183. package/src/component/loading/index.ts +10 -10
  184. package/src/component/loading/loading.tsx +26 -26
  185. package/src/component/loading/loading_chunk.tsx +37 -37
  186. package/src/component/loading/loading_full_screen.tsx +45 -45
  187. package/src/component/loading/stories.tsx +43 -43
  188. package/src/component/loading/style.less +69 -69
  189. package/src/component/loading/types.ts +30 -30
  190. package/src/component/mask/index.ts +2 -2
  191. package/src/component/mask/mask.tsx +22 -22
  192. package/src/component/mask/style.less +10 -10
  193. package/src/component/modal/clean_modal.tsx +14 -14
  194. package/src/component/modal/index.ts +5 -5
  195. package/src/component/modal/modal.tsx +145 -145
  196. package/src/component/modal/right_side_modal.tsx +22 -22
  197. package/src/component/modal/stories.tsx +132 -132
  198. package/src/component/modal/style.less +138 -138
  199. package/src/component/modal/types.ts +27 -27
  200. package/src/component/more_select/base.tsx +408 -408
  201. package/src/component/more_select/index.ts +6 -6
  202. package/src/component/more_select/more_select.tsx +137 -137
  203. package/src/component/more_select/render_list_filter.ts +39 -39
  204. package/src/component/more_select/stories.tsx +323 -323
  205. package/src/component/more_select/style.less +72 -72
  206. package/src/component/more_select/types.ts +114 -114
  207. package/src/component/multiple_selection/index.ts +2 -2
  208. package/src/component/multiple_selection/multiple_selection.tsx +118 -118
  209. package/src/component/multiple_selection/stories.tsx +37 -37
  210. package/src/component/multiple_selection/style.less +57 -57
  211. package/src/component/n_progress/index.ts +1 -1
  212. package/src/component/n_progress/n_progress.tsx +39 -39
  213. package/src/component/n_progress/stories.tsx +25 -25
  214. package/src/component/n_progress/style.less +39 -39
  215. package/src/component/nav/a.tsx +7 -7
  216. package/src/component/nav/index.ts +10 -10
  217. package/src/component/nav/nav.tsx +114 -114
  218. package/src/component/nav/nav_item.tsx +98 -98
  219. package/src/component/nav/nav_single_item.tsx +28 -28
  220. package/src/component/nav/popup.tsx +100 -100
  221. package/src/component/nav/portal.ts +17 -17
  222. package/src/component/nav/stories.tsx +152 -152
  223. package/src/component/nav/style.less +246 -246
  224. package/src/component/nav/types.ts +93 -93
  225. package/src/component/pagination/index.ts +2 -2
  226. package/src/component/pagination/left.tsx +52 -45
  227. package/src/component/pagination/page_with_count.tsx +115 -115
  228. package/src/component/pagination/page_without_count.tsx +64 -64
  229. package/src/component/pagination/pagination.tsx +23 -23
  230. package/src/component/pagination/right.tsx +79 -78
  231. package/src/component/pagination/stories.tsx +62 -62
  232. package/src/component/pagination/style.less +51 -51
  233. package/src/component/pagination/types.ts +16 -16
  234. package/src/component/pagination/util.ts +7 -7
  235. package/src/component/popover/index.ts +2 -2
  236. package/src/component/popover/popover.tsx +279 -279
  237. package/src/component/popover/stories.tsx +104 -104
  238. package/src/component/popover/types.ts +25 -25
  239. package/src/component/popover/utils.ts +22 -22
  240. package/src/component/popup/element_in_viewport.ts +33 -33
  241. package/src/component/popup/index.ts +4 -4
  242. package/src/component/popup/popup.tsx +149 -149
  243. package/src/component/popup/popup_content_confirm.tsx +106 -106
  244. package/src/component/popup/style.less +107 -107
  245. package/src/component/price/constant.ts +4 -4
  246. package/src/component/price/event_bus.ts +13 -13
  247. package/src/component/price/index.ts +2 -2
  248. package/src/component/price/price.tsx +154 -152
  249. package/src/component/price/stories.tsx +22 -22
  250. package/src/component/progress/index.ts +2 -2
  251. package/src/component/progress/progress.tsx +53 -53
  252. package/src/component/progress/stories.tsx +20 -20
  253. package/src/component/progress/style.less +35 -35
  254. package/src/component/progress_circle/index.ts +2 -2
  255. package/src/component/progress_circle/progress_circle.tsx +85 -85
  256. package/src/component/progress_circle/stories.tsx +31 -31
  257. package/src/component/progress_circle/style.less +21 -21
  258. package/src/component/radio/index.ts +5 -5
  259. package/src/component/radio/radio.tsx +72 -72
  260. package/src/component/radio/radio_group.tsx +48 -48
  261. package/src/component/radio/stories.tsx +103 -103
  262. package/src/component/radio/style.less +56 -56
  263. package/src/component/radio/util.ts +19 -19
  264. package/src/component/recommend_input/index.ts +2 -2
  265. package/src/component/recommend_input/recommend_input.tsx +100 -100
  266. package/src/component/recommend_input/stories.tsx +47 -47
  267. package/src/component/recommend_input/style.less +25 -25
  268. package/src/component/select/index.ts +2 -2
  269. package/src/component/select/select.tsx +172 -171
  270. package/src/component/select/stories.tsx +140 -140
  271. package/src/component/select/style.less +4 -4
  272. package/src/component/select/types.ts +29 -29
  273. package/src/component/selection/index.ts +2 -2
  274. package/src/component/selection/selection.tsx +162 -162
  275. package/src/component/selection/stories.tsx +45 -45
  276. package/src/component/selection/style.less +65 -65
  277. package/src/component/steps/index.ts +2 -2
  278. package/src/component/steps/steps.tsx +61 -61
  279. package/src/component/steps/stories.tsx +18 -18
  280. package/src/component/steps/style.less +39 -39
  281. package/src/component/storage/index.ts +1 -1
  282. package/src/component/storage/storage.ts +7 -7
  283. package/src/component/storage/stories.tsx +7 -7
  284. package/src/component/switch/index.ts +2 -2
  285. package/src/component/switch/stories.tsx +39 -39
  286. package/src/component/switch/style.less +60 -60
  287. package/src/component/switch/switch.tsx +127 -127
  288. package/src/component/table_select/index.ts +2 -2
  289. package/src/component/table_select/stories.tsx +97 -97
  290. package/src/component/table_select/style.less +20 -20
  291. package/src/component/table_select/table_select.tsx +92 -92
  292. package/src/component/table_select/types.ts +30 -30
  293. package/src/component/table_select/util.ts +15 -15
  294. package/src/component/tabs/index.ts +2 -2
  295. package/src/component/tabs/stories.tsx +172 -172
  296. package/src/component/tabs/style.less +149 -149
  297. package/src/component/tabs/tabs.tsx +232 -232
  298. package/src/component/textarea/index.ts +3 -3
  299. package/src/component/textarea/stories.tsx +37 -37
  300. package/src/component/textarea/style.less +12 -12
  301. package/src/component/textarea/textarea.tsx +22 -22
  302. package/src/component/time_span/index.ts +4 -4
  303. package/src/component/time_span/stories.tsx +87 -87
  304. package/src/component/time_span/style.less +45 -45
  305. package/src/component/time_span/time_span.tsx +129 -129
  306. package/src/component/time_span/time_span_picker.tsx +71 -71
  307. package/src/component/time_span/types.ts +58 -58
  308. package/src/component/time_span/util.ts +18 -18
  309. package/src/component/tip/index.ts +2 -2
  310. package/src/component/tip/stories.tsx +44 -44
  311. package/src/component/tip/style.less +53 -53
  312. package/src/component/tip/tip.tsx +95 -95
  313. package/src/component/tip/types.ts +20 -20
  314. package/src/component/tooltip/index.ts +2 -2
  315. package/src/component/tooltip/stories.tsx +32 -32
  316. package/src/component/tooltip/tooltip.tsx +40 -40
  317. package/src/component/transfer/index.ts +2 -2
  318. package/src/component/transfer/stories.tsx +140 -140
  319. package/src/component/transfer/transfer.tsx +147 -147
  320. package/src/component/transfer/types.ts +42 -42
  321. package/src/component/tree/bottom.tsx +34 -34
  322. package/src/component/tree/find.tsx +73 -73
  323. package/src/component/tree/index.ts +2 -2
  324. package/src/component/tree/item.tsx +75 -75
  325. package/src/component/tree/list.tsx +123 -123
  326. package/src/component/tree/search.tsx +29 -29
  327. package/src/component/tree/stories.tsx +309 -309
  328. package/src/component/tree/style.less +35 -35
  329. package/src/component/tree/tree.tsx +238 -238
  330. package/src/component/tree/types.ts +155 -155
  331. package/src/component/tree/util.ts +208 -208
  332. package/src/component/uploader/default_container.tsx +24 -24
  333. package/src/component/uploader/default_image.tsx +15 -15
  334. package/src/component/uploader/index.ts +10 -10
  335. package/src/component/uploader/stories.tsx +53 -53
  336. package/src/component/uploader/style.less +22 -22
  337. package/src/component/uploader/types.ts +25 -25
  338. package/src/component/uploader/uploader.tsx +62 -62
  339. package/src/component/v_browser/context/browser.ts +7 -7
  340. package/src/component/v_browser/context/browserWindow.ts +7 -7
  341. package/src/component/v_browser/hooks/useWindowEffect.ts +53 -53
  342. package/src/component/v_browser/index.ts +4 -4
  343. package/src/component/v_browser/types.ts +46 -46
  344. package/src/component/v_browser/ui/iframe_portal.tsx +28 -28
  345. package/src/component/v_browser/ui/index.tsx +213 -213
  346. package/src/component/v_browser/ui/style.less +113 -113
  347. package/src/component/v_browser/ui/window_wrapper.tsx +74 -74
  348. package/src/component/v_browser/v_browser.stories.mdx +128 -128
  349. package/src/component/v_browser/v_browser.tsx +287 -287
  350. package/src/css/base.less +64 -64
  351. package/src/css/bg.less +52 -52
  352. package/src/css/border.less +40 -40
  353. package/src/css/cursor.less +19 -19
  354. package/src/css/display.less +16 -16
  355. package/src/css/distance.less +93 -93
  356. package/src/css/error.less +8 -8
  357. package/src/css/other.less +15 -15
  358. package/src/css/overflow.less +23 -23
  359. package/src/css/position.less +11 -11
  360. package/src/css/svg.less +48 -48
  361. package/src/css/text.less +127 -127
  362. package/src/css/var/mixin.less +75 -75
  363. package/src/css/var/variables.less +125 -125
  364. package/src/event_type.ts +11 -11
  365. package/src/index.less +64 -64
  366. package/src/index.ts +61 -61
  367. package/src/svg/calendar-month.svg +8 -8
  368. package/src/svg/calendar-year.svg +13 -13
  369. package/src/svg/calendar.svg +17 -17
  370. package/src/svg/check-detail.svg +18 -18
  371. package/src/svg/close-circle.svg +13 -13
  372. package/src/svg/close-square.svg +12 -12
  373. package/src/svg/closeup.svg +20 -20
  374. package/src/svg/delete.svg +10 -10
  375. package/src/svg/down-small.svg +1 -1
  376. package/src/svg/down.svg +1 -1
  377. package/src/svg/edit-box.svg +17 -17
  378. package/src/svg/edit-pen.svg +17 -17
  379. package/src/svg/empty.svg +27 -27
  380. package/src/svg/expand.svg +21 -21
  381. package/src/svg/left-small.svg +1 -1
  382. package/src/svg/more.svg +10 -10
  383. package/src/svg/next.svg +40 -40
  384. package/src/svg/pen.svg +12 -12
  385. package/src/svg/remove.svg +1 -1
  386. package/src/svg/right-small.svg +1 -1
  387. package/src/svg/search.svg +8 -8
  388. package/src/svg/setting.svg +17 -17
  389. package/src/svg/up-small.svg +1 -1
  390. package/src/svg/up.svg +1 -1
  391. package/src/svg/vbrowser-tab-delete.svg +8 -8
  392. package/src/svg/vbrowser-tab-left.svg +8 -8
  393. package/src/svg/vbrowser-tab-right.svg +8 -8
  394. package/src/types.ts +33 -33
  395. package/src/validator/index.ts +16 -16
  396. package/src/validator/rules.ts +61 -61
  397. package/src/validator/types.ts +10 -10
  398. package/src/validator/validator.ts +95 -95
  399. package/src/var.less +2 -2
@@ -1,13 +1,13 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
- <g>
6
- <g>
7
- <path d="M7,14c3.9,0,7-3.1,7-7c0-3.9-3.1-7-7-7C3.1,0,0,3.1,0,7C0,10.9,3.1,14,7,14L7,14z M7.5,6.9l2.3,2.3
8
- c0.2,0.2,0.2,0.5,0,0.7C9.7,10,9.4,10,9.2,9.9L6.9,7.5L4.6,9.9C4.4,10,4.1,10,3.9,9.9c-0.2-0.2-0.2-0.5,0-0.7l2.3-2.3L3.9,4.6
9
- c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0l2.3,2.3l2.3-2.3c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7L7.5,6.9z M7.4,6.9"
10
- />
11
- </g>
12
- </g>
13
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path d="M7,14c3.9,0,7-3.1,7-7c0-3.9-3.1-7-7-7C3.1,0,0,3.1,0,7C0,10.9,3.1,14,7,14L7,14z M7.5,6.9l2.3,2.3
8
+ c0.2,0.2,0.2,0.5,0,0.7C9.7,10,9.4,10,9.2,9.9L6.9,7.5L4.6,9.9C4.4,10,4.1,10,3.9,9.9c-0.2-0.2-0.2-0.5,0-0.7l2.3-2.3L3.9,4.6
9
+ c-0.2-0.2-0.2-0.5,0-0.7c0.2-0.2,0.5-0.2,0.7,0l2.3,2.3l2.3-2.3c0.2-0.2,0.5-0.2,0.7,0c0.2,0.2,0.2,0.5,0,0.7L7.5,6.9z M7.4,6.9"
10
+ />
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -1,13 +1,13 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="12px" height="12px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 50</title>
4
- <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="新建商品库3" transform="translate(-503.000000, -867.000000)" fill="#999999" fill-rule="nonzero">
6
- <g id="编组-30" transform="translate(267.000000, 851.000000)">
7
- <g id="编组-50" transform="translate(236.000000, 16.000000)">
8
- <path d="M8.08387724,7 L13.7841966,1.29730481 C14.0719345,1.00944707 14.0719345,0.534870797 13.7841966,0.247013059 L13.7530898,0.215893304 C13.465352,-0.0719644346 12.9909735,-0.0719644346 12.7032357,0.215893304 L7.00291626,5.92636844 L1.30259686,0.215893304 C1.01485905,-0.0719644346 0.540480489,-0.0719644346 0.252742675,0.215893304 L0.221635884,0.247013059 C-0.073878628,0.534870797 -0.073878628,1.00944707 0.221635884,1.29730481 L5.92195528,7 L0.221635884,12.7026952 C-0.0661019302,12.9905529 -0.0661019302,13.4651292 0.221635884,13.7529869 L0.252742675,13.7841067 C0.540480489,14.0719644 1.01485905,14.0719644 1.30259686,13.7841067 L7.00291626,8.0814115 L12.7032357,13.7841067 C12.9909735,14.0719644 13.465352,14.0719644 13.7530898,13.7841067 L13.7841966,13.7529869 C14.0719345,13.4651292 14.0719345,12.9905529 13.7841966,12.7026952 L8.08387724,7 Z" id="路径"></path>
9
- </g>
10
- </g>
11
- </g>
12
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="12px" height="12px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 50</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="新建商品库3" transform="translate(-503.000000, -867.000000)" fill="#999999" fill-rule="nonzero">
6
+ <g id="编组-30" transform="translate(267.000000, 851.000000)">
7
+ <g id="编组-50" transform="translate(236.000000, 16.000000)">
8
+ <path d="M8.08387724,7 L13.7841966,1.29730481 C14.0719345,1.00944707 14.0719345,0.534870797 13.7841966,0.247013059 L13.7530898,0.215893304 C13.465352,-0.0719644346 12.9909735,-0.0719644346 12.7032357,0.215893304 L7.00291626,5.92636844 L1.30259686,0.215893304 C1.01485905,-0.0719644346 0.540480489,-0.0719644346 0.252742675,0.215893304 L0.221635884,0.247013059 C-0.073878628,0.534870797 -0.073878628,1.00944707 0.221635884,1.29730481 L5.92195528,7 L0.221635884,12.7026952 C-0.0661019302,12.9905529 -0.0661019302,13.4651292 0.221635884,13.7529869 L0.252742675,13.7841067 C0.540480489,14.0719644 1.01485905,14.0719644 1.30259686,13.7841067 L7.00291626,8.0814115 L12.7032357,13.7841067 C12.9909735,14.0719644 13.465352,14.0719644 13.7530898,13.7841067 L13.7841966,13.7529869 C14.0719345,13.4651292 14.0719345,12.9905529 13.7841966,12.7026952 L8.08387724,7 Z" id="路径"></path>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </g>
13
13
  </svg>
@@ -1,20 +1,20 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
- <g>
6
- <g>
7
- <defs>
8
- <rect id="SVGID_1_" x="0.1" y="0.1" width="13.9" height="13.9"/>
9
- </defs>
10
- <clipPath id="SVGID_2_">
11
- <use xlink:href="#SVGID_1_" overflow="visible"/>
12
- </clipPath>
13
- <path clip-path="url(#SVGID_2_)" d="M12.3,0.9c0.4,0,0.8,0.3,0.8,0.8v10.6c0,0.4-0.3,0.8-0.8,0.8H1.7
14
- c-0.4,0-0.8-0.3-0.8-0.8V1.7c0-0.4,0.3-0.8,0.8-0.8H12.3 M12.3,0.1H1.7c-0.9,0-1.6,0.7-1.6,1.6v10.6c0,0.9,0.7,1.6,1.6,1.6h10.6
15
- c0.9,0,1.6-0.7,1.6-1.6V1.7C13.9,0.8,13.2,0.1,12.3,0.1L12.3,0.1z M12.3,0.1"/>
16
- </g>
17
- <path d="M10,6.6H6.6H6.4H4C3.7,6.6,3.5,6.8,3.5,7c0,0.2,0.2,0.4,0.4,0.4h2.5h0.1H10c0.2,0,0.4-0.2,0.4-0.4
18
- C10.5,6.8,10.3,6.6,10,6.6z"/>
19
- </g>
20
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <defs>
8
+ <rect id="SVGID_1_" x="0.1" y="0.1" width="13.9" height="13.9"/>
9
+ </defs>
10
+ <clipPath id="SVGID_2_">
11
+ <use xlink:href="#SVGID_1_" overflow="visible"/>
12
+ </clipPath>
13
+ <path clip-path="url(#SVGID_2_)" d="M12.3,0.9c0.4,0,0.8,0.3,0.8,0.8v10.6c0,0.4-0.3,0.8-0.8,0.8H1.7
14
+ c-0.4,0-0.8-0.3-0.8-0.8V1.7c0-0.4,0.3-0.8,0.8-0.8H12.3 M12.3,0.1H1.7c-0.9,0-1.6,0.7-1.6,1.6v10.6c0,0.9,0.7,1.6,1.6,1.6h10.6
15
+ c0.9,0,1.6-0.7,1.6-1.6V1.7C13.9,0.8,13.2,0.1,12.3,0.1L12.3,0.1z M12.3,0.1"/>
16
+ </g>
17
+ <path d="M10,6.6H6.6H6.4H4C3.7,6.6,3.5,6.8,3.5,7c0,0.2,0.2,0.4,0.4,0.4h2.5h0.1H10c0.2,0,0.4-0.2,0.4-0.4
18
+ C10.5,6.8,10.3,6.6,10,6.6z"/>
19
+ </g>
20
+ </svg>
@@ -1,10 +1,10 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
5
- <g>
6
- <path d="M11.9,14.4h-1.5V4.1H9v10.3H7V4.1H5.5v10.3H4.1V4.1h7.9V14.4z M6.5,1.6h3v1h-3V1.6z M13.6,2.6h-2.7V1.1
7
- c0-0.5-0.4-1-1-1H6c-0.5,0-1,0.4-1,1v1.5H2.3c-0.4,0-0.7,0.3-0.7,0.7s0.3,0.7,0.7,0.7h0.2v10.8c0,0.5,0.4,1,1,1h8.9
8
- c0.5,0,1-0.4,1-1V4.1h0.2c0.4,0,0.7-0.3,0.7-0.7S14.1,2.6,13.6,2.6L13.6,2.6z M13.6,2.6"/>
9
- </g>
10
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
5
+ <g>
6
+ <path d="M11.9,14.4h-1.5V4.1H9v10.3H7V4.1H5.5v10.3H4.1V4.1h7.9V14.4z M6.5,1.6h3v1h-3V1.6z M13.6,2.6h-2.7V1.1
7
+ c0-0.5-0.4-1-1-1H6c-0.5,0-1,0.4-1,1v1.5H2.3c-0.4,0-0.7,0.3-0.7,0.7s0.3,0.7,0.7,0.7h0.2v10.8c0,0.5,0.4,1,1,1h8.9
8
+ c0.5,0,1-0.4,1-1V4.1h0.2c0.4,0,0.7-0.3,0.7-0.7S14.1,2.6,13.6,2.6L13.6,2.6z M13.6,2.6"/>
9
+ </g>
10
+ </svg>
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564737015479" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6726" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M512.6789341568947 572.9682872891426L291.0069319307804 351.2283916473388c-18.33122223615645-18.331222236156474-48.00064489245415-18.331222236156485-66.33186712861061-4.263256414560601e-14s-18.331222236156485 48.00064489245415-4.263256414560601e-14 66.33186712861061l254.87188249826417 254.87188249826443c18.33122223615645 18.331222236156474 48.00064489245415 18.331222236156485 66.33186712861061 4.263256414560601e-14L800.750696927309 417.6281521916392c18.331222236156474-18.33122223615645 18.331222236156485-48.00064489245415 4.263256414560601e-14-66.33186712861061s-48.00064489245415-18.331222236156485-66.33186712861061-4.263256414560601e-14L512.6789341568947 572.9682872891426z" p-id="6727"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564737015479" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6726" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M512.6789341568947 572.9682872891426L291.0069319307804 351.2283916473388c-18.33122223615645-18.331222236156474-48.00064489245415-18.331222236156485-66.33186712861061-4.263256414560601e-14s-18.331222236156485 48.00064489245415-4.263256414560601e-14 66.33186712861061l254.87188249826417 254.87188249826443c18.33122223615645 18.331222236156474 48.00064489245415 18.331222236156485 66.33186712861061 4.263256414560601e-14L800.750696927309 417.6281521916392c18.331222236156474-18.33122223615645 18.331222236156485-48.00064489245415 4.263256414560601e-14-66.33186712861061s-48.00064489245415-18.331222236156485-66.33186712861061-4.263256414560601e-14L512.6789341568947 572.9682872891426z" p-id="6727"></path></svg>
package/src/svg/down.svg CHANGED
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564737901718" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7092" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M513.13777778 614.17244445L141.65333333 242.57422222c-30.72-30.72-80.44088889-30.72-111.16088888 0s-30.72 80.44088889 0 111.16088889l427.12177777 427.12177778c30.72 30.72 80.44088889 30.72 111.16088889 0L995.89688889 353.84888889c30.72-30.72 30.72-80.44088889 0-111.16088889s-80.44088889-30.72-111.16088889 0L513.13777778 614.17244445z" p-id="7093"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564737901718" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7092" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M513.13777778 614.17244445L141.65333333 242.57422222c-30.72-30.72-80.44088889-30.72-111.16088888 0s-30.72 80.44088889 0 111.16088889l427.12177777 427.12177778c30.72 30.72 80.44088889 30.72 111.16088889 0L995.89688889 353.84888889c30.72-30.72 30.72-80.44088889 0-111.16088889s-80.44088889-30.72-111.16088889 0L513.13777778 614.17244445z" p-id="7093"></path></svg>
@@ -1,17 +1,17 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
- <g>
6
- <g>
7
- <path d="M4.4,7.7C4.4,7.7,4.4,7.8,4.4,7.7l-0.7,2.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0
8
- l2.6-0.7c0,0,0,0,0,0c0,0,0.1,0,0.1,0l6.8-6.8C13.9,3.1,14,2.8,14,2.5c0-0.3-0.1-0.7-0.4-0.9L12.9,1c-0.3-0.3-0.6-0.4-0.9-0.4
9
- c-0.3,0-0.6,0.1-0.8,0.3L4.4,7.7C4.4,7.7,4.4,7.7,4.4,7.7 M13,2.6l-0.7,0.7l-1.1-1.1l0.7-0.7c0.1-0.1,0.3-0.1,0.4,0L13,2.2
10
- c0.1,0.1,0.1,0.2,0.1,0.2C13.1,2.5,13,2.6,13,2.6 M5.6,7.8l4.9-4.9L11.6,4L6.7,8.9L5.6,7.8z M4.7,9.8L5,8.5l1,1L4.7,9.8z M4.7,9.8
11
- "/>
12
- <path d="M13.4,5.4c-0.3,0-0.5,0.2-0.5,0.5v6.4c0,0.3-0.3,0.6-0.6,0.6H1.6c-0.3,0-0.6-0.3-0.6-0.6V1.8
13
- c0-0.3,0.3-0.6,0.6-0.6h6.9C8.8,1.2,9,1,9,0.7c0-0.3-0.2-0.5-0.5-0.5h-7C0.7,0.2,0,0.9,0,1.7v10.5c0,0.8,0.7,1.5,1.5,1.5h10.9
14
- c0.8,0,1.5-0.7,1.5-1.5V5.8C13.9,5.6,13.7,5.4,13.4,5.4"/>
15
- </g>
16
- </g>
17
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path d="M4.4,7.7C4.4,7.7,4.4,7.8,4.4,7.7l-0.7,2.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0
8
+ l2.6-0.7c0,0,0,0,0,0c0,0,0.1,0,0.1,0l6.8-6.8C13.9,3.1,14,2.8,14,2.5c0-0.3-0.1-0.7-0.4-0.9L12.9,1c-0.3-0.3-0.6-0.4-0.9-0.4
9
+ c-0.3,0-0.6,0.1-0.8,0.3L4.4,7.7C4.4,7.7,4.4,7.7,4.4,7.7 M13,2.6l-0.7,0.7l-1.1-1.1l0.7-0.7c0.1-0.1,0.3-0.1,0.4,0L13,2.2
10
+ c0.1,0.1,0.1,0.2,0.1,0.2C13.1,2.5,13,2.6,13,2.6 M5.6,7.8l4.9-4.9L11.6,4L6.7,8.9L5.6,7.8z M4.7,9.8L5,8.5l1,1L4.7,9.8z M4.7,9.8
11
+ "/>
12
+ <path d="M13.4,5.4c-0.3,0-0.5,0.2-0.5,0.5v6.4c0,0.3-0.3,0.6-0.6,0.6H1.6c-0.3,0-0.6-0.3-0.6-0.6V1.8
13
+ c0-0.3,0.3-0.6,0.6-0.6h6.9C8.8,1.2,9,1,9,0.7c0-0.3-0.2-0.5-0.5-0.5h-7C0.7,0.2,0,0.9,0,1.7v10.5c0,0.8,0.7,1.5,1.5,1.5h10.9
14
+ c0.8,0,1.5-0.7,1.5-1.5V5.8C13.9,5.6,13.7,5.4,13.4,5.4"/>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -1,17 +1,17 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
- <g>
6
- <g>
7
- <path d="M4.4,7.7C4.4,7.7,4.4,7.8,4.4,7.7l-0.7,2.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0
8
- l2.6-0.7c0,0,0,0,0,0c0,0,0.1,0,0.1,0l6.8-6.8C13.9,3.1,14,2.8,14,2.5c0-0.3-0.1-0.7-0.4-0.9L12.9,1c-0.3-0.3-0.6-0.4-0.9-0.4
9
- c-0.3,0-0.6,0.1-0.8,0.3L4.4,7.7C4.4,7.7,4.4,7.7,4.4,7.7 M13,2.6l-0.7,0.7l-1.1-1.1l0.7-0.7c0.1-0.1,0.3-0.1,0.4,0L13,2.2
10
- c0.1,0.1,0.1,0.2,0.1,0.2C13.1,2.5,13,2.6,13,2.6 M5.6,7.8l4.9-4.9L11.6,4L6.7,8.9L5.6,7.8z M4.7,9.8L5,8.5l1,1L4.7,9.8z M4.7,9.8
11
- "/>
12
- <path d="M13.4,5.4c-0.3,0-0.5,0.2-0.5,0.5v6.4c0,0.3-0.3,0.6-0.6,0.6H1.6c-0.3,0-0.6-0.3-0.6-0.6V1.8
13
- c0-0.3,0.3-0.6,0.6-0.6h6.9C8.8,1.2,9,1,9,0.7c0-0.3-0.2-0.5-0.5-0.5h-7C0.7,0.2,0,0.9,0,1.7v10.5c0,0.8,0.7,1.5,1.5,1.5h10.9
14
- c0.8,0,1.5-0.7,1.5-1.5V5.8C13.9,5.6,13.7,5.4,13.4,5.4"/>
15
- </g>
16
- </g>
17
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path d="M4.4,7.7C4.4,7.7,4.4,7.8,4.4,7.7l-0.7,2.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0
8
+ l2.6-0.7c0,0,0,0,0,0c0,0,0.1,0,0.1,0l6.8-6.8C13.9,3.1,14,2.8,14,2.5c0-0.3-0.1-0.7-0.4-0.9L12.9,1c-0.3-0.3-0.6-0.4-0.9-0.4
9
+ c-0.3,0-0.6,0.1-0.8,0.3L4.4,7.7C4.4,7.7,4.4,7.7,4.4,7.7 M13,2.6l-0.7,0.7l-1.1-1.1l0.7-0.7c0.1-0.1,0.3-0.1,0.4,0L13,2.2
10
+ c0.1,0.1,0.1,0.2,0.1,0.2C13.1,2.5,13,2.6,13,2.6 M5.6,7.8l4.9-4.9L11.6,4L6.7,8.9L5.6,7.8z M4.7,9.8L5,8.5l1,1L4.7,9.8z M4.7,9.8
11
+ "/>
12
+ <path d="M13.4,5.4c-0.3,0-0.5,0.2-0.5,0.5v6.4c0,0.3-0.3,0.6-0.6,0.6H1.6c-0.3,0-0.6-0.3-0.6-0.6V1.8
13
+ c0-0.3,0.3-0.6,0.6-0.6h6.9C8.8,1.2,9,1,9,0.7c0-0.3-0.2-0.5-0.5-0.5h-7C0.7,0.2,0,0.9,0,1.7v10.5c0,0.8,0.7,1.5,1.5,1.5h10.9
14
+ c0.8,0,1.5-0.7,1.5-1.5V5.8C13.9,5.6,13.7,5.4,13.4,5.4"/>
15
+ </g>
16
+ </g>
17
+ </svg>
package/src/svg/empty.svg CHANGED
@@ -1,27 +1,27 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 70 70" enable-background="new 0 0 70 70" xml:space="preserve">
5
- <g opacity="0.25">
6
- <g>
7
- <ellipse fill="#D4D8DB" cx="35" cy="51.8" rx="34.4" ry="6.9"/>
8
- </g>
9
- <g>
10
- <g>
11
- <path fill="#D4D8DB" d="M11,26h8.2c0.7,0,1.3,0.4,1.6,1l2.7,5.8c0.3,0.6,0.9,1,1.6,1H45c0.7,0,1.3-0.4,1.6-1l2.7-5.8
12
- c0.3-0.6,0.9-1,1.6-1H59c1,0,1.7,0.8,1.7,1.9v23.8c0,1-0.8,1.9-1.7,1.9H11c-1,0-1.7-0.8-1.7-1.9V27.8C9.2,26.8,10,26,11,26z"/>
13
- <path fill="#798294" d="M59,54.3H11c-1.4,0-2.6-1.2-2.6-2.7V27.8c0-1.5,1.2-2.7,2.6-2.7h8.2c1,0,1.9,0.6,2.3,1.5l2.7,5.8
14
- c0.2,0.3,0.5,0.5,0.8,0.5H45c0.3,0,0.6-0.2,0.8-0.5l2.7-5.8c0.4-0.9,1.3-1.5,2.3-1.5H59c1.4,0,2.6,1.2,2.6,2.7v23.8
15
- C61.6,53.1,60.5,54.3,59,54.3z M11,26.8c-0.5,0-0.9,0.4-0.9,1v23.8c0,0.6,0.4,1,0.9,1H59c0.5,0,0.9-0.4,0.9-1V27.8
16
- c0-0.6-0.4-1-0.9-1h-8.2c-0.3,0-0.6,0.2-0.8,0.5l-2.7,5.8c-0.4,0.9-1.3,1.5-2.3,1.5H25c-1,0-1.9-0.6-2.3-1.5L20,27.4
17
- c-0.2-0.3-0.5-0.5-0.8-0.5H11z"/>
18
- </g>
19
- </g>
20
- <g>
21
- <g>
22
- <path fill="#798294" d="M59.8,27.3L48.6,13.5c-0.2-0.2-0.4-0.4-0.7-0.4H22.1c-0.3,0-0.5,0.1-0.7,0.3L10.2,27.3l-1.3-1.1
23
- l11.2-13.8c0.5-0.6,1.2-1,2-1h25.8c0.8,0,1.6,0.4,2,1l11.2,13.8L59.8,27.3z"/>
24
- </g>
25
- </g>
26
- </g>
27
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 70 70" enable-background="new 0 0 70 70" xml:space="preserve">
5
+ <g opacity="0.25">
6
+ <g>
7
+ <ellipse fill="#D4D8DB" cx="35" cy="51.8" rx="34.4" ry="6.9"/>
8
+ </g>
9
+ <g>
10
+ <g>
11
+ <path fill="#D4D8DB" d="M11,26h8.2c0.7,0,1.3,0.4,1.6,1l2.7,5.8c0.3,0.6,0.9,1,1.6,1H45c0.7,0,1.3-0.4,1.6-1l2.7-5.8
12
+ c0.3-0.6,0.9-1,1.6-1H59c1,0,1.7,0.8,1.7,1.9v23.8c0,1-0.8,1.9-1.7,1.9H11c-1,0-1.7-0.8-1.7-1.9V27.8C9.2,26.8,10,26,11,26z"/>
13
+ <path fill="#798294" d="M59,54.3H11c-1.4,0-2.6-1.2-2.6-2.7V27.8c0-1.5,1.2-2.7,2.6-2.7h8.2c1,0,1.9,0.6,2.3,1.5l2.7,5.8
14
+ c0.2,0.3,0.5,0.5,0.8,0.5H45c0.3,0,0.6-0.2,0.8-0.5l2.7-5.8c0.4-0.9,1.3-1.5,2.3-1.5H59c1.4,0,2.6,1.2,2.6,2.7v23.8
15
+ C61.6,53.1,60.5,54.3,59,54.3z M11,26.8c-0.5,0-0.9,0.4-0.9,1v23.8c0,0.6,0.4,1,0.9,1H59c0.5,0,0.9-0.4,0.9-1V27.8
16
+ c0-0.6-0.4-1-0.9-1h-8.2c-0.3,0-0.6,0.2-0.8,0.5l-2.7,5.8c-0.4,0.9-1.3,1.5-2.3,1.5H25c-1,0-1.9-0.6-2.3-1.5L20,27.4
17
+ c-0.2-0.3-0.5-0.5-0.8-0.5H11z"/>
18
+ </g>
19
+ </g>
20
+ <g>
21
+ <g>
22
+ <path fill="#798294" d="M59.8,27.3L48.6,13.5c-0.2-0.2-0.4-0.4-0.7-0.4H22.1c-0.3,0-0.5,0.1-0.7,0.3L10.2,27.3l-1.3-1.1
23
+ l11.2-13.8c0.5-0.6,1.2-1,2-1h25.8c0.8,0,1.6,0.4,2,1l11.2,13.8L59.8,27.3z"/>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </svg>
@@ -1,21 +1,21 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
- <g>
6
- <g>
7
- <defs>
8
- <rect id="SVGID_1_" x="0.1" y="0.1" width="13.9" height="13.9"/>
9
- </defs>
10
- <clipPath id="SVGID_2_">
11
- <use xlink:href="#SVGID_1_" overflow="visible"/>
12
- </clipPath>
13
- <path clip-path="url(#SVGID_2_)" d="M12.3,0.9c0.4,0,0.8,0.3,0.8,0.8v10.6c0,0.4-0.3,0.8-0.8,0.8H1.7
14
- c-0.4,0-0.8-0.3-0.8-0.8V1.7c0-0.4,0.3-0.8,0.8-0.8H12.3 M12.3,0.1H1.7c-0.9,0-1.6,0.7-1.6,1.6v10.6c0,0.9,0.7,1.6,1.6,1.6h10.6
15
- c0.9,0,1.6-0.7,1.6-1.6V1.7C13.9,0.8,13.2,0.1,12.3,0.1L12.3,0.1z M12.3,0.1"/>
16
- </g>
17
- <path d="M10,6.6H7.4V4c0-0.2-0.2-0.4-0.4-0.4C6.8,3.5,6.6,3.7,6.6,4v2.6H4C3.7,6.6,3.5,6.8,3.5,7
18
- c0,0.2,0.2,0.4,0.4,0.4h2.6V10c0,0.2,0.2,0.4,0.4,0.4c0.2,0,0.4-0.2,0.4-0.4V7.4H10c0.2,0,0.4-0.2,0.4-0.4
19
- C10.5,6.8,10.3,6.6,10,6.6z"/>
20
- </g>
21
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 14 14" enable-background="new 0 0 14 14" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <defs>
8
+ <rect id="SVGID_1_" x="0.1" y="0.1" width="13.9" height="13.9"/>
9
+ </defs>
10
+ <clipPath id="SVGID_2_">
11
+ <use xlink:href="#SVGID_1_" overflow="visible"/>
12
+ </clipPath>
13
+ <path clip-path="url(#SVGID_2_)" d="M12.3,0.9c0.4,0,0.8,0.3,0.8,0.8v10.6c0,0.4-0.3,0.8-0.8,0.8H1.7
14
+ c-0.4,0-0.8-0.3-0.8-0.8V1.7c0-0.4,0.3-0.8,0.8-0.8H12.3 M12.3,0.1H1.7c-0.9,0-1.6,0.7-1.6,1.6v10.6c0,0.9,0.7,1.6,1.6,1.6h10.6
15
+ c0.9,0,1.6-0.7,1.6-1.6V1.7C13.9,0.8,13.2,0.1,12.3,0.1L12.3,0.1z M12.3,0.1"/>
16
+ </g>
17
+ <path d="M10,6.6H7.4V4c0-0.2-0.2-0.4-0.4-0.4C6.8,3.5,6.6,3.7,6.6,4v2.6H4C3.7,6.6,3.5,6.8,3.5,7
18
+ c0,0.2,0.2,0.4,0.4,0.4h2.6V10c0,0.2,0.2,0.4,0.4,0.4c0.2,0,0.4-0.2,0.4-0.4V7.4H10c0.2,0,0.4-0.2,0.4-0.4
19
+ C10.5,6.8,10.3,6.6,10,6.6z"/>
20
+ </g>
21
+ </svg>
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564736400285" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6253" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M633.64080174 816.16217531c-9.34340138 0-18.68811065-3.55266364-25.81698316-10.68153617L340.18501571 537.84183554c-14.25905295-14.23419982-14.25905295-37.35136819 1e-8-51.61042114L607.82381932 218.5677592c14.25905295-14.25905295 37.35136819-14.25905295 51.61042115 0 14.25905295 14.23419982 14.25905295 37.35136819 0 51.61042113l-241.82182043 241.84536489L659.43423971 753.84536487c14.25905295 14.25905295 14.25905295 37.35136819-1e-8 51.61042116C652.32891241 812.60951167 642.98420313 816.16217531 633.64080174 816.16217531z" p-id="6254"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564736400285" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6253" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M633.64080174 816.16217531c-9.34340138 0-18.68811065-3.55266364-25.81698316-10.68153617L340.18501571 537.84183554c-14.25905295-14.23419982-14.25905295-37.35136819 1e-8-51.61042114L607.82381932 218.5677592c14.25905295-14.25905295 37.35136819-14.25905295 51.61042115 0 14.25905295 14.23419982 14.25905295 37.35136819 0 51.61042113l-241.82182043 241.84536489L659.43423971 753.84536487c14.25905295 14.25905295 14.25905295 37.35136819-1e-8 51.61042116C652.32891241 812.60951167 642.98420313 816.16217531 633.64080174 816.16217531z" p-id="6254"></path></svg>
package/src/svg/more.svg CHANGED
@@ -1,10 +1,10 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 18 18" enable-background="new 0 0 18 18" xml:space="preserve">
5
- <g>
6
- <path d="M1.4,9c0,0.8,0.6,1.4,1.4,1.4c0.8,0,1.4-0.6,1.4-1.4c0-0.8-0.6-1.4-1.4-1.4C2,7.6,1.4,8.2,1.4,9L1.4,9z
7
- M7.6,9c0,0.8,0.6,1.4,1.4,1.4c0.8,0,1.4-0.6,1.4-1.4c0-0.8-0.6-1.4-1.4-1.4C8.2,7.6,7.6,8.2,7.6,9L7.6,9z M13.9,9
8
- c0,0.8,0.6,1.4,1.4,1.4c0.8,0,1.4-0.6,1.4-1.4c0-0.8-0.6-1.4-1.4-1.4C14.5,7.6,13.9,8.2,13.9,9L13.9,9z M14.9,9"/>
9
- </g>
10
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 18 18" enable-background="new 0 0 18 18" xml:space="preserve">
5
+ <g>
6
+ <path d="M1.4,9c0,0.8,0.6,1.4,1.4,1.4c0.8,0,1.4-0.6,1.4-1.4c0-0.8-0.6-1.4-1.4-1.4C2,7.6,1.4,8.2,1.4,9L1.4,9z
7
+ M7.6,9c0,0.8,0.6,1.4,1.4,1.4c0.8,0,1.4-0.6,1.4-1.4c0-0.8-0.6-1.4-1.4-1.4C8.2,7.6,7.6,8.2,7.6,9L7.6,9z M13.9,9
8
+ c0,0.8,0.6,1.4,1.4,1.4c0.8,0,1.4-0.6,1.4-1.4c0-0.8-0.6-1.4-1.4-1.4C14.5,7.6,13.9,8.2,13.9,9L13.9,9z M14.9,9"/>
9
+ </g>
10
+ </svg>
package/src/svg/next.svg CHANGED
@@ -1,40 +1,40 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 477.175 477.175" style="enable-background:new 0 0 477.175 477.175;" xml:space="preserve">
5
- <g>
6
- <path d="M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5
7
- c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z
8
- "/>
9
- </g>
10
- <g>
11
- </g>
12
- <g>
13
- </g>
14
- <g>
15
- </g>
16
- <g>
17
- </g>
18
- <g>
19
- </g>
20
- <g>
21
- </g>
22
- <g>
23
- </g>
24
- <g>
25
- </g>
26
- <g>
27
- </g>
28
- <g>
29
- </g>
30
- <g>
31
- </g>
32
- <g>
33
- </g>
34
- <g>
35
- </g>
36
- <g>
37
- </g>
38
- <g>
39
- </g>
40
- </svg>
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 477.175 477.175" style="enable-background:new 0 0 477.175 477.175;" xml:space="preserve">
5
+ <g>
6
+ <path d="M360.731,229.075l-225.1-225.1c-5.3-5.3-13.8-5.3-19.1,0s-5.3,13.8,0,19.1l215.5,215.5l-215.5,215.5
7
+ c-5.3,5.3-5.3,13.8,0,19.1c2.6,2.6,6.1,4,9.5,4c3.4,0,6.9-1.3,9.5-4l225.1-225.1C365.931,242.875,365.931,234.275,360.731,229.075z
8
+ "/>
9
+ </g>
10
+ <g>
11
+ </g>
12
+ <g>
13
+ </g>
14
+ <g>
15
+ </g>
16
+ <g>
17
+ </g>
18
+ <g>
19
+ </g>
20
+ <g>
21
+ </g>
22
+ <g>
23
+ </g>
24
+ <g>
25
+ </g>
26
+ <g>
27
+ </g>
28
+ <g>
29
+ </g>
30
+ <g>
31
+ </g>
32
+ <g>
33
+ </g>
34
+ <g>
35
+ </g>
36
+ <g>
37
+ </g>
38
+ <g>
39
+ </g>
40
+ </svg>
package/src/svg/pen.svg CHANGED
@@ -1,12 +1,12 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
5
- <g>
6
- <g>
7
- <path d="M1.6,10.1l9.5-9.5c0.5-0.5,1.2-0.5,1.7,0l2.6,2.6c0.5,0.5,0.5,1.2,0,1.7l-9.5,9.5l-4.7,1.3
8
- c-0.7,0.1-1-0.2-0.9-0.9L1.6,10.1 M2.5,10.9l-1,3.5l3.5-1L2.5,10.9 M14.1,4.5c0.4-0.4,0.4-0.4,0-0.9l-1.7-1.7
9
- c-0.4-0.4-0.4-0.4-0.9,0L9.8,3.6l2.6,2.6L14.1,4.5z M6,12.6l5.6-5.6L8.9,4.5L3.4,10C3.6,10.3,5.1,11.7,6,12.6L6,12.6z M6,12.6"/>
10
- </g>
11
- </g>
12
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
5
+ <g>
6
+ <g>
7
+ <path d="M1.6,10.1l9.5-9.5c0.5-0.5,1.2-0.5,1.7,0l2.6,2.6c0.5,0.5,0.5,1.2,0,1.7l-9.5,9.5l-4.7,1.3
8
+ c-0.7,0.1-1-0.2-0.9-0.9L1.6,10.1 M2.5,10.9l-1,3.5l3.5-1L2.5,10.9 M14.1,4.5c0.4-0.4,0.4-0.4,0-0.9l-1.7-1.7
9
+ c-0.4-0.4-0.4-0.4-0.9,0L9.8,3.6l2.6,2.6L14.1,4.5z M6,12.6l5.6-5.6L8.9,4.5L3.4,10C3.6,10.3,5.1,11.7,6,12.6L6,12.6z M6,12.6"/>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564741705784" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13732" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M591.71679688 511.91210937l238.79882812-238.79882812c21.88476563-21.88476563 21.88476563-57.56835938 0-79.453125-21.88476563-21.88476563-57.56835938-21.88476563-79.453125 0L512.26367188 432.45898437 273.46484375 193.66015625c-21.88476563-21.88476563-57.56835938-21.88476563-79.453125 0-21.88476563 21.88476563-21.88476563 57.56835938 0 79.453125l238.79882813 238.79882813-238.79882813 238.79882812c-21.88476563 21.88476563-21.88476563 57.56835938 0 79.453125 21.88476563 21.88476563 57.56835938 21.88476563 79.453125 0l238.79882813-238.79882813L751.15039063 830.1640625c21.88476563 21.88476563 57.56835938 21.88476563 79.45312499 0 21.88476563-21.88476563 21.88476563-57.56835938 0-79.453125L591.71679688 511.91210937z" p-id="13733"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564741705784" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13732" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M591.71679688 511.91210937l238.79882812-238.79882812c21.88476563-21.88476563 21.88476563-57.56835938 0-79.453125-21.88476563-21.88476563-57.56835938-21.88476563-79.453125 0L512.26367188 432.45898437 273.46484375 193.66015625c-21.88476563-21.88476563-57.56835938-21.88476563-79.453125 0-21.88476563 21.88476563-21.88476563 57.56835938 0 79.453125l238.79882813 238.79882813-238.79882813 238.79882812c-21.88476563 21.88476563-21.88476563 57.56835938 0 79.453125 21.88476563 21.88476563 57.56835938 21.88476563 79.453125 0l238.79882813-238.79882813L751.15039063 830.1640625c21.88476563 21.88476563 57.56835938 21.88476563 79.45312499 0 21.88476563-21.88476563 21.88476563-57.56835938 0-79.453125L591.71679688 511.91210937z" p-id="13733"></path></svg>
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564736343043" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6129" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M704.38948934 527.54843719c0.39598597-0.76672511 1.03780245-1.40854159 1.38462264-2.20051356 6.79820613-14.13989558 4.57244419-31.4423659-7.46526944-42.81434486L425.43316806 224.44094503c-14.8813731-14.06548219-38.33890437-13.3984181-52.42963417 1.45903604-14.06548219 14.8813731-13.42233704 38.33890437 1.45903604 52.42963418l244.84437112 231.61869802L375.42595899 745.00332066c-14.73254628 14.21298035-15.17769882 37.67184027-0.96338906 52.42963416 7.26727684 7.5636018 16.98222638 11.34673134 26.69717595 11.34673136 9.26979778 0 18.53959478-3.46022832 25.73245823-10.38201364l270.40408281-260.61471986c0.51956594-0.51956594 0.71622989-1.23579583 1.23579583-1.77927996 0.39598597-0.37073836 0.81589091-0.64314514 1.21054822-1.03780245C701.84348428 532.76402729 702.95570013 530.06919541 704.38948934 527.54843719z" p-id="6130"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564736343043" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6129" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M704.38948934 527.54843719c0.39598597-0.76672511 1.03780245-1.40854159 1.38462264-2.20051356 6.79820613-14.13989558 4.57244419-31.4423659-7.46526944-42.81434486L425.43316806 224.44094503c-14.8813731-14.06548219-38.33890437-13.3984181-52.42963417 1.45903604-14.06548219 14.8813731-13.42233704 38.33890437 1.45903604 52.42963418l244.84437112 231.61869802L375.42595899 745.00332066c-14.73254628 14.21298035-15.17769882 37.67184027-0.96338906 52.42963416 7.26727684 7.5636018 16.98222638 11.34673134 26.69717595 11.34673136 9.26979778 0 18.53959478-3.46022832 25.73245823-10.38201364l270.40408281-260.61471986c0.51956594-0.51956594 0.71622989-1.23579583 1.23579583-1.77927996 0.39598597-0.37073836 0.81589091-0.64314514 1.21054822-1.03780245C701.84348428 532.76402729 702.95570013 530.06919541 704.38948934 527.54843719z" p-id="6130"></path></svg>
@@ -1,9 +1,9 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
2
- <svg t="1578551275875" class="icon" viewBox="0 0 1024 1024" version="1.1"
3
- xmlns="http://www.w3.org/2000/svg" p-id="3508"
4
- xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32">
5
- <defs>
6
- <style type="text/css"></style>
7
- </defs>
8
- <path d="M885.248 829.952c7.04 7.936 10.496 16.896 10.496 26.496 0 10.88-3.968 20.096-11.904 27.904-7.552 7.552-17.92 11.776-28.672 11.52-4.608 0-9.216-0.768-13.696-2.176-4.352-1.408-8.32-3.584-11.904-6.4l-4.352-3.456-217.6-213.248c-52.224 35.968-110.72 54.016-175.36 54.016-6.528 0-13.056-0.256-19.84-0.768-6.656-0.512-13.312-1.408-19.84-2.56-44.8-4.992-87.68-20.224-125.184-44.544-41.088-25.728-73.984-59.648-98.688-102.016-11.904-19.712-21.12-40.704-27.776-62.592-6.656-22.016-10.88-44.8-12.288-67.712-1.408-22.912-0.128-45.952 3.968-68.608 5.888-36.608 19.072-71.68 38.784-103.296 19.584-31.872 45.312-59.648 75.776-81.92 25.856-19.968 54.784-35.456 86.784-46.336 31.616-10.752 64.768-16.256 98.304-16.256 14.08 0 27.648 0.896 40.576 2.56 34.688 4.608 67.84 14.848 99.584 30.848 31.232 15.616 59.264 36.48 82.816 61.696 27.648 28.032 48.64 61.184 62.976 99.456 14.336 38.272 20.736 77.184 18.944 116.608-2.304 65.792-25.6 124.928-69.632 177.408l218.496 213.376h-0.768z m-193.792-391.68c1.92-35.072-4.096-70.272-17.664-102.784-7.68-20.096-18.048-39.168-30.848-56.576-12.928-17.664-28.032-33.536-45.312-47.616-17.024-13.824-35.84-25.472-55.936-34.688-42.88-19.328-90.496-26.752-137.472-21.376-2.688 0-5.376 0.256-7.936 0.896l-5.248 0.896c-37.504 5.632-73.216 19.584-104.448 40.704-31.36 20.736-57.344 48.128-76.16 80.128-21.76 34.816-33.664 73.728-35.712 116.608-2.048 42.88 6.016 82.56 24.192 119.168 15.232 33.152 38.016 62.464 66.56 85.76 28.288 23.552 61.568 40.832 97.408 50.56 37.632 10.24 75.52 12.288 113.664 6.016 19.968-3.456 39.552-9.216 58.24-17.152 18.56-7.936 36.096-17.792 52.48-29.568 16.256-11.776 30.976-25.344 44.032-40.32 13.184-15.104 24.192-31.616 33.024-49.28 16.256-31.616 25.472-66.176 27.136-101.376z" p-id="3509"></path>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
2
+ <svg t="1578551275875" class="icon" viewBox="0 0 1024 1024" version="1.1"
3
+ xmlns="http://www.w3.org/2000/svg" p-id="3508"
4
+ xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32">
5
+ <defs>
6
+ <style type="text/css"></style>
7
+ </defs>
8
+ <path d="M885.248 829.952c7.04 7.936 10.496 16.896 10.496 26.496 0 10.88-3.968 20.096-11.904 27.904-7.552 7.552-17.92 11.776-28.672 11.52-4.608 0-9.216-0.768-13.696-2.176-4.352-1.408-8.32-3.584-11.904-6.4l-4.352-3.456-217.6-213.248c-52.224 35.968-110.72 54.016-175.36 54.016-6.528 0-13.056-0.256-19.84-0.768-6.656-0.512-13.312-1.408-19.84-2.56-44.8-4.992-87.68-20.224-125.184-44.544-41.088-25.728-73.984-59.648-98.688-102.016-11.904-19.712-21.12-40.704-27.776-62.592-6.656-22.016-10.88-44.8-12.288-67.712-1.408-22.912-0.128-45.952 3.968-68.608 5.888-36.608 19.072-71.68 38.784-103.296 19.584-31.872 45.312-59.648 75.776-81.92 25.856-19.968 54.784-35.456 86.784-46.336 31.616-10.752 64.768-16.256 98.304-16.256 14.08 0 27.648 0.896 40.576 2.56 34.688 4.608 67.84 14.848 99.584 30.848 31.232 15.616 59.264 36.48 82.816 61.696 27.648 28.032 48.64 61.184 62.976 99.456 14.336 38.272 20.736 77.184 18.944 116.608-2.304 65.792-25.6 124.928-69.632 177.408l218.496 213.376h-0.768z m-193.792-391.68c1.92-35.072-4.096-70.272-17.664-102.784-7.68-20.096-18.048-39.168-30.848-56.576-12.928-17.664-28.032-33.536-45.312-47.616-17.024-13.824-35.84-25.472-55.936-34.688-42.88-19.328-90.496-26.752-137.472-21.376-2.688 0-5.376 0.256-7.936 0.896l-5.248 0.896c-37.504 5.632-73.216 19.584-104.448 40.704-31.36 20.736-57.344 48.128-76.16 80.128-21.76 34.816-33.664 73.728-35.712 116.608-2.048 42.88 6.016 82.56 24.192 119.168 15.232 33.152 38.016 62.464 66.56 85.76 28.288 23.552 61.568 40.832 97.408 50.56 37.632 10.24 75.52 12.288 113.664 6.016 19.968-3.456 39.552-9.216 58.24-17.152 18.56-7.936 36.096-17.792 52.48-29.568 16.256-11.776 30.976-25.344 44.032-40.32 13.184-15.104 24.192-31.616 33.024-49.28 16.256-31.616 25.472-66.176 27.136-101.376z" p-id="3509"></path>
9
9
  </svg>
@@ -1,17 +1,17 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
- viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
5
- <g>
6
- <path d="M15.4,13.1H7.9c-0.3-1-1.1-1.7-2.2-1.7c-1.1,0-2,0.7-2.2,1.7H0.6c-0.3,0-0.6,0.3-0.6,0.6
7
- c0,0.3,0.3,0.6,0.6,0.6h2.9c0.3,1,1.1,1.7,2.2,1.7c1.1,0,2-0.7,2.2-1.7h7.5c0.3,0,0.6-0.3,0.6-0.6C16,13.4,15.7,13.1,15.4,13.1
8
- L15.4,13.1z M5.7,14.9c-0.6,0-1.2-0.5-1.2-1.2c0-0.6,0.5-1.2,1.2-1.2s1.2,0.5,1.2,1.2C6.9,14.4,6.4,14.9,5.7,14.9L5.7,14.9z
9
- M5.7,14.9"/>
10
- <path d="M15.4,7.4h-2.9c-0.3-1-1.1-1.7-2.2-1.7c-1.1,0-2,0.7-2.2,1.7H0.6C0.3,7.4,0,7.7,0,8c0,0.3,0.3,0.6,0.6,0.6
11
- h7.5c0.3,1,1.1,1.7,2.2,1.7c1.1,0,2-0.7,2.2-1.7h2.9C15.7,8.6,16,8.3,16,8C16,7.7,15.7,7.4,15.4,7.4L15.4,7.4z M10.3,9.2
12
- C9.6,9.2,9.1,8.6,9.1,8c0-0.6,0.5-1.2,1.2-1.2c0.6,0,1.2,0.5,1.2,1.2C11.4,8.6,10.9,9.2,10.3,9.2L10.3,9.2z M10.3,9.2"/>
13
- <path d="M0.6,2.9h2.9c0.3,1,1.1,1.7,2.2,1.7c1.1,0,2-0.7,2.2-1.7h7.5c0.3,0,0.6-0.3,0.6-0.6c0-0.3-0.3-0.6-0.6-0.6
14
- H7.9C7.7,0.7,6.8,0,5.7,0c-1.1,0-2,0.7-2.2,1.7H0.6C0.3,1.7,0,2,0,2.3C0,2.6,0.3,2.9,0.6,2.9L0.6,2.9z M5.7,1.1
15
- c0.6,0,1.2,0.5,1.2,1.2c0,0.6-0.5,1.2-1.2,1.2S4.6,2.9,4.6,2.3C4.6,1.6,5.1,1.1,5.7,1.1L5.7,1.1z M5.7,1.1"/>
16
- </g>
17
- </svg>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
5
+ <g>
6
+ <path d="M15.4,13.1H7.9c-0.3-1-1.1-1.7-2.2-1.7c-1.1,0-2,0.7-2.2,1.7H0.6c-0.3,0-0.6,0.3-0.6,0.6
7
+ c0,0.3,0.3,0.6,0.6,0.6h2.9c0.3,1,1.1,1.7,2.2,1.7c1.1,0,2-0.7,2.2-1.7h7.5c0.3,0,0.6-0.3,0.6-0.6C16,13.4,15.7,13.1,15.4,13.1
8
+ L15.4,13.1z M5.7,14.9c-0.6,0-1.2-0.5-1.2-1.2c0-0.6,0.5-1.2,1.2-1.2s1.2,0.5,1.2,1.2C6.9,14.4,6.4,14.9,5.7,14.9L5.7,14.9z
9
+ M5.7,14.9"/>
10
+ <path d="M15.4,7.4h-2.9c-0.3-1-1.1-1.7-2.2-1.7c-1.1,0-2,0.7-2.2,1.7H0.6C0.3,7.4,0,7.7,0,8c0,0.3,0.3,0.6,0.6,0.6
11
+ h7.5c0.3,1,1.1,1.7,2.2,1.7c1.1,0,2-0.7,2.2-1.7h2.9C15.7,8.6,16,8.3,16,8C16,7.7,15.7,7.4,15.4,7.4L15.4,7.4z M10.3,9.2
12
+ C9.6,9.2,9.1,8.6,9.1,8c0-0.6,0.5-1.2,1.2-1.2c0.6,0,1.2,0.5,1.2,1.2C11.4,8.6,10.9,9.2,10.3,9.2L10.3,9.2z M10.3,9.2"/>
13
+ <path d="M0.6,2.9h2.9c0.3,1,1.1,1.7,2.2,1.7c1.1,0,2-0.7,2.2-1.7h7.5c0.3,0,0.6-0.3,0.6-0.6c0-0.3-0.3-0.6-0.6-0.6
14
+ H7.9C7.7,0.7,6.8,0,5.7,0c-1.1,0-2,0.7-2.2,1.7H0.6C0.3,1.7,0,2,0,2.3C0,2.6,0.3,2.9,0.6,2.9L0.6,2.9z M5.7,1.1
15
+ c0.6,0,1.2,0.5,1.2,1.2c0,0.6-0.5,1.2-1.2,1.2S4.6,2.9,4.6,2.3C4.6,1.6,5.1,1.1,5.7,1.1L5.7,1.1z M5.7,1.1"/>
16
+ </g>
17
+ </svg>
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564737027360" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6844" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M511.3210658431053 451.0317127108574L732.9930680692196 672.7716083526611c18.331222236156457 18.331222236156467 48.00064489245414 18.331222236156478 66.33186712861061 2.1316282072803006e-14s18.331222236156478-48.00064489245414 2.1316282072803006e-14-66.33186712861061l-254.87188249826423-254.87188249826437c-18.331222236156457-18.331222236156467-48.00064489245414-18.331222236156478-66.33186712861061-2.1316282072803006e-14L223.24930307269096 606.3718478083609c-18.331222236156467 18.331222236156457-18.331222236156478 48.00064489245414-2.1316282072803006e-14 66.33186712861061s48.00064489245414 18.331222236156478 66.33186712861061 2.1316282072803006e-14L511.3210658431053 451.0317127108574z" p-id="6845"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564737027360" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6844" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M511.3210658431053 451.0317127108574L732.9930680692196 672.7716083526611c18.331222236156457 18.331222236156467 48.00064489245414 18.331222236156478 66.33186712861061 2.1316282072803006e-14s18.331222236156478-48.00064489245414 2.1316282072803006e-14-66.33186712861061l-254.87188249826423-254.87188249826437c-18.331222236156457-18.331222236156467-48.00064489245414-18.331222236156478-66.33186712861061-2.1316282072803006e-14L223.24930307269096 606.3718478083609c-18.331222236156467 18.331222236156457-18.331222236156478 48.00064489245414-2.1316282072803006e-14 66.33186712861061s48.00064489245414 18.331222236156478 66.33186712861061 2.1316282072803006e-14L511.3210658431053 451.0317127108574z" p-id="6845"></path></svg>
package/src/svg/up.svg CHANGED
@@ -1 +1 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564737915914" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7216" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M513.13777778 409.37244445l371.48444444 371.48444444c30.72 30.72 80.44088889 30.72 111.16088889 0s30.72-80.44088889 0-111.16088889L568.77511111 242.57422222c-30.72-30.72-80.44088889-30.72-111.16088889 0L30.37866667 669.696c-30.72 30.72-30.72 80.44088889 0 111.16088889s80.44088889 30.72 111.16088888 0L513.13777778 409.37244445z" p-id="7217"></path></svg>
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1564737915914" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7216" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M513.13777778 409.37244445l371.48444444 371.48444444c30.72 30.72 80.44088889 30.72 111.16088889 0s30.72-80.44088889 0-111.16088889L568.77511111 242.57422222c-30.72-30.72-80.44088889-30.72-111.16088889 0L30.37866667 669.696c-30.72 30.72-30.72 80.44088889 0 111.16088889s80.44088889 30.72 111.16088888 0L513.13777778 409.37244445z" p-id="7217"></path></svg>
@@ -1,9 +1,9 @@
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
- <title>icon/tab-delete</title>
4
- <g id="控件" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="icon/tab-delete" fill="#6a6a6a">
6
- <path d="M10,4 C10.4142136,4 10.75,4.33578644 10.75,4.75 L10.75,9.25 L15.25,9.25 C15.6642136,9.25 16,9.58578644 16,10 C16,10.4142136 15.6642136,10.75 15.25,10.75 L10.75,10.75 L10.75,15.25 C10.75,15.6642136 10.4142136,16 10,16 C9.58578644,16 9.25,15.6642136 9.25,15.25 L9.25,10.75 L4.75,10.75 C4.33578644,10.75 4,10.4142136 4,10 C4,9.58578644 4.33578644,9.25 4.75,9.25 L9.25,9.25 L9.25,4.75 C9.25,4.33578644 9.58578644,4 10,4 Z" id="形状结合" transform="translate(10.000000, 10.000000) rotate(-315.000000) translate(-10.000000, -10.000000) "></path>
7
- </g>
8
- </g>
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
+ <title>icon/tab-delete</title>
4
+ <g id="控件" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="icon/tab-delete" fill="#6a6a6a">
6
+ <path d="M10,4 C10.4142136,4 10.75,4.33578644 10.75,4.75 L10.75,9.25 L15.25,9.25 C15.6642136,9.25 16,9.58578644 16,10 C16,10.4142136 15.6642136,10.75 15.25,10.75 L10.75,10.75 L10.75,15.25 C10.75,15.6642136 10.4142136,16 10,16 C9.58578644,16 9.25,15.6642136 9.25,15.25 L9.25,10.75 L4.75,10.75 C4.33578644,10.75 4,10.4142136 4,10 C4,9.58578644 4.33578644,9.25 4.75,9.25 L9.25,9.25 L9.25,4.75 C9.25,4.33578644 9.58578644,4 10,4 Z" id="形状结合" transform="translate(10.000000, 10.000000) rotate(-315.000000) translate(-10.000000, -10.000000) "></path>
7
+ </g>
8
+ </g>
9
9
  </svg>
@@ -1,9 +1,9 @@
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
- <title>icon/左右滑动@2x</title>
4
- <g id="控件" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round">
5
- <g id="icon/左右滑动/左" stroke="#575757" stroke-width="2">
6
- <path d="M7.07106781,5.07106781 L7.07106781,14.8710678 C7.07106781,14.9815248 7.16061086,15.0710678 7.27106781,15.0710678 L17.0710678,15.0710678 L17.0710678,15.0710678" id="路径-4" transform="translate(12.071068, 10.071068) rotate(-315.000000) translate(-12.071068, -10.071068) "></path>
7
- </g>
8
- </g>
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
+ <title>icon/左右滑动@2x</title>
4
+ <g id="控件" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round">
5
+ <g id="icon/左右滑动/左" stroke="#575757" stroke-width="2">
6
+ <path d="M7.07106781,5.07106781 L7.07106781,14.8710678 C7.07106781,14.9815248 7.16061086,15.0710678 7.27106781,15.0710678 L17.0710678,15.0710678 L17.0710678,15.0710678" id="路径-4" transform="translate(12.071068, 10.071068) rotate(-315.000000) translate(-12.071068, -10.071068) "></path>
7
+ </g>
8
+ </g>
9
9
  </svg>