init new ukui-menu project.
|
@ -0,0 +1,102 @@
|
||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
|
project(ukui-menu LANGUAGES CXX)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||||
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
|
||||||
|
# see https://cmake.org/cmake/help/v3.16/manual/cmake-qt.7.html
|
||||||
|
set(CMAKE_AUTOUIC ON)
|
||||||
|
set(CMAKE_AUTOMOC ON)
|
||||||
|
set(CMAKE_AUTORCC ON)
|
||||||
|
|
||||||
|
# 查找qt组件
|
||||||
|
find_package(Qt5 COMPONENTS
|
||||||
|
Core Quick LinguistTools DBus X11Extras
|
||||||
|
REQUIRED)
|
||||||
|
|
||||||
|
# find kde framework components
|
||||||
|
# see: https://api.kde.org/frameworks/index.html > KWindowSystem
|
||||||
|
find_package(KF5WindowSystem REQUIRED)
|
||||||
|
|
||||||
|
# 查找其他组件
|
||||||
|
# see: https://cmake.org/cmake/help/v3.16/module/FindPkgConfig.html
|
||||||
|
# see: https://cmake.org/cmake/help/v3.16/command/list.html
|
||||||
|
find_package(PkgConfig REQUIRED)
|
||||||
|
|
||||||
|
set(UKUI_MENU_EXTERNAL_LIBS "")
|
||||||
|
# glib-2.0 gio-unix-2.0 gsettings-qt x11 kysdk-waylandhelper
|
||||||
|
set(UKUI_MENU_PC_PKGS glib-2.0 gio-unix-2.0 gsettings-qt x11)
|
||||||
|
|
||||||
|
foreach(external_libs IN ITEMS ${UKUI_MENU_PC_PKGS})
|
||||||
|
pkg_check_modules(${external_libs} REQUIRED ${external_libs})
|
||||||
|
if(${${external_libs}_FOUND})
|
||||||
|
include_directories(${${external_libs}_INCLUDE_DIRS})
|
||||||
|
list(APPEND UKUI_MENU_EXTERNAL_LIBS ${${external_libs}_LIBRARIES})
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
message(STATUS "External libraries found: ${UKUI_MENU_EXTERNAL_LIBS}")
|
||||||
|
|
||||||
|
# include文件夹
|
||||||
|
include_directories(src)
|
||||||
|
include_directories(src/model)
|
||||||
|
include_directories(src/appdata)
|
||||||
|
include_directories(src/settings)
|
||||||
|
include_directories(src/uiconfig)
|
||||||
|
|
||||||
|
# 基础设置
|
||||||
|
set(UKUI_MENU_DATA_DIR "/usr/share/ukui-menu")
|
||||||
|
set(UKUI_MENU_TRANSLATION_DIR "${UKUI_MENU_DATA_DIR}/translations")
|
||||||
|
|
||||||
|
# 宏定义
|
||||||
|
add_compile_definitions(UKUI_MENU_TRANSLATION_DIR="${UKUI_MENU_TRANSLATION_DIR}"
|
||||||
|
UKUI_MENU_DATA_DIR="${UKUI_MENU_DATA_DIR}"
|
||||||
|
)
|
||||||
|
|
||||||
|
# ukui-menu的源码
|
||||||
|
set(SOURCE_FILES
|
||||||
|
src/main.cpp
|
||||||
|
src/model/model.cpp src/model/model.h
|
||||||
|
)
|
||||||
|
|
||||||
|
# qrc文件
|
||||||
|
set(QRC_FILES qml/qml.qrc res/res.qrc)
|
||||||
|
# desktop file
|
||||||
|
set(DESKTOP_FILE data/ukui-menu.desktop)
|
||||||
|
# data files
|
||||||
|
#set(DATA_FILES data/xxx)
|
||||||
|
|
||||||
|
# 翻译文件
|
||||||
|
file(GLOB TS_FILES "${PROJECT_SOURCE_DIR}/translations/*.ts")
|
||||||
|
# 更新翻译并创建.qm文件
|
||||||
|
qt5_create_translation(QM_FILES ${PROJECT_SOURCE_DIR} ${TS_FILES})
|
||||||
|
# see https://cmake.org/cmake/help/v3.16/command/add_custom_command.html
|
||||||
|
# add_custom_target(GEN_TS ALL DEPENDS ${TS_FILES})
|
||||||
|
# add_custom_target(generate_qm ALL DEPENDS ${QM_FILES})
|
||||||
|
|
||||||
|
add_executable(
|
||||||
|
${PROJECT_NAME}
|
||||||
|
${QRC_FILES}
|
||||||
|
${QM_FILES}
|
||||||
|
${SOURCE_FILES}
|
||||||
|
)
|
||||||
|
|
||||||
|
target_compile_definitions(${PROJECT_NAME} PRIVATE $<$<OR:$<CONFIG:Debug>,$<CONFIG:RelWithDebInfo>>:QT_QML_DEBUG>)
|
||||||
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
Qt5::Core
|
||||||
|
Qt5::Quick
|
||||||
|
Qt5::DBus
|
||||||
|
Qt5::X11Extras
|
||||||
|
KF5::WindowSystem
|
||||||
|
${UKUI_MENU_EXTERNAL_LIBS}
|
||||||
|
)
|
||||||
|
|
||||||
|
# 安装ukui-menu
|
||||||
|
install(TARGETS ${PROJECT_NAME} RUNTIME DESTINATION "/usr/bin")
|
||||||
|
# 安装翻译文件
|
||||||
|
install(FILES ${QM_FILES} DESTINATION "${UKUI_MENU_TRANSLATION_DIR}")
|
||||||
|
# 安装desktop文件
|
||||||
|
install(FILES ${DESKTOP_FILE} DESTINATION "/etc/xdg/autostart")
|
|
@ -0,0 +1,101 @@
|
||||||
|
macro(ukui_plugin_translate_ts PLUGIN)
|
||||||
|
set(TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translation/${PLUGIN}_zh_CN.ts)
|
||||||
|
set(BO_TS_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translation/${PLUGIN}_bo_CN.ts)
|
||||||
|
set(B_QM_FILES ${CMAKE_CURRENT_BINARY_DIR}/translation/)
|
||||||
|
|
||||||
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/translation/)
|
||||||
|
else()
|
||||||
|
execute_process(
|
||||||
|
COMMAND mkdir ${CMAKE_CURRENT_SOURCE_DIR}/translation/
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(EXISTS ${TS_FILES})
|
||||||
|
message(STATUS "${TS_FILES} is EXISTS")
|
||||||
|
execute_process(
|
||||||
|
COMMAND lupdate -recursive ${CMAKE_CURRENT_SOURCE_DIR} -target-language zh_CN -ts ${TS_FILES}
|
||||||
|
)
|
||||||
|
execute_process(
|
||||||
|
COMMAND lrelease ${TS_FILES}
|
||||||
|
)
|
||||||
|
else()
|
||||||
|
execute_process(
|
||||||
|
COMMAND lupdate -recursive ${CMAKE_CURRENT_SOURCE_DIR} -target-language zh_CN -ts ${TS_FILES}
|
||||||
|
)
|
||||||
|
execute_process(
|
||||||
|
COMMAND lrelease ${TS_FILES}
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(EXISTS ${BO_TS_FILES})
|
||||||
|
message(STATUS "${BO_TS_FILES} is EXISTS")
|
||||||
|
execute_process(
|
||||||
|
COMMAND lupdate -recursive ${CMAKE_CURRENT_SOURCE_DIR} -target-language bo_CN -ts ${BO_TS_FILES}
|
||||||
|
)
|
||||||
|
execute_process(
|
||||||
|
COMMAND lrelease ${BO_TS_FILES}
|
||||||
|
)
|
||||||
|
else()
|
||||||
|
execute_process(
|
||||||
|
COMMAND lupdate -recursive ${CMAKE_CURRENT_SOURCE_DIR} -target-language bo_CN -ts ${BO_TS_FILES}
|
||||||
|
)
|
||||||
|
execute_process(
|
||||||
|
COMMAND lrelease ${BO_TS_FILES}
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
if(EXISTS ${B_QM_FILES})
|
||||||
|
message(STATUS "${PLUGIN} buildQM dir is EXISTS")
|
||||||
|
else()
|
||||||
|
message(STATUS "${PLUGIN} buildQM dir is not EXISTS")
|
||||||
|
execute_process(
|
||||||
|
COMMAND mkdir ${B_QM_FILES}
|
||||||
|
)
|
||||||
|
message(STATUS "${PLUGIN} buildQM dir is created")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(P_QM_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translation/${PLUGIN}_zh_CN.qm)
|
||||||
|
set(BO_QM_FILES ${CMAKE_CURRENT_SOURCE_DIR}/translation/${PLUGIN}_bo_CN.qm)
|
||||||
|
|
||||||
|
if(EXISTS ${P_QM_FILES})
|
||||||
|
message(STATUS "${PLUGIN} proQM file is EXISTS")
|
||||||
|
execute_process(
|
||||||
|
COMMAND cp -f ${P_QM_FILES} ${B_QM_FILES}
|
||||||
|
)
|
||||||
|
execute_process(
|
||||||
|
COMMAND rm -f ${P_QM_FILES}
|
||||||
|
)
|
||||||
|
message(STATUS "${PLUGIN} buildQM file is created")
|
||||||
|
else()
|
||||||
|
message(STATUS "${PLUGIN} buildQM file is not EXISTS")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(EXISTS ${BO_QM_FILES})
|
||||||
|
message(STATUS "${PLUGIN} proQM file is EXISTS")
|
||||||
|
execute_process(
|
||||||
|
COMMAND cp -f ${BO_QM_FILES} ${B_QM_FILES}
|
||||||
|
)
|
||||||
|
execute_process(
|
||||||
|
COMMAND rm -f ${BO_QM_FILES}
|
||||||
|
)
|
||||||
|
message(STATUS "${PLUGIN} buildQM file is created")
|
||||||
|
else()
|
||||||
|
message(STATUS "${PLUGIN} buildQM file is not EXISTS")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(${PLUGIN} STREQUAL "panel")
|
||||||
|
set(P_QM_INSTALL ${PACKAGE_DATA_DIR}/${PLUGIN}/translation)
|
||||||
|
message(STATUS " panel translation install : ${P_QM_INSTALL}")
|
||||||
|
else()
|
||||||
|
set(P_QM_INSTALL ${PACKAGE_DATA_DIR}/plugin-${PLUGIN}/translation)
|
||||||
|
message(STATUS " plugin ${PLUGIN} translation install : ${P_QM_INSTALL}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
install(DIRECTORY ${B_QM_FILES}
|
||||||
|
DESTINATION ${P_QM_INSTALL})
|
||||||
|
|
||||||
|
ADD_DEFINITIONS(-DQM_INSTALL=\"${P_QM_INSTALL}/${PLUGIN}_zh_CN.qm\")
|
||||||
|
ADD_DEFINITIONS(-DBO_QM_INSTALL=\"${P_QM_INSTALL}/${PLUGIN}_bo_CN.qm\")
|
||||||
|
ADD_DEFINITIONS(-DPLUGINNAME=\"${PLUGIN}\")
|
||||||
|
endmacro()
|
Before Width: | Height: | Size: 633 B |
Before Width: | Height: | Size: 361 B |
|
@ -1,6 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<g id="DM-icon-所有应用" transform="translate(-441 -38)">
|
|
||||||
<rect id="尺寸-16" width="16" height="16" transform="translate(441 38)" fill="none"/>
|
|
||||||
<path id="所有应用" d="M5.5,0H2.3A1.2,1.2,0,0,0,1.1,1.2V4.4A1.2,1.2,0,0,0,2.3,5.6H5.5A1.2,1.2,0,0,0,6.7,4.4V1.2A1.2,1.2,0,0,0,5.5,0ZM2.3.8H5.5a.4.4,0,0,1,.4.4V4.4a.4.4,0,0,1-.4.4H2.3a.4.4,0,0,1-.4-.4V1.2A.4.4,0,0,1,2.3.8ZM11.9,0H8.7A1.2,1.2,0,0,0,7.5,1.2V4.4A1.2,1.2,0,0,0,8.7,5.6h3.2a1.2,1.2,0,0,0,1.2-1.2V1.2A1.2,1.2,0,0,0,11.9,0ZM8.7.8h3.2a.4.4,0,0,1,.4.4V4.4a.4.4,0,0,1-.4.4H8.7a.4.4,0,0,1-.4-.4V1.2A.4.4,0,0,1,8.7.8Zm3.2,5.6H8.7A1.2,1.2,0,0,0,7.5,7.6v3.2A1.2,1.2,0,0,0,8.7,12h3.2a1.2,1.2,0,0,0,1.2-1.2V7.6a1.2,1.2,0,0,0-1.2-1.2Zm-3.2.8h3.2a.4.4,0,0,1,.4.4v3.2a.4.4,0,0,1-.4.4H8.7a.4.4,0,0,1-.4-.4V7.6a.4.4,0,0,1,.4-.4ZM5.5,6.4H2.3A1.2,1.2,0,0,0,1.1,7.6v3.2A1.2,1.2,0,0,0,2.3,12H5.5a1.2,1.2,0,0,0,1.2-1.2V7.6A1.2,1.2,0,0,0,5.5,6.4Zm-3.2.8H5.5a.4.4,0,0,1,.4.4v3.2a.4.4,0,0,1-.4.4H2.3a.4.4,0,0,1-.4-.4V7.6a.4.4,0,0,1,.4-.4Z" transform="translate(441.898 40)" fill="#e0e0e0"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 360 B |
Before Width: | Height: | Size: 230 B |
|
@ -1,4 +0,0 @@
|
||||||
<svg id="DM-icon-_arrow" data-name="DM-icon- arrow" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="热点区域" width="16" height="16" fill="#fff" opacity="0"/>
|
|
||||||
<path id="arrow" d="M303.35,388.438l-2.091,2.364-2.091-2.364a.478.478,0,0,0-.751,0,.64.64,0,0,0,0,.849l2.466,2.788a.478.478,0,0,0,.751,0l2.466-2.788a.657.657,0,0,0,0-.849.489.489,0,0,0-.751,0Z" transform="translate(-293.256 -382.256)" fill="#fff" opacity="0.45"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 479 B |
Before Width: | Height: | Size: 460 B |
Before Width: | Height: | Size: 323 B |
|
@ -1,13 +0,0 @@
|
||||||
<svg id="DM-icon-关闭" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip-path">
|
|
||||||
<rect x="1" y="1" width="16" height="16" fill="none"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
<rect id="尺寸-16" width="16" height="16" fill="none"/>
|
|
||||||
<g id="icon-关闭" transform="translate(-1 -1)" clip-path="url(#clip-path)" style="isolation: isolate">
|
|
||||||
<g id="icon-关闭-2" data-name="icon-关闭" transform="translate(-261.743 -495)">
|
|
||||||
<path id="联合_10" data-name="联合 10" d="M6.5,6.5h0v0h0v0Z" transform="translate(261.743 504.194) rotate(-45)" fill="none" stroke="#e0e0e0" stroke-width="1"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 721 B |
Before Width: | Height: | Size: 427 B |
Before Width: | Height: | Size: 292 B |
|
@ -1,13 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<g id="DM-icon-功能排序" transform="translate(-412 -38)">
|
|
||||||
<rect id="尺寸-16" width="16" height="16" transform="translate(412 38)" fill="none"/>
|
|
||||||
<g id="功能" transform="translate(153 -597)">
|
|
||||||
<g id="矩形_218" data-name="矩形 218" transform="translate(261 637)" fill="none" stroke="#e0e0e0" stroke-width="1">
|
|
||||||
<rect width="12" height="12" rx="2" stroke="none"/>
|
|
||||||
<rect x="0.5" y="0.5" width="11" height="11" rx="1.5" fill="none"/>
|
|
||||||
</g>
|
|
||||||
<rect id="矩形_219" data-name="矩形 219" width="5" height="1" transform="translate(267 642)" fill="#e0e0e0" opacity="0.752"/>
|
|
||||||
<rect id="矩形_220" data-name="矩形 220" width="1" height="10" transform="translate(266 638)" fill="#e0e0e0" opacity="0.752"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 861 B |
Before Width: | Height: | Size: 285 B |
|
@ -1,6 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<g id="DM-icon-check" transform="translate(-317 -38)">
|
|
||||||
<rect id="矩形" width="16" height="16" rx="1" transform="translate(317 38)" fill="#d8d8d8" opacity="0"/>
|
|
||||||
<path id="路径" d="M8.489.287A1.068,1.068,0,0,1,9.22,0H10.6a.2.2,0,0,1,.146.354l-6.977,6.5a.535.535,0,0,1-.795-.076L-.147,2.455a.205.205,0,0,1,.172-.324h.99a1.062,1.062,0,0,1,.862.437L3.422,4.715a.214.214,0,0,0,.319.03Z" transform="translate(320.186 43)" fill="#e0e0e0"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 544 B |
Before Width: | Height: | Size: 486 B |
|
@ -1,4 +0,0 @@
|
||||||
<svg id="DM-icon-选项" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="尺寸-16" width="16" height="16" fill="none"/>
|
|
||||||
<path id="icon-三杠" d="M12682-11771v-1h14v1Zm0-5v-1h14v1Zm0-5v-1h14v1Z" transform="translate(-12681 11783.998)" fill="#e0e0e0"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 305 B |
Before Width: | Height: | Size: 432 B |
|
@ -1,10 +0,0 @@
|
||||||
<svg id="DM-icon-search" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="尺寸-16" width="16" height="16" fill="none"/>
|
|
||||||
<g id="搜索" transform="translate(-230 -499)">
|
|
||||||
<g id="椭圆_83" data-name="椭圆 83" transform="translate(232 501)" fill="none" stroke="#e0e0e0" stroke-width="1">
|
|
||||||
<circle cx="6" cy="6" r="6" stroke="none"/>
|
|
||||||
<circle cx="6" cy="6" r="5.5" fill="none"/>
|
|
||||||
</g>
|
|
||||||
<line id="直线_105" data-name="直线 105" x2="2" y2="2" transform="translate(242 511)" fill="none" stroke="#e0e0e0" stroke-linecap="round" stroke-width="1.2"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 627 B |
Before Width: | Height: | Size: 762 B |
Before Width: | Height: | Size: 373 B |
|
@ -1,6 +0,0 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<g id="DM-icon-返回" transform="translate(-520 -38)">
|
|
||||||
<rect id="尺寸-16" width="16" height="16" transform="translate(520 38)" fill="none"/>
|
|
||||||
<path id="icon-back" d="M20.309,14.869l-5.621,5.194,6,4.806" transform="translate(510.313 26.131)" fill="none" stroke="#e0e0e0" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" opacity="0.604"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 464 B |
Before Width: | Height: | Size: 627 B |
Before Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 214 B |
Before Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 392 B |
|
@ -1,7 +0,0 @@
|
||||||
<svg id="DM-icon-字母排序" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="尺寸-16" width="16" height="16" fill="none"/>
|
|
||||||
<g id="字母" transform="translate(-259.451 -579.866)">
|
|
||||||
<path id="路径_324" data-name="路径 324" d="M-22710,10451.866l5-12,5,12" transform="translate(22972.451 -9858)" fill="none" stroke="#e0e0e0" stroke-linejoin="bevel" stroke-width="1"/>
|
|
||||||
<rect id="矩形_217" data-name="矩形 217" width="7" height="1" transform="translate(264 589)" fill="#e0e0e0"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 553 B |
Before Width: | Height: | Size: 559 B |
Before Width: | Height: | Size: 378 B |
|
@ -1,8 +0,0 @@
|
||||||
<svg id="DM-icon-放大" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="尺寸" width="16" height="16" fill="none"/>
|
|
||||||
<g id="icon" transform="translate(-622.5 -494.5)">
|
|
||||||
<path id="路径_16" data-name="路径 16" d="M.45,10v4.5h4.5" transform="translate(623.551 494.5)" fill="none" stroke="#e6e6e6" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
|
|
||||||
<path id="路径_17" data-name="路径 17" d="M0,0V4.5H4.5" transform="translate(636.999 500.5) rotate(180)" fill="none" stroke="#e6e6e6" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
|
|
||||||
<circle id="椭圆_12" data-name="椭圆 12" cx="2" cy="2" r="2" transform="translate(628.5 500.5)" fill="#e6e6e6"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 760 B |
|
@ -1,14 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M16.9,1H3.1C1.9,1,1,1.9,1,3v1v1v11c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5V4V3C19,1.9,18.1,1,16.9,1z M18,16
|
|
||||||
c0,0.6-0.4,1-1,1H3c-0.6,0-1-0.4-1-1V5h16V16z"/>
|
|
||||||
<polygon class="st0" points="5.3,13.9 8.8,11 5.3,8.1 4.7,8.9 7.2,11 4.7,13.1 "/>
|
|
||||||
<rect x="9" y="14" class="st0" width="4" height="1"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 745 B |
|
@ -1,15 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M16.9,1H3.1C1.9,1,1,1.9,1,3v1v1v11c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5V4V3C19,1.9,18.1,1,16.9,1z M18,16
|
|
||||||
c0,0.6-0.4,1-1,1H3c-0.6,0-1-0.4-1-1V5h16V16z M2,4V3c0-0.6,0.5-1,1.1-1h13.8C17.5,2,18,2.4,18,3v1H2z"/>
|
|
||||||
<polygon class="st1" points="5.3,13.9 8.8,11 5.3,8.1 4.7,8.9 7.2,11 4.7,13.1 "/>
|
|
||||||
<rect x="9" y="14" class="st1" width="4" height="1"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 833 B |
|
@ -1,18 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
.st1{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M16.9,2C17.5,2,18,2.4,18,3v1H2V3c0-0.6,0.5-1,1.1-1H16.9 M16.9,1H3.1C1.9,1,1,1.9,1,3v2h18V3
|
|
||||||
C19,1.9,18.1,1,16.9,1L16.9,1z"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M18,5v11c0,0.6-0.4,1-1,1H3c-0.6,0-1-0.4-1-1V5H18 M19,4H1v12c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V4L19,4z"/>
|
|
||||||
</g>
|
|
||||||
<polyline class="st1" points="5,13.5 8,11 5,8.5 "/>
|
|
||||||
<line class="st1" x1="9" y1="14.5" x2="13" y2="14.5"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 880 B |
|
@ -1,15 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M16.9,1H3.1C1.9,1,1,1.9,1,3v1v1v11c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5V4V3C19,1.9,18.1,1,16.9,1z M18,16
|
|
||||||
c0,0.6-0.4,1-1,1H3c-0.6,0-1-0.4-1-1V5h16V16z M2,4V3c0-0.6,0.5-1,1.1-1h13.8C17.5,2,18,2.4,18,3v1H2z"/>
|
|
||||||
<polygon class="st1" points="5.3,13.9 8.8,11 5.3,8.1 4.7,8.9 7.2,11 4.7,13.1 "/>
|
|
||||||
<rect x="9" y="14" class="st1" width="4" height="1"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 832 B |
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<path class="st0" d="M15,1H4.7C4.4,1,4.2,1.1,4,1.2L2,3v2.5V16c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3h-1.9H12H8H7.9H3.5l1.2-1H15v14
|
|
||||||
h1V2C16,1.4,15.6,1,15,1z M12,4v6l-2-2l-2,2V4H12z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 621 B |
|
@ -1,12 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;fill:#FFFFFF;enable-background:new ;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<path class="st0" d="M15,1H4.7C4.4,1,4.2,1.1,4,1.2L2,3v13c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3h-2H8H3.5l1.2-1H15v14h1V2
|
|
||||||
C16,1.4,15.6,1,15,1z M11,4v3.6l-0.3-0.3L10,6.6L9.3,7.3L9,7.6V4H11z M8,4v6l2-2l2,2V4h1v12c0,0.6-0.4,1-1,1H4c-0.6,0-1-0.4-1-1V4H8
|
|
||||||
z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 734 B |
|
@ -1,16 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M11,4v3.6l-0.3-0.3L10,6.6L9.3,7.3L9,7.6V4H11 M12,3H8v7l2-2l2,2V3L12,3z"/>
|
|
||||||
</g>
|
|
||||||
<path class="st0" d="M15,1H4.7C4.4,1,4.2,1.1,4,1.2L2,3h1.5l1.2-1H15v14h1V2C16,1.4,15.6,1,15,1z"/>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M13,4v12c0,0.6-0.4,1-1,1H4c-0.6,0-1-0.4-1-1V4H13 M14,3H2v13c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3L14,3z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 784 B |
|
@ -1,12 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<path class="st0" d="M15,1H4.7C4.4,1,4.2,1.1,4,1.2L2,3v13c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V3h-2H8H3.5l1.2-1H15v14h1V2
|
|
||||||
C16,1.4,15.6,1,15,1z M11,4v3.6l-0.3-0.3L10,6.6L9.3,7.3L9,7.6V4H11z M8,4v6l2-2l2,2V4h1v12c0,0.6-0.4,1-1,1H4c-0.6,0-1-0.4-1-1V4H8
|
|
||||||
z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 707 B |
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<circle class="st0" cx="4.5" cy="7.5" r="1.5"/>
|
|
||||||
<path class="st0" d="M14,3c-1.1-0.1-2.2,0.3-3,1H8C7.2,3.3,6.1,2.9,5,3C2.8,3,0,6,0,9c0,4,0.8,7,2.5,7C4.6,16,7,12,7,12h5
|
|
||||||
c0,0,2.6,4,4.5,4S19,12,19,9S16.2,3,14,3z M4.5,10C3.1,10,2,8.9,2,7.5S3.1,5,4.5,5S7,6.1,7,7.5S5.9,10,4.5,10z M14,8h-2V7h2V8z
|
|
||||||
M15,10h-1V8h1V10z M15,7h-1V5h1V7z M17,8h-2V7h2V8z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 788 B |
|
@ -1,25 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
.st2{opacity:0.25;fill:#FFFFFF;enable-background:new ;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M4.5,6C5.3,6,6,6.7,6,7.5S5.3,9,4.5,9S3,8.3,3,7.5S3.7,6,4.5,6 M4.5,5C3.1,5,2,6.1,2,7.5S3.1,10,4.5,10
|
|
||||||
S7,8.9,7,7.5S5.9,5,4.5,5L4.5,5z"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M13.7,4c0.1,0,0.2,0,0.2,0l0,0l0,0c1.5,0,4,2.4,4,5c0,3.7-0.9,6-1.5,6c-0.8,0-2.5-1.8-3.7-3.5L12.5,11H12H7
|
|
||||||
H6.4l-0.3,0.5C5.3,12.9,3.5,15,2.5,15C1.9,15,1,13.1,1,9c0-2.6,2.5-5,4-5l0,0l0,0c0.1,0,0.2,0,0.2,0c0.7,0,1.4,0.3,2,0.8L7.6,5H8h3
|
|
||||||
h0.4l0.3-0.2C12.2,4.3,12.9,4,13.7,4 M13.7,3c-1,0-1.9,0.4-2.7,1H8C7.3,3.4,6.3,3,5.3,3C5.2,3,5.1,3,5,3C2.8,3,0,6,0,9
|
|
||||||
c0,4,0.8,7,2.5,7C4.6,16,7,12,7,12h5c0,0,2.6,4,4.5,4S19,12,19,9s-2.8-6-5-6C13.9,3,13.8,3,13.7,3L13.7,3z"/>
|
|
||||||
</g>
|
|
||||||
<rect x="12" y="7" class="st2" width="2" height="1"/>
|
|
||||||
<rect x="15" y="7" class="st2" width="2" height="1"/>
|
|
||||||
<rect x="14" y="5" class="st2" width="1" height="2"/>
|
|
||||||
<rect x="14" y="8" class="st2" width="1" height="2"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,23 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M4.5,6C5.3,6,6,6.7,6,7.5S5.3,9,4.5,9S3,8.3,3,7.5S3.7,6,4.5,6 M4.5,5C3.1,5,2,6.1,2,7.5S3.1,10,4.5,10
|
|
||||||
S7,8.9,7,7.5S5.9,5,4.5,5L4.5,5z"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M13.7,4c0.1,0,0.2,0,0.2,0l0,0h0c1.5,0,4,2.4,4,5c0,3.7-0.9,6-1.5,6c-0.8,0-2.5-1.8-3.7-3.5L12.5,11H12H7
|
|
||||||
l-0.6,0l-0.3,0.5C5.3,12.9,3.5,15,2.5,15C1.9,15,1,13.1,1,9c0-2.6,2.5-5,4-5h0l0,0c0.1,0,0.2,0,0.2,0c0.7,0,1.4,0.3,2,0.8L7.6,5H8
|
|
||||||
h3h0.4l0.3-0.2C12.2,4.3,12.9,4,13.7,4 M13.7,3c-1,0-1.9,0.4-2.7,1H8C7.3,3.4,6.3,3,5.3,3C5.2,3,5.1,3,5,3C2.8,3,0,6,0,9
|
|
||||||
c0,4,0.8,7,2.5,7C4.6,16,7,12,7,12h5c0,0,2.6,4,4.5,4S19,12,19,9s-2.8-6-5-6C13.9,3,13.8,3,13.7,3L13.7,3z"/>
|
|
||||||
</g>
|
|
||||||
<rect x="12" y="7" class="st0" width="2" height="1"/>
|
|
||||||
<rect x="15" y="7" class="st0" width="2" height="1"/>
|
|
||||||
<rect x="14" y="5" class="st0" width="1" height="2"/>
|
|
||||||
<rect x="14" y="8" class="st0" width="1" height="2"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,25 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
.st2{opacity:0.5;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M4.5,6C5.3,6,6,6.7,6,7.5S5.3,9,4.5,9S3,8.3,3,7.5S3.7,6,4.5,6 M4.5,5C3.1,5,2,6.1,2,7.5S3.1,10,4.5,10
|
|
||||||
S7,8.9,7,7.5S5.9,5,4.5,5L4.5,5z"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M13.7,4c0.1,0,0.2,0,0.2,0l0,0l0,0c1.5,0,4,2.4,4,5c0,3.7-0.9,6-1.5,6c-0.8,0-2.5-1.8-3.7-3.5L12.5,11H12H7
|
|
||||||
H6.4l-0.3,0.5C5.3,12.9,3.5,15,2.5,15C1.9,15,1,13.1,1,9c0-2.6,2.5-5,4-5l0,0l0,0c0.1,0,0.2,0,0.2,0c0.7,0,1.4,0.3,2,0.8L7.6,5H8h3
|
|
||||||
h0.4l0.3-0.2C12.2,4.3,12.9,4,13.7,4 M13.7,3c-1,0-1.9,0.4-2.7,1H8C7.3,3.4,6.3,3,5.3,3C5.2,3,5.1,3,5,3C2.8,3,0,6,0,9
|
|
||||||
c0,4,0.8,7,2.5,7C4.6,16,7,12,7,12h5c0,0,2.6,4,4.5,4S19,12,19,9s-2.8-6-5-6C13.9,3,13.8,3,13.7,3L13.7,3z"/>
|
|
||||||
</g>
|
|
||||||
<rect x="12" y="7" class="st2" width="2" height="1"/>
|
|
||||||
<rect x="15" y="7" class="st2" width="2" height="1"/>
|
|
||||||
<rect x="14" y="5" class="st2" width="1" height="2"/>
|
|
||||||
<rect x="14" y="8" class="st2" width="1" height="2"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,12 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_6" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M16,2H3C1.9,2,1,2.9,1,4v11c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2z M13.5,4
|
|
||||||
C14.4,4,15,4.6,15,5.5S14.4,7,13.5,7S12,6.4,12,5.5S12.6,4,13.5,4z M16,15H3v-1l4-8l4,6l2-4l3,6V15z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 644 B |
|
@ -1,12 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_6" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;opacity:0.3;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<polygon class="st0" points="3,13 7,5 11,11 13,7 16,13 16,14 3,14 "/>
|
|
||||||
<rect x="13" y="4" class="st0" width="2" height="2"/>
|
|
||||||
<path class="st0" d="M17,3v13H2V3H17 M18,2H1v15h17V2z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 636 B |
|
@ -1,19 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_6" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M16,3c0.6,0,1,0.4,1,1v11c0,0.6-0.4,1-1,1H3c-0.6,0-1-0.4-1-1V4c0-0.6,0.4-1,1-1H16 M16,2H3C1.9,2,1,2.9,1,4
|
|
||||||
v11c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2L16,2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<polygon class="st0" points="3,14 7,6 11,12 13,8 16,14 16,15 3,15 "/>
|
|
||||||
<g>
|
|
||||||
<circle class="st0" cx="13.5" cy="5.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 799 B |
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_6" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
.st2{opacity:0.5;fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<g>
|
|
||||||
<path class="st1" d="M16,3c0.6,0,1,0.4,1,1v11c0,0.6-0.4,1-1,1H3c-0.6,0-1-0.4-1-1V4c0-0.6,0.4-1,1-1H16 M16,2H3C1.9,2,1,2.9,1,4
|
|
||||||
v11c0,1.1,0.9,2,2,2h13c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2L16,2z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
<polygon class="st2" points="3,14 7,6 11,12 13,8 16,14 16,15 3,15 "/>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="13.5" cy="5.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 878 B |
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
|
||||||
y="0px" viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<path class="st0" d="M10.9,1.1c-5.8-1-10.8,4-9.8,9.8c0.6,3.5,3.4,6.4,6.9,6.9c5.8,1,10.8-4,9.8-9.8C17.3,4.5,14.5,1.7,10.9,1.1z
|
|
||||||
M11.1,2.2c0.4,0.1,0.7,0.4,0.8,0.8L12,3.5L9.9,4.7l-2.8,1L6.6,6.1C6.1,6.5,5.4,6.4,5.1,5.9L4.6,5.1C4.4,4.7,4.4,4.2,4.8,3.8
|
|
||||||
l0.7-0.6C6.6,2.4,8,2,9.5,2C10.1,2,10.6,2.1,11.1,2.2z M12.6,8.2v2.3L11.4,16h-1.1L7.8,9.7L7,9.4V8.2c0-0.6,0.4-1,1-1h3.6
|
|
||||||
C12.2,7.2,12.6,7.6,12.6,8.2z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 847 B |
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
|
||||||
y="0px" viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M11.6,7.2H8c-0.6,0-1,0.4-1,1v1.2l0.8,0.3l2.5,6.3h1.1l1.2-5.5V8.2C12.6,7.6,12.2,7.2,11.6,7.2z"/>
|
|
||||||
<path class="st1" d="M9.5,1C4.8,1,1,4.8,1,9.5S4.8,18,9.5,18S18,14.2,18,9.5S14.2,1,9.5,1z M9.5,17C5.4,17,2,13.6,2,9.5
|
|
||||||
c0-2.9,1.7-5.4,4.1-6.7C5.9,2.9,5.7,3.1,5.5,3.2L4.8,3.8C4.4,4.2,4.4,4.7,4.6,5.1l0.5,0.8c0.3,0.5,1,0.6,1.5,0.2l0.5-0.4l2.8-1
|
|
||||||
L12,3.5L11.9,3c-0.1-0.4-0.4-0.7-0.8-0.8C10.6,2.1,10.1,2,9.5,2C9.2,2,8.9,2,8.6,2.1C8.9,2,9.2,2,9.5,2C13.6,2,17,5.4,17,9.5
|
|
||||||
S13.6,17,9.5,17z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 999 B |
|
@ -1,16 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
|
||||||
y="0px" viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<path class="st0" d="M11.1,2.2c0.4,0.1,0.7,0.4,0.8,0.8L12,3.5L9.9,4.7l-2.8,1L6.6,6.1C6.1,6.5,5.4,6.4,5.1,5.9L4.6,5.1
|
|
||||||
C4.4,4.7,4.4,4.2,4.8,3.8l0.7-0.6C6.6,2.4,8,2,9.5,2C10.1,2,10.6,2.1,11.1,2.2z M12.6,8.2v2.3L11.4,16h-1.1L7.8,9.7L7,9.4V8.2
|
|
||||||
c0-0.6,0.4-1,1-1h3.6C12.2,7.2,12.6,7.6,12.6,8.2z"/>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M9.5,2C13.6,2,17,5.4,17,9.5S13.6,17,9.5,17S2,13.6,2,9.5S5.4,2,9.5,2 M9.5,1C4.8,1,1,4.8,1,9.5S4.8,18,9.5,18
|
|
||||||
S18,14.2,18,9.5S14.2,1,9.5,1L9.5,1z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 922 B |
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
|
||||||
y="0px" viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M11.6,7.2H8c-0.6,0-1,0.4-1,1v1.2l0.8,0.3l2.5,6.3h1.1l1.2-5.5V8.2C12.6,7.6,12.2,7.2,11.6,7.2z"/>
|
|
||||||
<path class="st1" d="M9.5,1C4.8,1,1,4.8,1,9.5S4.8,18,9.5,18S18,14.2,18,9.5S14.2,1,9.5,1z M9.5,17C5.4,17,2,13.6,2,9.5
|
|
||||||
c0-2.9,1.7-5.4,4.1-6.7C5.9,2.9,5.7,3.1,5.5,3.2L4.8,3.8C4.4,4.2,4.4,4.7,4.6,5.1l0.5,0.8c0.3,0.5,1,0.6,1.5,0.2l0.5-0.4l2.8-1
|
|
||||||
L12,3.5L11.9,3c-0.1-0.4-0.4-0.7-0.8-0.8C10.6,2.1,10.1,2,9.5,2C9.2,2,8.9,2,8.6,2.1C8.9,2,9.2,2,9.5,2C13.6,2,17,5.4,17,9.5
|
|
||||||
S13.6,17,9.5,17z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 998 B |
|
@ -1,19 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_19" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{display:none;}
|
|
||||||
.st1{display:inline;}
|
|
||||||
.st2{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M14,0H6C4.9,0,4,0.9,4,2v11v1v3c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-3v-1V2C16,0.9,15.1,0,14,0z M15,17
|
|
||||||
c0,0.6-0.4,1-1,1H6c-0.6,0-1-0.4-1-1v-3h10V17z M5,13V2c0-0.6,0.4-1,1-1h8c0.6,0,1,0.4,1,1v11H5z"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<path class="st2" d="M14,0H6C4.9,0,4,0.9,4,2v12v3c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-3V2C16,0.9,15.1,0,14,0z M10,17
|
|
||||||
c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S10.6,17,10,17z M6,3c0-0.6,0.4-1,1-1h6c0.6,0,1,0.4,1,1v9c0,0.6-0.4,1-1,1H7
|
|
||||||
c-0.6,0-1-0.4-1-1V3z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 979 B |
|
@ -1,14 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_19" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="10" cy="16" r="1"/>
|
|
||||||
<path class="st1" d="M14,0H6C4.9,0,4,0.9,4,2v11v1v3c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-3v-1V2C16,0.9,15.1,0,14,0z M15,17
|
|
||||||
c0,0.6-0.4,1-1,1H6c-0.6,0-1-0.4-1-1v-3h10V17z M5,13V2c0-0.6,0.4-1,1-1h8c0.6,0,1,0.4,1,1v11H5z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 730 B |
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_19" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<circle class="st0" cx="10" cy="16.5" r="1"/>
|
|
||||||
<path class="st0" d="M14,0H6C4.9,0,4,0.9,4,2v15c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V2C16,0.9,15.1,0,14,0z M6,1h8c0.6,0,1,0.4,1,1
|
|
||||||
v12H5V2C5,1.4,5.4,1,6,1z M14,18H6c-0.6,0-1-0.4-1-1v-2h10v2C15,17.6,14.6,18,14,18z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 692 B |
|
@ -1,14 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.1.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_19" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="10" cy="16" r="1"/>
|
|
||||||
<path class="st1" d="M14,0H6C4.9,0,4,0.9,4,2v11v1v3c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2v-3v-1V2C16,0.9,15.1,0,14,0z M15,17
|
|
||||||
c0,0.6-0.4,1-1,1H6c-0.6,0-1-0.4-1-1v-3h10V17z M5,13V2c0-0.6,0.4-1,1-1h8c0.6,0,1,0.4,1,1v11H5z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 729 B |
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FAFEFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M18,4h-5V3c0-0.6-0.4-1-1-1H8C7.4,2,7,2.4,7,3v1H2C1.4,4,1,4.4,1,5v3h7c0-0.6,0.4-1,1-1h2c0.6,0,1,0.4,1,1h7V5
|
|
||||||
C19,4.4,18.6,4,18,4z M8,3h4v1H8V3z"/>
|
|
||||||
<path class="st0" d="M12,10c0,0.6-0.4,1-1,1H9c-0.6,0-1-0.4-1-1V9H1v7c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V9h-7V10z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 713 B |
|
@ -1,15 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M18,4h-5V3c0-0.6-0.4-1-1-1H8C7.4,2,7,2.4,7,3v1H2C1.4,4,1,4.4,1,5v3h7c0-0.6,0.4-1,1-1h2c0.6,0,1,0.4,1,1h7V5
|
|
||||||
C19,4.4,18.6,4,18,4z M8,3h4v1H8V3z M18,7h-5.3c-0.3-0.6-1-1-1.7-1H9C8.3,6,7.6,6.4,7.3,7H2V5h16V7z"/>
|
|
||||||
<path class="st1" d="M12,10c0,0.6-0.4,1-1,1H9c-0.6,0-1-0.4-1-1V9H1v7c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V9h-7V10z M13,10h5v6H2
|
|
||||||
v-6h5c0,1.1,0.9,2,2,2h2C12.1,12,13,11.1,13,10z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 872 B |
|
@ -1,20 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
.st1{fill:#FAFEFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M18,5v2h-5.3c-0.3-0.6-1-1-1.7-1H9C8.3,6,7.6,6.4,7.3,7H2V5H18 M18,4H2C1.4,4,1,4.4,1,5v3h7c0-0.6,0.4-1,1-1h2
|
|
||||||
c0.6,0,1,0.4,1,1h7V5C19,4.4,18.6,4,18,4L18,4z"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M18,10v6H2v-6h5c0,1.1,0.9,2,2,2h2c1.1,0,2-0.9,2-2H18 M19,9h-7v1c0,0.6-0.4,1-1,1H9c-0.6,0-1-0.4-1-1V9H1v7
|
|
||||||
c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V9L19,9z"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<path class="st1" d="M12,3v1H8V3H12 M12,2H8C7.4,2,7,2.4,7,3v2h6V3C13,2.4,12.6,2,12,2L12,2z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 924 B |
|
@ -1,15 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M18,4h-5V3c0-0.6-0.4-1-1-1H8C7.4,2,7,2.4,7,3v1H2C1.4,4,1,4.4,1,5v3h7c0-0.6,0.4-1,1-1h2c0.6,0,1,0.4,1,1h7V5
|
|
||||||
C19,4.4,18.6,4,18,4z M8,3h4v1H8V3z M18,7h-5.3c-0.3-0.6-1-1-1.7-1H9C8.3,6,7.6,6.4,7.3,7H2V5h16V7z"/>
|
|
||||||
<path class="st1" d="M12,10c0,0.6-0.4,1-1,1H9c-0.6,0-1-0.4-1-1V9H1v7c0,0.6,0.4,1,1,1h16c0.6,0,1-0.4,1-1V9h-7V10z M13,10h5v6H2
|
|
||||||
v-6h5c0,1.1,0.9,2,2,2h2C12.1,12,13,11.1,13,10z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 871 B |
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M9.5,0C4.3,0,0,4.3,0,9.5S4.3,19,9.5,19S19,14.7,19,9.5S14.7,0,9.5,0z M4.5,11C3.7,11,3,10.3,3,9.5
|
|
||||||
S3.7,8,4.5,8S6,8.7,6,9.5S5.3,11,4.5,11z M9.5,11C8.7,11,8,10.3,8,9.5S8.7,8,9.5,8S11,8.7,11,9.5S10.3,11,9.5,11z M14.5,11
|
|
||||||
c-0.8,0-1.5-0.7-1.5-1.5S13.7,8,14.5,8S16,8.7,16,9.5S15.3,11,14.5,11z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 742 B |
|
@ -1,22 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M9.5,1C14.2,1,18,4.8,18,9.5S14.2,18,9.5,18S1,14.2,1,9.5S4.8,1,9.5,1 M9.5,0C4.3,0,0,4.3,0,9.5S4.3,19,9.5,19
|
|
||||||
S19,14.7,19,9.5S14.7,0,9.5,0L9.5,0z"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="4.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="9.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="14.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 852 B |
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M9.5,1C14.2,1,18,4.8,18,9.5S14.2,18,9.5,18S1,14.2,1,9.5S4.8,1,9.5,1 M9.5,0C4.3,0,0,4.3,0,9.5S4.3,19,9.5,19
|
|
||||||
S19,14.7,19,9.5S14.7,0,9.5,0L9.5,0z"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<circle class="st0" cx="4.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<circle class="st0" cx="9.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<circle class="st0" cx="14.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 782 B |
|
@ -1,22 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M9.5,1C14.2,1,18,4.8,18,9.5S14.2,18,9.5,18S1,14.2,1,9.5S4.8,1,9.5,1 M9.5,0C4.3,0,0,4.3,0,9.5S4.3,19,9.5,19
|
|
||||||
S19,14.7,19,9.5S14.7,0,9.5,0L9.5,0z"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="4.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="9.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="14.5" cy="9.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 851 B |
|
@ -1,14 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M9.5,0C4.3,0,0,3.4,0,7.5c0,2.5,1.6,4.7,4,6.1V19l4.9-4c0.2,0,0.4,0,0.6,0c5.2,0,9.5-3.4,9.5-7.5S14.7,0,9.5,0
|
|
||||||
z M4.5,9C3.7,9,3,8.3,3,7.5S3.7,6,4.5,6S6,6.7,6,7.5S5.3,9,4.5,9z M9.5,9C8.7,9,8,8.3,8,7.5S8.7,6,9.5,6S11,6.7,11,7.5
|
|
||||||
S10.3,9,9.5,9z M14.5,9C13.7,9,13,8.3,13,7.5S13.7,6,14.5,6S16,6.7,16,7.5S15.3,9,14.5,9z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 792 B |
|
@ -1,24 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="4.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="9.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="14.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M9.5,1C14.1,1,18,4,18,7.5S14.1,14,9.5,14c-0.2,0-0.3,0-0.5,0H8.9H8.5l-0.3,0.3L5,16.9v-3.3V13l-0.5-0.3
|
|
||||||
C2.3,11.5,1,9.5,1,7.5C1,4,4.9,1,9.5,1 M9.5,0C4.3,0,0,3.4,0,7.5c0,2.5,1.6,4.7,4,6.1V19l4.9-4c0.2,0,0.4,0,0.6,0
|
|
||||||
c5.2,0,9.5-3.4,9.5-7.5S14.7,0,9.5,0L9.5,0z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 991 B |
|
@ -1,23 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g>
|
|
||||||
<circle class="st0" cx="4.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<circle class="st0" cx="9.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<circle class="st0" cx="14.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M9.5,1C14.1,1,18,4,18,7.5S14.1,14,9.5,14c-0.2,0-0.3,0-0.5,0l-0.1,0l-0.4,0l-0.3,0.3L5,16.9v-3.3V13l-0.5-0.3
|
|
||||||
C2.3,11.5,1,9.5,1,7.5C1,4,4.9,1,9.5,1 M9.5,0C4.3,0,0,3.4,0,7.5c0,2.5,1.6,4.7,4,6.1V19l4.9-4c0.2,0,0.4,0,0.6,0
|
|
||||||
c5.2,0,9.5-3.4,9.5-7.5S14.7,0,9.5,0L9.5,0z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 927 B |
|
@ -1,24 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_3" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="4.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="9.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<circle class="st1" cx="14.5" cy="7.5" r="1.5"/>
|
|
||||||
</g>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M9.5,1C14.1,1,18,4,18,7.5S14.1,14,9.5,14c-0.2,0-0.3,0-0.5,0H8.9H8.5l-0.3,0.3L5,16.9v-3.3V13l-0.5-0.3
|
|
||||||
C2.3,11.5,1,9.5,1,7.5C1,4,4.9,1,9.5,1 M9.5,0C4.3,0,0,3.4,0,7.5c0,2.5,1.6,4.7,4,6.1V19l4.9-4c0.2,0,0.4,0,0.6,0
|
|
||||||
c5.2,0,9.5-3.4,9.5-7.5S14.7,0,9.5,0L9.5,0z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 990 B |
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<path class="st0" d="M17.3,5.3l-3.1,3.1c-0.8,0.8-2,0.8-2.8,0l-0.7-0.7c-0.8-0.8-0.8-2,0-2.8l3.1-3.1c-2.9-0.9-6,0.7-6.9,3.5
|
|
||||||
C6.4,6.8,6.7,8.4,7.4,9.7l-5.9,5.9l2.1,2.1l5.9-5.9c0.3,0.2,0.6,0.3,0.9,0.4c2.9,0.9,6-0.7,6.9-3.5C17.7,7.6,17.7,6.4,17.3,5.3z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 726 B |
|
@ -1,16 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;enable-background:new ;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M3.6,18.4l-2.8-2.8l6-6C6.1,8.1,6,6.5,6.4,5.1c1-3.1,4.4-4.8,7.5-3.8l0.8,0.2L11,5.2c-0.6,0.6-0.6,1.5,0,2.1
|
|
||||||
L11.8,8c0.6,0.6,1.5,0.6,2.1,0l3.7-3.7L17.9,5c0.4,1.2,0.4,2.5,0,3.7c-1,3.1-4.4,4.8-7.5,3.8c-0.2-0.1-0.4-0.1-0.7-0.3L3.6,18.4z
|
|
||||||
M2.2,15.6L3.6,17l5.8-5.8l0.3,0.2c0.2,0.2,0.5,0.2,0.8,0.3c2.6,0.8,5.4-0.6,6.3-3.2C17.1,7.8,17.2,7,17,6.3l-2.5,2.5
|
|
||||||
c-1,1-2.5,1-3.5,0l-0.7-0.7c-1-1-1-2.5,0-3.5l2.5-2.5c-2.4-0.3-4.7,1.1-5.4,3.4C7,6.7,7.1,8.1,7.8,9.5L8,9.8L2.2,15.6z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1003 B |
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<path class="st0" d="M17.3,5.3l-3.1,3.1c-0.8,0.8-2,0.8-2.8,0l-0.7-0.7c-0.8-0.8-0.8-2,0-2.8l3.1-3.1c-2.9-0.9-6,0.7-6.9,3.5
|
|
||||||
C6.4,6.8,6.7,8.4,7.4,9.7l-5.9,5.9l2.1,2.1l5.9-5.9c0.3,0.2,0.6,0.3,0.9,0.4c2.9,0.9,6-0.7,6.9-3.5C17.7,7.6,17.7,6.4,17.3,5.3z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 723 B |
|
@ -1,16 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="放大" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;enable-background:new ;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M3.6,18.4l-2.8-2.8l6-6C6.1,8.1,6,6.5,6.4,5.1c1-3.1,4.4-4.8,7.5-3.8l0.8,0.2l-3.7,3.7c-0.6,0.6-0.6,1.5,0,2.1
|
|
||||||
L11.8,8c0.6,0.6,1.5,0.6,2.1,0l3.7-3.7l0.3,0.7c0.4,1.2,0.4,2.5,0,3.7c-1,3.1-4.4,4.8-7.5,3.8c-0.2-0.1-0.4-0.1-0.7-0.3L3.6,18.4z
|
|
||||||
M2.2,15.6L3.6,17l5.8-5.8l0.3,0.2c0.2,0.2,0.5,0.2,0.8,0.3c2.6,0.8,5.4-0.6,6.3-3.2C17.1,7.8,17.2,7,17,6.3l-2.5,2.5
|
|
||||||
c-1,1-2.5,1-3.5,0l-0.7-0.7c-1-1-1-2.5,0-3.5l2.5-2.5c-2.4-0.3-4.7,1.1-5.4,3.4C7,6.7,7.1,8.1,7.8,9.5L8,9.8L2.2,15.6z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1005 B |
|
@ -1,14 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<path class="st0" d="M16,2h-1h-0.5H14H6H5.5H5H4C2.9,2,2,2.9,2,4v1v1v2v1v2v1v2v1v1c0,1.1,0.9,2,2,2h1h0.5H6h8h0.5H15h1
|
|
||||||
c1.1,0,2-0.9,2-2v-1v-1v-2v-1V9V8V6V5V4C18,2.9,17.1,2,16,2z M11.8,10.7l-2.1,2C9.1,13.3,8,12.9,8,12V8c0-0.9,1.1-1.3,1.7-0.7l2.1,2
|
|
||||||
C12.2,9.7,12.2,10.3,11.8,10.7z M3,4c0-0.6,0.4-1,1-1h1v2H3V4z M3,6h2v2H3V6z M3,9h2v2H3V9z M3,12h2v2H3V12z M4,17c-0.6,0-1-0.4-1-1
|
|
||||||
v-1h2v2H4z M17,16c0,0.6-0.4,1-1,1h-1v-2h2V16z M17,14h-2v-2h2V14z M17,11h-2V9h2V11z M17,8h-2V6h2V8z M15,5V3h1c0.6,0,1,0.4,1,1v1
|
|
||||||
H15z"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 957 B |
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.25;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M16,2h-1h-1H6H5H4C2.9,2,2,2.9,2,4v1v1v2v1v2v1v2v1v1c0,1.1,0.9,2,2,2h1h1h8h1h1c1.1,0,2-0.9,2-2v-1v-1v-2v-1
|
|
||||||
V9V8V6V5V4C18,2.9,17.1,2,16,2z M3,4c0-0.6,0.4-1,1-1h1v2H3V4z M3,6h2v2H3V6z M3,9h2v2H3V9z M3,12h2v2H3V12z M4,17
|
|
||||||
c-0.6,0-1-0.4-1-1v-1h2v2H4z M6,17V3h8v14H6z M17,16c0,0.6-0.4,1-1,1h-1v-2h2V16z M17,14h-2v-2h2V14z M17,11h-2V9h2V11z M17,8h-2V6
|
|
||||||
h2V8z M15,5V3h1c0.6,0,1,0.4,1,1v1H15z"/>
|
|
||||||
<path class="st1" d="M11.8,9.3l-2.1-2C9.1,6.7,8,7.1,8,8v4c0,0.9,1.1,1.3,1.7,0.7l2.1-2C12.2,10.3,12.2,9.7,11.8,9.3z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1022 B |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
.st1{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M16,3c0.6,0,1,0.4,1,1v12c0,0.6-0.4,1-1,1H4c-0.6,0-1-0.4-1-1V4c0-0.6,0.4-1,1-1H16 M16,2H4C2.9,2,2,2.9,2,4
|
|
||||||
v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C18,2.9,17.1,2,16,2L16,2z"/>
|
|
||||||
</g>
|
|
||||||
<line class="st1" x1="5.5" y1="2" x2="5.5" y2="18"/>
|
|
||||||
<line class="st1" x1="14.5" y1="2" x2="14.5" y2="18"/>
|
|
||||||
<line class="st1" x1="14.5" y1="14.5" x2="18" y2="14.5"/>
|
|
||||||
<line class="st1" x1="2" y1="14.5" x2="5.5" y2="14.5"/>
|
|
||||||
<line class="st1" x1="14.5" y1="5.5" x2="18" y2="5.5"/>
|
|
||||||
<line class="st1" x1="2" y1="5.5" x2="5.5" y2="5.5"/>
|
|
||||||
<line class="st1" x1="14.5" y1="8.5" x2="18" y2="8.5"/>
|
|
||||||
<line class="st1" x1="2" y1="8.5" x2="5.5" y2="8.5"/>
|
|
||||||
<line class="st1" x1="14.5" y1="11.5" x2="18" y2="11.5"/>
|
|
||||||
<line class="st1" x1="2" y1="11.5" x2="5.5" y2="11.5"/>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M11.8,9.3l-2.1-2C9.1,6.7,8,7.1,8,8v4c0,0.9,1.1,1.3,1.7,0.7l2.1-2C12.2,10.3,12.2,9.7,11.8,9.3z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 19 19" style="enable-background:new 0 0 19 19;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{opacity:0.5;}
|
|
||||||
.st1{fill:#FFFFFF;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<g class="st0">
|
|
||||||
<path class="st1" d="M16,2h-1h-1H6H5H4C2.9,2,2,2.9,2,4v1v1v2v1v2v1v2v1v1c0,1.1,0.9,2,2,2h1h1h8h1h1c1.1,0,2-0.9,2-2v-1v-1v-2v-1
|
|
||||||
V9V8V6V5V4C18,2.9,17.1,2,16,2z M3,4c0-0.6,0.4-1,1-1h1v2H3V4z M3,6h2v2H3V6z M3,9h2v2H3V9z M3,12h2v2H3V12z M4,17
|
|
||||||
c-0.6,0-1-0.4-1-1v-1h2v2H4z M6,17V3h8v14H6z M17,16c0,0.6-0.4,1-1,1h-1v-2h2V16z M17,14h-2v-2h2V14z M17,11h-2V9h2V11z M17,8h-2V6
|
|
||||||
h2V8z M15,5V3h1c0.6,0,1,0.4,1,1v1H15z"/>
|
|
||||||
<path class="st1" d="M11.8,9.3l-2.1-2C9.1,6.7,8,7.1,8,8v4c0,0.9,1.1,1.3,1.7,0.7l2.1-2C12.2,10.3,12.2,9.7,11.8,9.3z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1021 B |
Before Width: | Height: | Size: 536 B |
Before Width: | Height: | Size: 327 B |
|
@ -1,4 +0,0 @@
|
||||||
<svg id="icon-_所有应用" data-name="icon- 所有应用" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="尺寸-16" width="16" height="16" fill="none"/>
|
|
||||||
<path id="所有应用" d="M5.5,0H2.3A1.2,1.2,0,0,0,1.1,1.2V4.4A1.2,1.2,0,0,0,2.3,5.6H5.5A1.2,1.2,0,0,0,6.7,4.4V1.2A1.2,1.2,0,0,0,5.5,0ZM2.3.8H5.5a.4.4,0,0,1,.4.4V4.4a.4.4,0,0,1-.4.4H2.3a.4.4,0,0,1-.4-.4V1.2A.4.4,0,0,1,2.3.8ZM11.9,0H8.7A1.2,1.2,0,0,0,7.5,1.2V4.4A1.2,1.2,0,0,0,8.7,5.6h3.2a1.2,1.2,0,0,0,1.2-1.2V1.2A1.2,1.2,0,0,0,11.9,0ZM8.7.8h3.2a.4.4,0,0,1,.4.4V4.4a.4.4,0,0,1-.4.4H8.7a.4.4,0,0,1-.4-.4V1.2A.4.4,0,0,1,8.7.8Zm3.2,5.6H8.7A1.2,1.2,0,0,0,7.5,7.6v3.2A1.2,1.2,0,0,0,8.7,12h3.2a1.2,1.2,0,0,0,1.2-1.2V7.6a1.2,1.2,0,0,0-1.2-1.2Zm-3.2.8h3.2a.4.4,0,0,1,.4.4v3.2a.4.4,0,0,1-.4.4H8.7a.4.4,0,0,1-.4-.4V7.6a.4.4,0,0,1,.4-.4ZM5.5,6.4H2.3A1.2,1.2,0,0,0,1.1,7.6v3.2A1.2,1.2,0,0,0,2.3,12H5.5a1.2,1.2,0,0,0,1.2-1.2V7.6A1.2,1.2,0,0,0,5.5,6.4Zm-3.2.8H5.5a.4.4,0,0,1,.4.4v3.2a.4.4,0,0,1-.4.4H2.3a.4.4,0,0,1-.4-.4V7.6a.4.4,0,0,1,.4-.4Z" transform="translate(0.898 2)"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,15 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="其他" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:#FFFFFF;}
|
|
||||||
.st1{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
|
|
||||||
</style>
|
|
||||||
<g>
|
|
||||||
<path class="st0" d="M8,1c3.9,0,7,3.1,7,7s-3.1,7-7,7s-7-3.1-7-7S4.1,1,8,1 M8,0C3.6,0,0,3.6,0,8s3.6,8,8,8s8-3.6,8-8S12.4,0,8,0
|
|
||||||
L8,0z"/>
|
|
||||||
</g>
|
|
||||||
<line class="st1" x1="8" y1="7" x2="8" y2="13"/>
|
|
||||||
<rect x="7" y="3" class="st0" width="2" height="2"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 765 B |
Before Width: | Height: | Size: 491 B |
Before Width: | Height: | Size: 345 B |
|
@ -1,13 +0,0 @@
|
||||||
<svg id="icon-_关闭" data-name="icon- 关闭" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip-path">
|
|
||||||
<rect x="1" y="1" width="16" height="16" fill="none"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
<rect id="尺寸-16" width="16" height="16" fill="none"/>
|
|
||||||
<g id="icon-关闭" transform="translate(-1 -1)" clip-path="url(#clip-path)" style="isolation: isolate">
|
|
||||||
<g id="icon-关闭-2" data-name="icon-关闭" transform="translate(-261.743 -495)">
|
|
||||||
<path id="联合_10" data-name="联合 10" d="M6.5,6.5h0v0h0v0Z" transform="translate(261.743 504.194) rotate(-45)" fill="none" stroke="#262626" stroke-width="1"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 744 B |
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 12 12" style="enable-background:new 0 0 12 12;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:none;stroke:#303030;stroke-miterlimit:10;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<polyline id="向下" class="st0" points="10,3.8 6,8.3 2.1,3.8 "/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 541 B |
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 21.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<svg version="1.1" id="图层_4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
||||||
viewBox="0 0 12 12" style="enable-background:new 0 0 12 12;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
||||||
</style>
|
|
||||||
<title>画板 1</title>
|
|
||||||
<polyline id="向下" class="st0" points="10,3.8 6,8.3 2.1,3.8 "/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 541 B |
Before Width: | Height: | Size: 371 B |
Before Width: | Height: | Size: 226 B |
|
@ -1,4 +0,0 @@
|
||||||
<svg id="icon-_下拉_小" data-name="icon- 下拉 小" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="热点区域" width="16" height="16" fill="#fff" opacity="0"/>
|
|
||||||
<path id="arrow" d="M303.35,388.438l-2.091,2.364-2.091-2.364a.478.478,0,0,0-.751,0,.64.64,0,0,0,0,.849l2.466,2.788a.478.478,0,0,0,.751,0l2.466-2.788a.657.657,0,0,0,0-.849.489.489,0,0,0-.751,0Z" transform="translate(-293.256 -382.256)" opacity="0.504"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 472 B |
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
||||||
<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"
|
|
||||||
width="16px" height="16px" viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
|
||||||
<style type="text/css">
|
|
||||||
.st0{fill:none;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
||||||
</style>
|
|
||||||
<polygon class="st0" points="8.4,13.2 9.2,10.1 13.3,5.9 10.1,2.7 5.9,6.8 2.8,7.6 "/>
|
|
||||||
<line class="st0" x1="5.5" y1="10.5" x2="1.3" y2="14.7"/>
|
|
||||||
<line class="st0" x1="8.8" y1="1.3" x2="14.7" y2="7.2"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 678 B |
Before Width: | Height: | Size: 899 B |
Before Width: | Height: | Size: 477 B |
Before Width: | Height: | Size: 304 B |
|
@ -1,4 +0,0 @@
|
||||||
<svg id="全屏_icon-关闭_" data-name="全屏 icon-关闭 " xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="尺寸-16" width="16" height="16" fill="none"/>
|
|
||||||
<path id="联合_10" data-name="联合 10" d="M5.658,5.657h0v0h0v0Z" transform="translate(0 8) rotate(-45)" fill="none" stroke="#333" stroke-width="1"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 363 B |
Before Width: | Height: | Size: 393 B |
Before Width: | Height: | Size: 260 B |
|
@ -1,4 +0,0 @@
|
||||||
<svg id="全屏_icon-_下拉_" data-name="全屏 icon- 下拉 " xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
|
||||||
<rect id="矩形_237" data-name="矩形 237" width="16" height="16" fill="none"/>
|
|
||||||
<path id="icon-_arrow_白" data-name="icon- arrow 白" d="M306.746,388.528l-3.485,3.546-3.485-3.546a.854.854,0,0,0-1.251,0,.89.89,0,0,0,0,1.273l4.111,4.182a.854.854,0,0,0,1.251,0L308,389.8a.911.911,0,0,0,0-1.273.874.874,0,0,0-1.251,0Z" transform="translate(-295.256 -383.256)" fill="#fff" opacity="0.351"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 543 B |
Before Width: | Height: | Size: 550 B |
Before Width: | Height: | Size: 380 B |
|
@ -1,11 +0,0 @@
|
||||||
<svg id="全屏_icon-功能排序_" data-name="全屏 icon-功能排序 " xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
||||||
<rect id="尺寸-24" width="24" height="24" rx="4" fill="none"/>
|
|
||||||
<g id="组_211" data-name="组 211" transform="translate(0.922 0.923)">
|
|
||||||
<rect id="矩形_219" data-name="矩形 219" width="10" height="1.5" transform="translate(11.077 9.077)" fill="#fff" opacity="0.746"/>
|
|
||||||
<rect id="矩形_220" data-name="矩形 220" width="1.5" height="20" transform="translate(9.577 1.077)" fill="#fff" opacity="0.746"/>
|
|
||||||
<g id="矩形_218" data-name="矩形 218" transform="translate(0.077 0.077)" fill="none" stroke="#fff" stroke-linejoin="bevel" stroke-width="1.5">
|
|
||||||
<rect width="22" height="22" rx="3" stroke="none"/>
|
|
||||||
<rect x="0.75" y="0.75" width="20.5" height="20.5" rx="2.25" fill="none"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 884 B |