fix(bluet): 修改了蓝牙界面问题

字体采用T4 Mudium,设备图标颜色:深色模式下为#ffffff 浅色模式下为#000000,关闭按钮和选中图标距离右边边距为10

Log: 蓝牙弹框界面问题
Bug: https://pms.uniontech.com/zentao/bug-view-52349.html
Change-Id: I3191bcddab4458f9aa3f4f91c4287d20c292be13
This commit is contained in:
Li Tao 2020-11-26 17:36:45 +08:00 committed by litao
parent 7ae745d2b9
commit 84fec9578b
38 changed files with 264 additions and 115 deletions

View File

@ -67,6 +67,8 @@ BluetoothApplet::BluetoothApplet(QWidget *parent)
, m_adaptersManager(new AdaptersManager(this))
{
m_line->setVisible(false);
m_adapterLayout->setContentsMargins(0, 0, 0, 0);
m_adapterLayout->setSpacing(20);
QFont defaultFont = font();
auto titlefont = QFont(defaultFont.family(), defaultFont.pointSize() + 2);
@ -104,6 +106,7 @@ BluetoothApplet::BluetoothApplet(QWidget *parent)
setFixedWidth(POPUPWIDTH);
setWidget(m_centralWidget);
setContentsMargins(0, 0, 0, 0);
setFrameShape(QFrame::NoFrame);
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);

View File

@ -25,6 +25,7 @@
#include <DHiDPIHelper>
#include <DApplicationHelper>
#include <DFontSizeManager>
#include <QHBoxLayout>
#include <QFontMetrics>
@ -41,6 +42,7 @@ SwitchItem::SwitchItem(QWidget *parent)
{
initFontColor(m_title);
DFontSizeManager::instance()->bind(m_title, DFontSizeManager::T4, QFont::Medium);
m_switchBtn->setFixedWidth(SWITCHBUTTONWIDTH);
const QPixmap pixmap = DHiDPIHelper::loadNxPixmap(":/wireless/resources/wireless/refresh_dark.svg");
@ -71,7 +73,7 @@ SwitchItem::SwitchItem(QWidget *parent)
switchLayout->addWidget(m_loadingIndicator);
switchLayout->addSpacing(MARGIN);
switchLayout->addWidget(m_switchBtn);
switchLayout->addSpacing(MARGIN);
switchLayout->addSpacing(2);
setLayout(switchLayout);
connect(m_switchBtn, &DSwitchButton::toggled, [&](bool change) {

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M9,3 C9.3147573,3 9.61114562,3.14819416 9.8,3.4 L10.25,4 L13,4 C14.1045695,4 15,4.8954305 15,6 L15,11 C15,12.1045695 14.1045695,13 13,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,6 C1,4.8954305 1.8954305,4 3,4 L5.75,4 L6.2,3.4 C6.38885438,3.14819416 6.6852427,3 7,3 L9,3 Z M8,5 C6.06700338,5 4.5,6.56700338 4.5,8.5 C4.5,10.4329966 6.06700338,12 8,12 C9.93299662,12 11.5,10.4329966 11.5,8.5 C11.5,6.56700338 9.93299662,5 8,5 Z M8,6 C9.38071187,6 10.5,7.11928813 10.5,8.5 C10.5,9.88071187 9.38071187,11 8,11 C6.61928813,11 5.5,9.88071187 5.5,8.5 C5.5,7.11928813 6.61928813,6 8,6 Z M13.5,5 C13.2238576,5 13,5.22385763 13,5.5 C13,5.77614237 13.2238576,6 13.5,6 C13.7761424,6 14,5.77614237 14,5.5 C14,5.22385763 13.7761424,5 13.5,5 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_camera_dark</title>
<g id="buletooth_camera_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9,3 C9.3147573,3 9.61114562,3.14819416 9.8,3.4 L10.25,4 L13,4 C14.1045695,4 15,4.8954305 15,6 L15,11 C15,12.1045695 14.1045695,13 13,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,6 C1,4.8954305 1.8954305,4 3,4 L5.75,4 L6.2,3.4 C6.38885438,3.14819416 6.6852427,3 7,3 L9,3 Z M8,5 C6.06700338,5 4.5,6.56700338 4.5,8.5 C4.5,10.4329966 6.06700338,12 8,12 C9.93299662,12 11.5,10.4329966 11.5,8.5 C11.5,6.56700338 9.93299662,5 8,5 Z M8,6 C9.38071187,6 10.5,7.11928813 10.5,8.5 C10.5,9.88071187 9.38071187,11 8,11 C6.61928813,11 5.5,9.88071187 5.5,8.5 C5.5,7.11928813 6.61928813,6 8,6 Z M13.5,5 C13.2238576,5 13,5.22385763 13,5.5 C13,5.77614237 13.2238576,6 13.5,6 C13.7761424,6 14,5.77614237 14,5.5 C14,5.22385763 13.7761424,5 13.5,5 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 868 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M11,2 C12.1045695,2 13,2.8954305 13,4 L13,13 C13,14.1045695 12.1045695,15 11,15 L5,15 C3.8954305,15 3,14.1045695 3,13 L3,4 C3,2.8954305 3.8954305,2 5,2 L11,2 Z M7,8 C5.34314575,8 4,9.34314575 4,11 C4,12.6568542 5.34314575,14 7,14 C8.65685425,14 10,12.6568542 10,11 C10,9.34314575 8.65685425,8 7,8 Z M7,9.5 C7.82842712,9.5 8.5,10.1715729 8.5,11 C8.5,11.8284271 7.82842712,12.5 7,12.5 C6.17157288,12.5 5.5,11.8284271 5.5,11 C5.5,10.1715729 6.17157288,9.5 7,9.5 Z M9,3 C7.8954305,3 7,3.8954305 7,5 C7,6.1045695 7.8954305,7 9,7 C10.1045695,7 11,6.1045695 11,5 C11,3.8954305 10.1045695,3 9,3 Z M9,4 C9.55228475,4 10,4.44771525 10,5 C10,5.55228475 9.55228475,6 9,6 C8.44771525,6 8,5.55228475 8,5 C8,4.44771525 8.44771525,4 9,4 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_clang_dark</title>
<g id="buletooth_clang_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M11,2 C12.1045695,2 13,2.8954305 13,4 L13,13 C13,14.1045695 12.1045695,15 11,15 L5,15 C3.8954305,15 3,14.1045695 3,13 L3,4 C3,2.8954305 3.8954305,2 5,2 L11,2 Z M7,8 C5.34314575,8 4,9.34314575 4,11 C4,12.6568542 5.34314575,14 7,14 C8.65685425,14 10,12.6568542 10,11 C10,9.34314575 8.65685425,8 7,8 Z M7,9.5 C7.82842712,9.5 8.5,10.1715729 8.5,11 C8.5,11.8284271 7.82842712,12.5 7,12.5 C6.17157288,12.5 5.5,11.8284271 5.5,11 C5.5,10.1715729 6.17157288,9.5 7,9.5 Z M9,3 C7.8954305,3 7,3.8954305 7,5 C7,6.1045695 7.8954305,7 9,7 C10.1045695,7 11,6.1045695 11,5 C11,3.8954305 10.1045695,3 9,3 Z M9,4 C9.55228475,4 10,4.44771525 10,5 C10,5.55228475 9.55228475,6 9,6 C8.44771525,6 8,5.55228475 8,5 C8,4.44771525 8.44771525,4 9,4 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 863 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M13,4 L3,4 C1.8954305,4 1,4.8954305 1,6 L1,11 C1,12.1045695 1.8954305,13 3,13 L13,13 C14.1045695,13 15,12.1045695 15,11 L15,6 C15,4.8954305 14.1045695,4 13,4 Z M4,6 L2,6 L2,7 L4,7 L4,6 Z M6,6 L5,6 L5,7 L6,7 L6,6 Z M8,6 L7,6 L7,7 L8,7 L8,6 Z M10,6 L9,6 L9,7 L10,7 L10,6 Z M12,6 L11,6 L11,7 L12,7 L12,6 Z M14,6 L13,6 L13,7 L14,7 L14,6 Z M11,11 L5,11 L5,12 L11,12 L11,11 Z M14,9 L11,9 L11,10 L14,10 L14,9 Z M4,9 L2,9 L2,10 L4,10 L4,9 Z M6,9 L5,9 L5,10 L6,10 L6,9 Z M8,9 L7,9 L7,10 L8,10 L8,9 Z M10,9 L9,9 L9,10 L10,10 L10,9 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_keyboard_dark</title>
<g id="buletooth_keyboard_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13,4 L3,4 C1.8954305,4 1,4.8954305 1,6 L1,11 C1,12.1045695 1.8954305,13 3,13 L13,13 C14.1045695,13 15,12.1045695 15,11 L15,6 C15,4.8954305 14.1045695,4 13,4 Z M4,6 L2,6 L2,7 L4,7 L4,6 Z M6,6 L5,6 L5,7 L6,7 L6,6 Z M8,6 L7,6 L7,7 L8,7 L8,6 Z M10,6 L9,6 L9,7 L10,7 L10,6 Z M12,6 L11,6 L11,7 L12,7 L12,6 Z M14,6 L13,6 L13,7 L14,7 L14,6 Z M11,11 L5,11 L5,12 L11,12 L11,11 Z M14,9 L11,9 L11,10 L14,10 L14,9 Z M4,9 L2,9 L2,10 L4,10 L4,9 Z M6,9 L5,9 L5,10 L6,10 L6,9 Z M8,9 L7,9 L7,10 L8,10 L8,9 Z M10,9 L9,9 L9,10 L10,10 L10,9 Z" id="形状" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 663 B

After

Width:  |  Height:  |  Size: 918 B

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M8,7 C8.55228475,7 9,7.44771525 9,8 L9,9 L13,9 C14.1045695,9 15,9.8954305 15,11 L15,12 C15,13.1045695 14.1045695,14 13,14 L3,14 C1.8954305,14 0.999999999,13.1045695 0.999999999,12 L0.999999999,11 C0.999999999,9.8954305 1.8954305,9 3,9 L7,9 L7,8 C7,7.44771525 7.44771525,7 8,7 Z M3.75,10.5 C3.33578644,10.5 3,10.8357864 3,11.25 C3,11.6642136 3.33578644,12 3.75,12 C4.16421356,12 4.5,11.6642136 4.5,11.25 C4.5,10.8357864 4.16421356,10.5 3.75,10.5 Z M6.25,10.5 C5.83578644,10.5 5.5,10.8357864 5.5,11.25 C5.5,11.6642136 5.83578644,12 6.25,12 C6.66421356,12 7,11.6642136 7,11.25 C7,10.8357864 6.66421356,10.5 6.25,10.5 Z M8,4.43579477 C9.6465454,4.43579477 11.1321792,5.08947934 12.1843601,6.13825562 L11.2755628,6.9989637 C10.4560251,6.17090503 9.29167133,5.65369215 8,5.65369215 C6.70780741,5.65369215 5.54303518,6.17132256 4.72344523,6.99996635 L3.81563987,6.13825562 C4.86782077,5.08947934 6.3534546,4.43579477 8,4.43579477 Z M8,2 C10.3553542,2 12.4827521,2.92604569 13.9998287,4.41534116 L13.0920471,5.27668346 C11.8073922,4.00771041 10.0009066,3.21789738 8,3.21789738 C5.99909337,3.21789738 4.1926078,4.00771041 2.90795289,5.27668346 L2.00056858,4.41495114 C3.51761931,2.92588402 5.64485145,2 8,2 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_lan_dark</title>
<g id="buletooth_lan_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M8,7 C8.55228475,7 9,7.44771525 9,8 L9,9 L13,9 C14.1045695,9 15,9.8954305 15,11 L15,12 C15,13.1045695 14.1045695,14 13,14 L3,14 C1.8954305,14 0.999999999,13.1045695 0.999999999,12 L0.999999999,11 C0.999999999,9.8954305 1.8954305,9 3,9 L7,9 L7,8 C7,7.44771525 7.44771525,7 8,7 Z M3.75,10.5 C3.33578644,10.5 3,10.8357864 3,11.25 C3,11.6642136 3.33578644,12 3.75,12 C4.16421356,12 4.5,11.6642136 4.5,11.25 C4.5,10.8357864 4.16421356,10.5 3.75,10.5 Z M6.25,10.5 C5.83578644,10.5 5.5,10.8357864 5.5,11.25 C5.5,11.6642136 5.83578644,12 6.25,12 C6.66421356,12 7,11.6642136 7,11.25 C7,10.8357864 6.66421356,10.5 6.25,10.5 Z M8,4.43579477 C9.6465454,4.43579477 11.1321792,5.08947934 12.1843601,6.13825562 L11.2755628,6.9989637 C10.4560251,6.17090503 9.29167133,5.65369215 8,5.65369215 C6.70780741,5.65369215 5.54303518,6.17132256 4.72344523,6.99996635 L3.81563987,6.13825562 C4.86782077,5.08947934 6.3534546,4.43579477 8,4.43579477 Z M8,2 C10.3553542,2 12.4827521,2.92604569 13.9998287,4.41534116 L13.0920471,5.27668346 C11.8073922,4.00771041 10.0009066,3.21789738 8,3.21789738 C5.99909337,3.21789738 4.1926078,4.00771041 2.90795289,5.27668346 L2.00056858,4.41495114 C3.51761931,2.92588402 5.64485145,2 8,2 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M13,3 C14.1045695,3 15,3.8954305 15,5 L15,13 L15.5,13 C15.7761424,13 16,13.2238576 16,13.5 C16,13.7761424 15.7761424,14 15.5,14 L1.5,14 C1.22385763,14 1,13.7761424 1,13.5 C1,13.2238576 1.22385763,13 1.5,13 L2,13 L2,5 C2,3.8954305 2.8954305,3 4,3 L13,3 Z M13,4 L4,4 C3.44771525,4 3,4.44771525 3,5 L3,5 L3,11 C3,11.5522847 3.44771525,12 4,12 L4,12 L13,12 C13.5522847,12 14,11.5522847 14,11 L14,11 L14,5 C14,4.44771525 13.5522847,4 13,4 L13,4 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_laptop_dark</title>
<g id="buletooth_laptop_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13,3 C14.1045695,3 15,3.8954305 15,5 L15,13 L15.5,13 C15.7761424,13 16,13.2238576 16,13.5 C16,13.7761424 15.7761424,14 15.5,14 L1.5,14 C1.22385763,14 1,13.7761424 1,13.5 C1,13.2238576 1.22385763,13 1.5,13 L2,13 L2,5 C2,3.8954305 2.8954305,3 4,3 L13,3 Z M13,4 L4,4 C3.44771525,4 3,4.44771525 3,5 L3,5 L3,11 C3,11.5522847 3.44771525,12 4,12 L4,12 L13,12 C13.5522847,12 14,11.5522847 14,11 L14,11 L14,5 C14,4.44771525 13.5522847,4 13,4 L13,4 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 582 B

After

Width:  |  Height:  |  Size: 839 B

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M9.97129776,7.3924645 L9.43182891,14.6703097 C9.37629241,15.4200524 8.75179683,16 8,16 C7.24820317,16 6.62370759,15.4200524 6.56817109,14.6703097 L6.02870224,7.3924645 C6.59011897,7.7758262 7.26888019,8 8,8 C8.73111981,8 9.40988103,7.7758262 9.97129776,7.3924645 Z M7.5,9 C7.25454011,9 7.05039163,9.17687516 7.00805567,9.41012437 L7,9.5 L7,10.5 C7,10.7761424 7.22385763,11 7.5,11 C7.74545989,11 7.94960837,10.8231248 7.99194433,10.5898756 L8,10.5 L8,9.5 C8,9.22385763 7.77614237,9 7.5,9 Z M8,1 C9.65685425,1 11,2.34314575 11,4 C11,5.65685425 9.65685425,7 8,7 C6.34314575,7 5,5.65685425 5,4 C5,2.34314575 6.34314575,1 8,1 Z" transform="rotate(45 8 8.5)"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_microphone_dark</title>
<g id="buletooth_microphone_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9.97129776,7.3924645 L9.43182891,14.6703097 C9.37629241,15.4200524 8.75179683,16 8,16 C7.24820317,16 6.62370759,15.4200524 6.56817109,14.6703097 L6.02870224,7.3924645 C6.59011897,7.7758262 7.26888019,8 8,8 C8.73111981,8 9.40988103,7.7758262 9.97129776,7.3924645 Z M7.5,9 C7.25454011,9 7.05039163,9.17687516 7.00805567,9.41012437 L7,9.5 L7,10.5 C7,10.7761424 7.22385763,11 7.5,11 C7.74545989,11 7.94960837,10.8231248 7.99194433,10.5898756 L8,10.5 L8,9.5 C8,9.22385763 7.77614237,9 7.5,9 Z M8,1 C9.65685425,1 11,2.34314575 11,4 C11,5.65685425 9.65685425,7 8,7 C6.34314575,7 5,5.65685425 5,4 C5,2.34314575 6.34314575,1 8,1 Z" id="形状结合" fill="#FFFFFF" transform="translate(8.000000, 8.500000) rotate(45.000000) translate(-8.000000, -8.500000) "></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 792 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M13,8.53172798 L13,9.53172798 C13,12.2931517 10.7614237,14.531728 8,14.531728 C5.23857625,14.531728 3,12.2931517 3,9.53172798 L3,8.53172798 L13,8.53172798 Z M8,1.53172798 C10.7614237,1.53172798 13,3.77030423 13,6.53172798 L13,7.53172798 L3,7.53172798 L3,6.53172798 C3,3.77030423 5.23857625,1.53172798 8,1.53172798 Z M8,3.53172798 C7.72385763,3.53172798 7.5,3.7555856 7.5,4.03172798 L7.5,4.03172798 L7.5,6.03172798 C7.5,6.30787035 7.72385763,6.53172798 8,6.53172798 C8.27614237,6.53172798 8.5,6.30787035 8.5,6.03172798 L8.5,6.03172798 L8.5,4.03172798 C8.5,3.7555856 8.27614237,3.53172798 8,3.53172798 Z" transform="rotate(45 8 8.032)"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_mouse_dark</title>
<g id="buletooth_mouse_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13,8.53172798 L13,9.53172798 C13,12.2931517 10.7614237,14.531728 8,14.531728 C5.23857625,14.531728 3,12.2931517 3,9.53172798 L3,8.53172798 L13,8.53172798 Z M8,1.53172798 C10.7614237,1.53172798 13,3.77030423 13,6.53172798 L13,7.53172798 L3,7.53172798 L3,6.53172798 C3,3.77030423 5.23857625,1.53172798 8,1.53172798 Z M8,3.53172798 C7.72385763,3.53172798 7.5,3.7555856 7.5,4.03172798 L7.5,4.03172798 L7.5,6.03172798 C7.5,6.30787035 7.72385763,6.53172798 8,6.53172798 C8.27614237,6.53172798 8.5,6.30787035 8.5,6.03172798 L8.5,6.03172798 L8.5,4.03172798 C8.5,3.7555856 8.27614237,3.53172798 8,3.53172798 Z" id="形状结合" fill="#FFFFFF" transform="translate(8.000000, 8.031728) rotate(45.000000) translate(-8.000000, -8.031728) "></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 773 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M11,2 C12.6568542,2 14,3.34314575 14,5 L14,11 C14,12.6568542 12.6568542,14 11,14 L5,14 C3.34314575,14 2,12.6568542 2,11 L2,5 C2,3.34314575 3.34314575,2 5,2 L11,2 Z M8.21794839,3.04960864 C7.89636093,2.89141423 7.5,3.12236274 7.5,3.5 L7.5,3.5 L7.5,7.138 L4.74806947,5.56587843 L4.66603884,5.52828191 C4.44251729,5.4493158 4.18766064,5.53881167 4.06587843,5.75193053 L4.06587843,5.75193053 L4.02828191,5.83396116 C3.9493158,6.05748271 4.03881167,6.31233936 4.25193053,6.43412157 L4.25193053,6.43412157 L6.991,8 L4.25193053,9.56587843 L4.17789336,9.61746351 C3.99638085,9.76994543 3.94409622,10.0349506 4.06587843,10.2480695 L4.06587843,10.2480695 L4.11746351,10.3221066 C4.26994543,10.5036191 4.5349506,10.5559038 4.74806947,10.4341216 L4.74806947,10.4341216 L7.5,8.861 L7.5,12.5 L7.50682155,12.5844328 C7.56501237,12.9380679 7.98332302,13.1263639 8.2906191,12.9068667 L8.2906191,12.9068667 L11.7906191,10.4068667 L11.8581667,10.3492475 C12.0815493,10.1220755 12.0383123,9.73173147 11.7480695,9.56587843 L11.7480695,9.56587843 L9.008,8 L11.7480695,6.43412157 L11.8210878,6.38361429 C12.0662583,6.18014854 12.06264,5.78743392 11.7906191,5.59313326 L11.7906191,5.59313326 L8.2906191,3.09313326 Z M8.5,8.862 L10.574,10.047 L8.5,11.528 L8.5,8.862 Z M8.5,4.471 L10.574,5.952 L8.5,7.137 L8.5,4.471 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_other_dark</title>
<g id="buletooth_other_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M11,2 C12.6568542,2 14,3.34314575 14,5 L14,11 C14,12.6568542 12.6568542,14 11,14 L5,14 C3.34314575,14 2,12.6568542 2,11 L2,5 C2,3.34314575 3.34314575,2 5,2 L11,2 Z M7.71794839,3.04960864 C7.39636093,2.89141423 7,3.12236274 7,3.5 L7,3.5 L7,7.138 L4.24806947,5.56587843 L4.16603884,5.52828191 C3.94251729,5.4493158 3.68766064,5.53881167 3.56587843,5.75193053 L3.56587843,5.75193053 L3.52828191,5.83396116 C3.4493158,6.05748271 3.53881167,6.31233936 3.75193053,6.43412157 L3.75193053,6.43412157 L6.491,8 L3.75193053,9.56587843 L3.67789336,9.61746351 C3.49638085,9.76994543 3.44409622,10.0349506 3.56587843,10.2480695 L3.56587843,10.2480695 L3.61746351,10.3221066 C3.76994543,10.5036191 4.0349506,10.5559038 4.24806947,10.4341216 L4.24806947,10.4341216 L7,8.861 L7,12.5 L7.00682155,12.5844328 C7.06501237,12.9380679 7.48332302,13.1263639 7.7906191,12.9068667 L7.7906191,12.9068667 L11.2906191,10.4068667 L11.3581667,10.3492475 C11.5815493,10.1220755 11.5383123,9.73173147 11.2480695,9.56587843 L11.2480695,9.56587843 L8.508,8 L11.2480695,6.43412157 L11.3210878,6.38361429 C11.5662583,6.18014854 11.56264,5.78743392 11.2906191,5.59313326 L11.2906191,5.59313326 L7.7906191,3.09313326 Z M8,8.862 L10.074,10.047 L8,11.528 L8,8.862 Z M8,4.471 L10.074,5.952 L8,7.137 L8,4.471 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M13,3 C14.1045695,3 15,3.8954305 15,5 L15,11 C15,12.1045695 14.1045695,13 13,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,5 C1,3.8954305 1.8954305,3 3,3 L13,3 Z M12,4 L3,4 C2.44771525,4 2,4.44771525 2,5 L2,5 L2,11 C2,11.5522847 2.44771525,12 3,12 L3,12 L12,12 C12.5522847,12 13,11.5522847 13,11 L13,11 L13,5 C13,4.44771525 12.5522847,4 12,4 L12,4 Z M14,7.5 C13.7238576,7.5 13.5,7.72385763 13.5,8 C13.5,8.27614237 13.7238576,8.5 14,8.5 C14.2761424,8.5 14.5,8.27614237 14.5,8 C14.5,7.72385763 14.2761424,7.5 14,7.5 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_pad_dark</title>
<g id="buletooth_pad_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13,3 C14.1045695,3 15,3.8954305 15,5 L15,11 C15,12.1045695 14.1045695,13 13,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,5 C1,3.8954305 1.8954305,3 3,3 L13,3 Z M12,4 L3,4 C2.44771525,4 2,4.44771525 2,5 L2,5 L2,11 C2,11.5522847 2.44771525,12 3,12 L3,12 L12,12 C12.5522847,12 13,11.5522847 13,11 L13,11 L13,5 C13,4.44771525 12.5522847,4 12,4 L12,4 Z M14,7.5 C13.7238576,7.5 13.5,7.72385763 13.5,8 C13.5,8.27614237 13.7238576,8.5 14,8.5 C14.2761424,8.5 14.5,8.27614237 14.5,8 C14.5,7.72385763 14.2761424,7.5 14,7.5 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 654 B

After

Width:  |  Height:  |  Size: 905 B

View File

@ -1,3 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M2.5,11 C2.22385763,11 2,10.7761424 2,10.5 C2,10.2238576 2.22385763,10 2.5,10 L6,10 L6,9 L1,9 C0.44771525,9 6.76353751e-17,8.55228475 0,8 L13,8 C13,8.55228475 12.5522847,9 12,9 L7,9 L7,10 L10.5,10 C10.7761424,10 11,10.2238576 11,10.5 C11,10.7761424 10.7761424,11 10.5,11 L2.5,11 Z M11,0 C12.1045695,-2.02906125e-16 13,0.8954305 13,2 L13,7 L0,7 L0,2 C-1.3527075e-16,0.8954305 0.8954305,2.02906125e-16 2,0 L11,0 Z" transform="translate(2 3)"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_pc_dark</title>
<g id="buletooth_pc_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组-4" transform="translate(2.000000, 3.000000)" fill="#FFFFFF">
<path d="M2.5,11 C2.22385763,11 2,10.7761424 2,10.5 C2,10.2238576 2.22385763,10 2.5,10 L6,10 L6,9 L1,9 C0.44771525,9 6.76353751e-17,8.55228475 0,8 L13,8 C13,8.55228475 12.5522847,9 12,9 L7,9 L7,10 L10.5,10 C10.7761424,10 11,10.2238576 11,10.5 C11,10.7761424 10.7761424,11 10.5,11 L2.5,11 Z M11,0 C12.1045695,-2.02906125e-16 13,0.8954305 13,2 L13,7 L0,7 L0,2 C-1.3527075e-16,0.8954305 0.8954305,2.02906125e-16 2,0 L11,0 Z" id="形状结合"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 579 B

After

Width:  |  Height:  |  Size: 886 B

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M5.40009062,12.9559895 L2.79944555,13.4807163 C2.66410182,13.5080243 2.53224653,13.4204441 2.5049385,13.2851003 C2.49835429,13.2524677 2.49835383,13.2188487 2.50493716,13.1862159 L3.02967395,10.5851562 L3.02967395,10.5851562 L9.70545583,3.90977002 C9.90070318,3.71449308 10.2172857,3.71450246 10.412542,3.9097704 C10.4125489,3.90977726 10.4125557,3.90978412 10.412542,3.90981157 L12.0763307,5.57389266 C12.2715761,5.76917159 12.2715482,6.08575408 12.0762689,6.28099907 C12.0762688,6.28099919 12.0762687,6.28099931 12.0762682,6.28099907 L5.40009062,12.9559895 L5.40009062,12.9559895 Z M13.8391542,3.8098192 L12.1751352,2.14638503 C11.9798394,1.95115657 11.6632569,1.95121221 11.4680291,2.14650867 C11.4680289,2.14650888 11.4680287,2.14650909 11.4680291,2.14650993 L11.001677,2.61302763 C10.8066232,2.80840055 10.8066235,3.12488673 11.0016776,3.32025929 L12.6655284,4.98469494 C12.860506,5.18024154 13.1770885,5.18029717 13.372385,4.98506934 C13.3724684,4.98498593 13.3725518,4.98490248 13.3723849,4.98456895 L13.8394045,4.51705195 C14.0343874,4.32160917 14.0342754,4.00512389 13.8391542,3.8098192 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_pen_dark</title>
<g id="buletooth_pen_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M5.40009062,12.9559895 L2.79944555,13.4807163 C2.66410182,13.5080243 2.53224653,13.4204441 2.5049385,13.2851003 C2.49835429,13.2524677 2.49835383,13.2188487 2.50493716,13.1862159 L3.02967395,10.5851562 L3.02967395,10.5851562 L9.70545583,3.90977002 C9.90070318,3.71449308 10.2172857,3.71450246 10.412542,3.9097704 C10.4125489,3.90977726 10.4125557,3.90978412 10.412542,3.90981157 L12.0763307,5.57389266 C12.2715761,5.76917159 12.2715482,6.08575408 12.0762689,6.28099907 C12.0762688,6.28099919 12.0762687,6.28099931 12.0762682,6.28099907 L5.40009062,12.9559895 L5.40009062,12.9559895 Z M13.8391542,3.8098192 L12.1751352,2.14638503 C11.9798394,1.95115657 11.6632569,1.95121221 11.4680291,2.14650867 C11.4680289,2.14650888 11.4680287,2.14650909 11.4680291,2.14650993 L11.001677,2.61302763 C10.8066232,2.80840055 10.8066235,3.12488673 11.0016776,3.32025929 L12.6655284,4.98469494 C12.860506,5.18024154 13.1770885,5.18029717 13.372385,4.98506934 C13.3724684,4.98498593 13.3725518,4.98490248 13.3723849,4.98456895 L13.8394045,4.51705195 C14.0343874,4.32160917 14.0342754,4.00512389 13.8391542,3.8098192 Z" id="形状" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M5,8 C6.1045695,8 7,8.8954305 7,10 L7,12 C7,13.0543618 6.18412221,13.9181651 5.14926234,13.9945143 L5,14 L5,8 Z M11,8 L11,14 L10.8507377,13.9945143 C9.81587779,13.9181651 9,13.0543618 9,12 L9,12 L9,10 C9,8.8954305 9.8954305,8 11,8 L11,8 Z M4,9 L4,13 C3.44771525,13 3,12.5522847 3,12 L3,10 C3,9.48716416 3.38604019,9.06449284 3.88337887,9.00672773 L4,9 Z M12,9 L12.1166211,9.00672773 C12.6139598,9.06449284 13,9.48716416 13,10 L13,10 L13,12 C13,12.5522847 12.5522847,13 12,13 L12,13 L12,9 Z M8,1.5 C11.7854517,1.5 14.8690987,4.50478338 14.995941,8.25935025 L15,8.5 L15,11 C15,11.2761424 14.7761424,11.5 14.5,11.5 C14.2545401,11.5 14.0503916,11.3231248 14.0080557,11.0898756 L14,11 L14,8.5 C14,5.1862915 11.3137085,2.5 8,2.5 C4.76160306,2.5 2.12242824,5.06557489 2.00413847,8.27506174 L2,8.5 L2,11 C2,11.2761424 1.77614237,11.5 1.5,11.5 C1.25454011,11.5 1.05039163,11.3231248 1.00805567,11.0898756 L1,11 L1,8.5 C1,4.63400675 4.13400675,1.5 8,1.5 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_pheadset_dark</title>
<g id="buletooth_pheadset_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M5,8 C6.1045695,8 7,8.8954305 7,10 L7,12 C7,13.0543618 6.18412221,13.9181651 5.14926234,13.9945143 L5,14 L5,8 Z M11,8 L11,14 L10.8507377,13.9945143 C9.81587779,13.9181651 9,13.0543618 9,12 L9,12 L9,10 C9,8.8954305 9.8954305,8 11,8 L11,8 Z M4,9 L4,13 C3.44771525,13 3,12.5522847 3,12 L3,10 C3,9.48716416 3.38604019,9.06449284 3.88337887,9.00672773 L4,9 Z M12,9 L12.1166211,9.00672773 C12.6139598,9.06449284 13,9.48716416 13,10 L13,10 L13,12 C13,12.5522847 12.5522847,13 12,13 L12,13 L12,9 Z M8,1.5 C11.7854517,1.5 14.8690987,4.50478338 14.995941,8.25935025 L15,8.5 L15,11 C15,11.2761424 14.7761424,11.5 14.5,11.5 C14.2545401,11.5 14.0503916,11.3231248 14.0080557,11.0898756 L14,11 L14,8.5 C14,5.1862915 11.3137085,2.5 8,2.5 C4.76160306,2.5 2.12242824,5.06557489 2.00413847,8.27506174 L2,8.5 L2,11 C2,11.2761424 1.77614237,11.5 1.5,11.5 C1.25454011,11.5 1.05039163,11.3231248 1.00805567,11.0898756 L1,11 L1,8.5 C1,4.63400675 4.13400675,1.5 8,1.5 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M11,1 C12.1045695,1 13,1.8954305 13,3 L13,13 C13,14.1045695 12.1045695,15 11,15 L6,15 C4.8954305,15 4,14.1045695 4,13 L4,3 C4,1.8954305 4.8954305,1 6,1 L11,1 Z M11,2 L6,2 C5.44771525,2 5,2.44771525 5,3 L5,3 L5,13 C5,13.5522847 5.44771525,14 6,14 L6,14 L11,14 C11.5522847,14 12,13.5522847 12,13 L12,13 L12,3 C12,2.44771525 11.5522847,2 11,2 L11,2 Z M9.5,3 C9.77614237,3 10,3.22385763 10,3.5 C10,3.77614237 9.77614237,4 9.5,4 L7.5,4 C7.22385763,4 7,3.77614237 7,3.5 C7,3.22385763 7.22385763,3 7.5,3 L9.5,3 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_phone_dark</title>
<g id="buletooth_phone_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M11,1 C12.1045695,1 13,1.8954305 13,3 L13,13 C13,14.1045695 12.1045695,15 11,15 L6,15 C4.8954305,15 4,14.1045695 4,13 L4,3 C4,1.8954305 4.8954305,1 6,1 L11,1 Z M11,2 L6,2 C5.44771525,2 5,2.44771525 5,3 L5,3 L5,13 C5,13.5522847 5.44771525,14 6,14 L6,14 L11,14 C11.5522847,14 12,13.5522847 12,13 L12,13 L12,3 C12,2.44771525 11.5522847,2 11,2 L11,2 Z M9.5,3 C9.77614237,3 10,3.22385763 10,3.5 C10,3.77614237 9.77614237,4 9.5,4 L7.5,4 C7.22385763,4 7,3.77614237 7,3.5 C7,3.22385763 7.22385763,3 7.5,3 L9.5,3 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 646 B

After

Width:  |  Height:  |  Size: 901 B

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M10.5,10 C10.7761424,10 11,10.2238576 11,10.5 L11,13.5 C11,13.7761424 10.7761424,14 10.5,14 L5.5,14 C5.22385763,14 5,13.7761424 5,13.5 L5,10.5 C5,10.2238576 5.22385763,10 5.5,10 L10.5,10 Z M13,5 C14.1045695,5 15,5.8954305 15,7 L15,11 C15,12.1045695 14.1045695,13 13,13 L12,13 L12,10.5 C12,9.72030388 11.4051119,9.07955132 10.64446,9.00686658 L10.5,9 L5.5,9 C4.72030388,9 4.07955132,9.59488808 4.00686658,10.35554 L4,10.5 L4,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,7 C1,5.8954305 1.8954305,5 3,5 L13,5 Z M8.5,12 L6.5,12 C6.22385763,12 6,12.2238576 6,12.5 C6,12.7454599 6.17687516,12.9496084 6.41012437,12.9919443 L6.5,13 L8.5,13 C8.77614237,13 9,12.7761424 9,12.5 C9,12.2238576 8.77614237,12 8.5,12 Z M10.5,2 C10.7761424,2 11,2.22385763 11,2.5 L11,4 L5,4 L5,2.5 C5,2.22385763 5.22385763,2 5.5,2 L10.5,2 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_print_dark</title>
<g id="buletooth_print_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10.5,10 C10.7761424,10 11,10.2238576 11,10.5 L11,13.5 C11,13.7761424 10.7761424,14 10.5,14 L5.5,14 C5.22385763,14 5,13.7761424 5,13.5 L5,10.5 C5,10.2238576 5.22385763,10 5.5,10 L10.5,10 Z M13,5 C14.1045695,5 15,5.8954305 15,7 L15,11 C15,12.1045695 14.1045695,13 13,13 L12,13 L12,10.5 C12,9.72030388 11.4051119,9.07955132 10.64446,9.00686658 L10.5,9 L5.5,9 C4.72030388,9 4.07955132,9.59488808 4.00686658,10.35554 L4,10.5 L4,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,7 C1,5.8954305 1.8954305,5 3,5 L13,5 Z M8.5,12 L6.5,12 C6.22385763,12 6,12.2238576 6,12.5 C6,12.7454599 6.17687516,12.9496084 6.41012437,12.9919443 L6.5,13 L8.5,13 C8.77614237,13 9,12.7761424 9,12.5 C9,12.2238576 8.77614237,12 8.5,12 Z M10.5,2 C10.7761424,2 11,2.22385763 11,2.5 L11,4 L5,4 L5,2.5 C5,2.22385763 5.22385763,2 5.5,2 L10.5,2 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 948 B

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M13.5,10 C13.7761424,10 14,10.2238576 14,10.5 L14,12 C14,13.1045695 13.1045695,14 12,14 L10.5,14 C10.2238576,14 10,13.7761424 10,13.5 C10,13.2238576 10.2238576,13 10.5,13 L12,13 C12.5522847,13 13,12.5522847 13,12 L13,10.5 C13,10.2238576 13.2238576,10 13.5,10 Z M2.5,10 C2.77614237,10 3,10.2238576 3,10.5 L3,10.5 L3,12 C3,12.5522847 3.44771525,13 4,13 L4,13 L5.5,13 C5.77614237,13 6,13.2238576 6,13.5 C6,13.7761424 5.77614237,14 5.5,14 L5.5,14 L4,14 C2.8954305,14 2,13.1045695 2,12 L2,12 L2,10.5 C2,10.2238576 2.22385763,10 2.5,10 Z M12,10 L12,11 C12,11.5522847 11.5522847,12 11,12 L5,12 C4.44771525,12 4,11.5522847 4,11 L4,10 L12,10 Z M13.5,8 C13.7761424,8 14,8.22385763 14,8.5 C14,8.77614237 13.7761424,9 13.5,9 L2.5,9 C2.22385763,9 2,8.77614237 2,8.5 C2,8.22385763 2.22385763,8 2.5,8 L13.5,8 Z M11,4 C11.5522847,4 12,4.44771525 12,5 L12,7 L4,7 L4,5 C4,4.44771525 4.44771525,4 5,4 L11,4 Z M5.5,2 C5.77614237,2 6,2.22385763 6,2.5 C6,2.77614237 5.77614237,3 5.5,3 L4,3 C3.44771525,3 3,3.44771525 3,4 L3,5.5 C3,5.77614237 2.77614237,6 2.5,6 C2.22385763,6 2,5.77614237 2,5.5 L2,4 C2,2.8954305 2.8954305,2 4,2 L5.5,2 Z M12,2 C13.1045695,2 14,2.8954305 14,4 L14,4 L14,5.5 C14,5.77614237 13.7761424,6 13.5,6 C13.2238576,6 13,5.77614237 13,5.5 L13,5.5 L13,4 C13,3.44771525 12.5522847,3 12,3 L12,3 L10.5,3 C10.2238576,3 10,2.77614237 10,2.5 C10,2.22385763 10.2238576,2 10.5,2 L10.5,2 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_scaner_dark</title>
<g id="buletooth_scaner_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13.5,10 C13.7761424,10 14,10.2238576 14,10.5 L14,12 C14,13.1045695 13.1045695,14 12,14 L10.5,14 C10.2238576,14 10,13.7761424 10,13.5 C10,13.2238576 10.2238576,13 10.5,13 L12,13 C12.5522847,13 13,12.5522847 13,12 L13,10.5 C13,10.2238576 13.2238576,10 13.5,10 Z M2.5,10 C2.77614237,10 3,10.2238576 3,10.5 L3,10.5 L3,12 C3,12.5522847 3.44771525,13 4,13 L4,13 L5.5,13 C5.77614237,13 6,13.2238576 6,13.5 C6,13.7761424 5.77614237,14 5.5,14 L5.5,14 L4,14 C2.8954305,14 2,13.1045695 2,12 L2,12 L2,10.5 C2,10.2238576 2.22385763,10 2.5,10 Z M12,10 L12,11 C12,11.5522847 11.5522847,12 11,12 L5,12 C4.44771525,12 4,11.5522847 4,11 L4,10 L12,10 Z M13.5,8 C13.7761424,8 14,8.22385763 14,8.5 C14,8.77614237 13.7761424,9 13.5,9 L2.5,9 C2.22385763,9 2,8.77614237 2,8.5 C2,8.22385763 2.22385763,8 2.5,8 L13.5,8 Z M11,4 C11.5522847,4 12,4.44771525 12,5 L12,7 L4,7 L4,5 C4,4.44771525 4.44771525,4 5,4 L11,4 Z M5.5,2 C5.77614237,2 6,2.22385763 6,2.5 C6,2.77614237 5.77614237,3 5.5,3 L4,3 C3.44771525,3 3,3.44771525 3,4 L3,5.5 C3,5.77614237 2.77614237,6 2.5,6 C2.22385763,6 2,5.77614237 2,5.5 L2,4 C2,2.8954305 2.8954305,2 4,2 L5.5,2 Z M12,2 C13.1045695,2 14,2.8954305 14,4 L14,4 L14,5.5 C14,5.77614237 13.7761424,6 13.5,6 C13.2238576,6 13,5.77614237 13,5.5 L13,5.5 L13,4 C13,3.44771525 12.5522847,3 12,3 L12,3 L10.5,3 C10.2238576,3 10,2.77614237 10,2.5 C10,2.22385763 10.2238576,2 10.5,2 L10.5,2 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M15,8 L15,11 C15,12.1045695 14.1045695,13 13,13 L4,13 C2.8954305,13 2,12.1045695 2,11 L2,8 L15,8 Z M2,7 L2,5 C2,3.8954305 2.8954305,3 4,3 L8,3 L8,7 L2,7 Z M9,3 L13,3 C14.1045695,3 15,3.8954305 15,5 L15,7 L9,7 L9,3 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_touchpad_dark</title>
<g id="buletooth_touchpad_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M15,8 L15,11 C15,12.1045695 14.1045695,13 13,13 L4,13 C2.8954305,13 2,12.1045695 2,11 L2,8 L15,8 Z M2,7 L2,5 C2,3.8954305 2.8954305,3 4,3 L8,3 L8,7 L2,7 Z M9,3 L13,3 C14.1045695,3 15,3.8954305 15,5 L15,7 L9,7 L9,3 Z" id="Combined-Shape" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 356 B

After

Width:  |  Height:  |  Size: 619 B

View File

@ -1,6 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<g fill="none" fill-rule="evenodd">
<path fill="#C5CFE0" d="M12,4 C13.6568542,4 15,5.34314575 15,7 L15,11 C15,12.6568542 13.6568542,14 12,14 L5,14 C3.34314575,14 2,12.6568542 2,11 L2,7 C2,5.34314575 3.34314575,4 5,4 L12,4 Z M12,5 L5,5 C3.9456382,5 3.08183488,5.81587779 3.00548574,6.85073766 L3,7 L3,11 C3,12.0543618 3.81587779,12.9181651 4.85073766,12.9945143 L5,13 L12,13 C13.0543618,13 13.9181651,12.1841222 13.9945143,11.1492623 L14,11 L14,7 C14,5.8954305 13.1045695,5 12,5 Z M12,6 C12.5522847,6 13,6.44771525 13,7 L13,11 C13,11.5522847 12.5522847,12 12,12 L5,12 C4.44771525,12 4,11.5522847 4,11 L4,7 C4,6.44771525 4.44771525,6 5,6 L12,6 Z M7.47058824,7 L5,7 L5,7.8 L5.82352941,7.8 L5.82352941,11 L6.64705882,11 L6.64705882,7.8 L7.47058824,7.8 L7.47058824,7 Z M9.14917766,7 L8.2726478,7 L9.66165358,11 L10.6081938,11 L12,7 L11.1234701,7 L10.3477552,9.38030096 C10.2282709,9.7998176 10.1582605,10.0934793 10.1377241,10.2612859 C10.1265224,10.1883265 10.0980516,10.0583675 10.0523115,9.87140903 C10.021818,9.74677003 9.99194696,9.63246694 9.96269818,9.52849977 L9.91929175,9.38030096 L9.14917766,7 Z"/>
<polyline stroke="#C5CFE0" stroke-linecap="round" stroke-linejoin="bevel" points="7 1 7 4 10 4" transform="rotate(-45 8.5 2.5)"/>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_tv_dark</title>
<g id="buletooth_tv_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M12,4 C13.6568542,4 15,5.34314575 15,7 L15,11 C15,12.6568542 13.6568542,14 12,14 L5,14 C3.34314575,14 2,12.6568542 2,11 L2,7 C2,5.34314575 3.34314575,4 5,4 L12,4 Z M12,5 L5,5 C3.9456382,5 3.08183488,5.81587779 3.00548574,6.85073766 L3,7 L3,11 C3,12.0543618 3.81587779,12.9181651 4.85073766,12.9945143 L5,13 L12,13 C13.0543618,13 13.9181651,12.1841222 13.9945143,11.1492623 L14,11 L14,7 C14,5.8954305 13.1045695,5 12,5 Z M12,6 C12.5522847,6 13,6.44771525 13,7 L13,11 C13,11.5522847 12.5522847,12 12,12 L5,12 C4.44771525,12 4,11.5522847 4,11 L4,7 C4,6.44771525 4.44771525,6 5,6 L12,6 Z M7.47058824,7 L5,7 L5,7.8 L5.82352941,7.8 L5.82352941,11 L6.64705882,11 L6.64705882,7.8 L7.47058824,7.8 L7.47058824,7 Z M9.14917766,7 L8.2726478,7 L9.66165358,11 L10.6081938,11 L12,7 L11.1234701,7 L10.3477552,9.38030096 C10.2282709,9.7998176 10.1582605,10.0934793 10.1377241,10.2612859 C10.1265224,10.1883265 10.0980516,10.0583675 10.0523115,9.87140903 C10.021818,9.74677003 9.99194696,9.63246694 9.96269818,9.52849977 L9.91929175,9.38030096 L9.14917766,7 Z" id="形状结合" fill="#FFFFFF"></path>
<polyline id="路径-5" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="bevel" transform="translate(8.500000, 2.500000) rotate(-45.000000) translate(-8.500000, -2.500000) " points="7 1 7 4 10 4"></polyline>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#C5CFE0" fill-rule="evenodd" d="M9,4 C10.1045695,4 11,4.8954305 11,6 L11,11 C11,12.1045695 10.1045695,13 9,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,6 C1,4.8954305 1.8954305,4 3,4 L9,4 Z M14.8466082,6.01915086 C14.9459035,6.14326999 15,6.29748735 15,6.45643739 L15,11.5435626 C15,11.9301619 14.6865993,12.2435626 14.3,12.2435626 C14.14105,12.2435626 13.9868326,12.1894661 13.8627135,12.0901708 L12,10.6 L12,7.4 L13.8627135,5.90982923 C14.1645968,5.66832254 14.6051015,5.71726751 14.8466082,6.01915086 Z M2.75,5 C2.33578644,5 2,5.33578644 2,5.75 C2,6.16421356 2.33578644,6.5 2.75,6.5 C3.16421356,6.5 3.5,6.16421356 3.5,5.75 C3.5,5.33578644 3.16421356,5 2.75,5 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_vidicon_dark</title>
<g id="buletooth_vidicon_dark" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9,4 C10.1045695,4 11,4.8954305 11,6 L11,11 C11,12.1045695 10.1045695,13 9,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,6 C1,4.8954305 1.8954305,4 3,4 L9,4 Z M14.8466082,6.01915086 C14.9459035,6.14326999 15,6.29748735 15,6.45643739 L15,11.5435626 C15,11.9301619 14.6865993,12.2435626 14.3,12.2435626 C14.14105,12.2435626 13.9868326,12.1894661 13.8627135,12.0901708 L12,10.6 L12,7.4 L13.8627135,5.90982923 C14.1645968,5.66832254 14.6051015,5.71726751 14.8466082,6.01915086 Z M2.75,5 C2.33578644,5 2,5.33578644 2,5.75 C2,6.16421356 2.33578644,6.5 2.75,6.5 C3.16421356,6.5 3.5,6.16421356 3.5,5.75 C3.5,5.33578644 3.16421356,5 2.75,5 Z" id="形状结合" fill="#FFFFFF"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 771 B

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M9,3 C9.3147573,3 9.61114562,3.14819416 9.8,3.4 L10.25,4 L13,4 C14.1045695,4 15,4.8954305 15,6 L15,11 C15,12.1045695 14.1045695,13 13,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,6 C1,4.8954305 1.8954305,4 3,4 L5.75,4 L6.2,3.4 C6.38885438,3.14819416 6.6852427,3 7,3 L9,3 Z M8,5 C6.06700338,5 4.5,6.56700338 4.5,8.5 C4.5,10.4329966 6.06700338,12 8,12 C9.93299662,12 11.5,10.4329966 11.5,8.5 C11.5,6.56700338 9.93299662,5 8,5 Z M8,6 C9.38071187,6 10.5,7.11928813 10.5,8.5 C10.5,9.88071187 9.38071187,11 8,11 C6.61928813,11 5.5,9.88071187 5.5,8.5 C5.5,7.11928813 6.61928813,6 8,6 Z M13.5,5 C13.2238576,5 13,5.22385763 13,5.5 C13,5.77614237 13.2238576,6 13.5,6 C13.7761424,6 14,5.77614237 14,5.5 C14,5.22385763 13.7761424,5 13.5,5 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_camera_light</title>
<g id="buletooth_camera_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9,3 C9.3147573,3 9.61114562,3.14819416 9.8,3.4 L10.25,4 L13,4 C14.1045695,4 15,4.8954305 15,6 L15,11 C15,12.1045695 14.1045695,13 13,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,6 C1,4.8954305 1.8954305,4 3,4 L5.75,4 L6.2,3.4 C6.38885438,3.14819416 6.6852427,3 7,3 L9,3 Z M8,5 C6.06700338,5 4.5,6.56700338 4.5,8.5 C4.5,10.4329966 6.06700338,12 8,12 C9.93299662,12 11.5,10.4329966 11.5,8.5 C11.5,6.56700338 9.93299662,5 8,5 Z M8,6 C9.38071187,6 10.5,7.11928813 10.5,8.5 C10.5,9.88071187 9.38071187,11 8,11 C6.61928813,11 5.5,9.88071187 5.5,8.5 C5.5,7.11928813 6.61928813,6 8,6 Z M13.5,5 C13.2238576,5 13,5.22385763 13,5.5 C13,5.77614237 13.2238576,6 13.5,6 C13.7761424,6 14,5.77614237 14,5.5 C14,5.22385763 13.7761424,5 13.5,5 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 868 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M11,2 C12.1045695,2 13,2.8954305 13,4 L13,13 C13,14.1045695 12.1045695,15 11,15 L5,15 C3.8954305,15 3,14.1045695 3,13 L3,4 C3,2.8954305 3.8954305,2 5,2 L11,2 Z M7,8 C5.34314575,8 4,9.34314575 4,11 C4,12.6568542 5.34314575,14 7,14 C8.65685425,14 10,12.6568542 10,11 C10,9.34314575 8.65685425,8 7,8 Z M7,9.5 C7.82842712,9.5 8.5,10.1715729 8.5,11 C8.5,11.8284271 7.82842712,12.5 7,12.5 C6.17157288,12.5 5.5,11.8284271 5.5,11 C5.5,10.1715729 6.17157288,9.5 7,9.5 Z M9,3 C7.8954305,3 7,3.8954305 7,5 C7,6.1045695 7.8954305,7 9,7 C10.1045695,7 11,6.1045695 11,5 C11,3.8954305 10.1045695,3 9,3 Z M9,4 C9.55228475,4 10,4.44771525 10,5 C10,5.55228475 9.55228475,6 9,6 C8.44771525,6 8,5.55228475 8,5 C8,4.44771525 8.44771525,4 9,4 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_clang_light</title>
<g id="buletooth_clang_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M11,2 C12.1045695,2 13,2.8954305 13,4 L13,13 C13,14.1045695 12.1045695,15 11,15 L5,15 C3.8954305,15 3,14.1045695 3,13 L3,4 C3,2.8954305 3.8954305,2 5,2 L11,2 Z M7,8 C5.34314575,8 4,9.34314575 4,11 C4,12.6568542 5.34314575,14 7,14 C8.65685425,14 10,12.6568542 10,11 C10,9.34314575 8.65685425,8 7,8 Z M7,9.5 C7.82842712,9.5 8.5,10.1715729 8.5,11 C8.5,11.8284271 7.82842712,12.5 7,12.5 C6.17157288,12.5 5.5,11.8284271 5.5,11 C5.5,10.1715729 6.17157288,9.5 7,9.5 Z M9,3 C7.8954305,3 7,3.8954305 7,5 C7,6.1045695 7.8954305,7 9,7 C10.1045695,7 11,6.1045695 11,5 C11,3.8954305 10.1045695,3 9,3 Z M9,4 C9.55228475,4 10,4.44771525 10,5 C10,5.55228475 9.55228475,6 9,6 C8.44771525,6 8,5.55228475 8,5 C8,4.44771525 8.44771525,4 9,4 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 863 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M13,4 L3,4 C1.8954305,4 1,4.8954305 1,6 L1,11 C1,12.1045695 1.8954305,13 3,13 L13,13 C14.1045695,13 15,12.1045695 15,11 L15,6 C15,4.8954305 14.1045695,4 13,4 Z M4,6 L2,6 L2,7 L4,7 L4,6 Z M6,6 L5,6 L5,7 L6,7 L6,6 Z M8,6 L7,6 L7,7 L8,7 L8,6 Z M10,6 L9,6 L9,7 L10,7 L10,6 Z M12,6 L11,6 L11,7 L12,7 L12,6 Z M14,6 L13,6 L13,7 L14,7 L14,6 Z M11,11 L5,11 L5,12 L11,12 L11,11 Z M14,9 L11,9 L11,10 L14,10 L14,9 Z M4,9 L2,9 L2,10 L4,10 L4,9 Z M6,9 L5,9 L5,10 L6,10 L6,9 Z M8,9 L7,9 L7,10 L8,10 L8,9 Z M10,9 L9,9 L9,10 L10,10 L10,9 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_keyboard_light</title>
<g id="buletooth_keyboard_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13,4 L3,4 C1.8954305,4 1,4.8954305 1,6 L1,11 C1,12.1045695 1.8954305,13 3,13 L13,13 C14.1045695,13 15,12.1045695 15,11 L15,6 C15,4.8954305 14.1045695,4 13,4 Z M4,6 L2,6 L2,7 L4,7 L4,6 Z M6,6 L5,6 L5,7 L6,7 L6,6 Z M8,6 L7,6 L7,7 L8,7 L8,6 Z M10,6 L9,6 L9,7 L10,7 L10,6 Z M12,6 L11,6 L11,7 L12,7 L12,6 Z M14,6 L13,6 L13,7 L14,7 L14,6 Z M11,11 L5,11 L5,12 L11,12 L11,11 Z M14,9 L11,9 L11,10 L14,10 L14,9 Z M4,9 L2,9 L2,10 L4,10 L4,9 Z M6,9 L5,9 L5,10 L6,10 L6,9 Z M8,9 L7,9 L7,10 L8,10 L8,9 Z M10,9 L9,9 L9,10 L10,10 L10,9 Z" id="形状" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 663 B

After

Width:  |  Height:  |  Size: 920 B

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M8,7 C8.55228475,7 9,7.44771525 9,8 L9,9 L13,9 C14.1045695,9 15,9.8954305 15,11 L15,12 C15,13.1045695 14.1045695,14 13,14 L3,14 C1.8954305,14 0.999999999,13.1045695 0.999999999,12 L0.999999999,11 C0.999999999,9.8954305 1.8954305,9 3,9 L7,9 L7,8 C7,7.44771525 7.44771525,7 8,7 Z M3.75,10.5 C3.33578644,10.5 3,10.8357864 3,11.25 C3,11.6642136 3.33578644,12 3.75,12 C4.16421356,12 4.5,11.6642136 4.5,11.25 C4.5,10.8357864 4.16421356,10.5 3.75,10.5 Z M6.25,10.5 C5.83578644,10.5 5.5,10.8357864 5.5,11.25 C5.5,11.6642136 5.83578644,12 6.25,12 C6.66421356,12 7,11.6642136 7,11.25 C7,10.8357864 6.66421356,10.5 6.25,10.5 Z M8,4.43579477 C9.6465454,4.43579477 11.1321792,5.08947934 12.1843601,6.13825562 L11.2755628,6.9989637 C10.4560251,6.17090503 9.29167133,5.65369215 8,5.65369215 C6.70780741,5.65369215 5.54303518,6.17132256 4.72344523,6.99996635 L3.81563987,6.13825562 C4.86782077,5.08947934 6.3534546,4.43579477 8,4.43579477 Z M8,2 C10.3553542,2 12.4827521,2.92604569 13.9998287,4.41534116 L13.0920471,5.27668346 C11.8073922,4.00771041 10.0009066,3.21789738 8,3.21789738 C5.99909337,3.21789738 4.1926078,4.00771041 2.90795289,5.27668346 L2.00056858,4.41495114 C3.51761931,2.92588402 5.64485145,2 8,2 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_lan_light</title>
<g id="buletooth_lan_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M8,7 C8.55228475,7 9,7.44771525 9,8 L9,9 L13,9 C14.1045695,9 15,9.8954305 15,11 L15,12 C15,13.1045695 14.1045695,14 13,14 L3,14 C1.8954305,14 0.999999999,13.1045695 0.999999999,12 L0.999999999,11 C0.999999999,9.8954305 1.8954305,9 3,9 L7,9 L7,8 C7,7.44771525 7.44771525,7 8,7 Z M3.75,10.5 C3.33578644,10.5 3,10.8357864 3,11.25 C3,11.6642136 3.33578644,12 3.75,12 C4.16421356,12 4.5,11.6642136 4.5,11.25 C4.5,10.8357864 4.16421356,10.5 3.75,10.5 Z M6.25,10.5 C5.83578644,10.5 5.5,10.8357864 5.5,11.25 C5.5,11.6642136 5.83578644,12 6.25,12 C6.66421356,12 7,11.6642136 7,11.25 C7,10.8357864 6.66421356,10.5 6.25,10.5 Z M8,4.43579477 C9.6465454,4.43579477 11.1321792,5.08947934 12.1843601,6.13825562 L11.2755628,6.9989637 C10.4560251,6.17090503 9.29167133,5.65369215 8,5.65369215 C6.70780741,5.65369215 5.54303518,6.17132256 4.72344523,6.99996635 L3.81563987,6.13825562 C4.86782077,5.08947934 6.3534546,4.43579477 8,4.43579477 Z M8,2 C10.3553542,2 12.4827521,2.92604569 13.9998287,4.41534116 L13.0920471,5.27668346 C11.8073922,4.00771041 10.0009066,3.21789738 8,3.21789738 C5.99909337,3.21789738 4.1926078,4.00771041 2.90795289,5.27668346 L2.00056858,4.41495114 C3.51761931,2.92588402 5.64485145,2 8,2 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M13,3 C14.1045695,3 15,3.8954305 15,5 L15,13 L15.5,13 C15.7761424,13 16,13.2238576 16,13.5 C16,13.7761424 15.7761424,14 15.5,14 L1.5,14 C1.22385763,14 1,13.7761424 1,13.5 C1,13.2238576 1.22385763,13 1.5,13 L2,13 L2,5 C2,3.8954305 2.8954305,3 4,3 L13,3 Z M13,4 L4,4 C3.44771525,4 3,4.44771525 3,5 L3,5 L3,11 C3,11.5522847 3.44771525,12 4,12 L4,12 L13,12 C13.5522847,12 14,11.5522847 14,11 L14,11 L14,5 C14,4.44771525 13.5522847,4 13,4 L13,4 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_laptop_light</title>
<g id="buletooth_laptop_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13,3 C14.1045695,3 15,3.8954305 15,5 L15,13 L15.5,13 C15.7761424,13 16,13.2238576 16,13.5 C16,13.7761424 15.7761424,14 15.5,14 L1.5,14 C1.22385763,14 1,13.7761424 1,13.5 C1,13.2238576 1.22385763,13 1.5,13 L2,13 L2,5 C2,3.8954305 2.8954305,3 4,3 L13,3 Z M13,4 L4,4 C3.44771525,4 3,4.44771525 3,5 L3,5 L3,11 C3,11.5522847 3.44771525,12 4,12 L4,12 L13,12 C13.5522847,12 14,11.5522847 14,11 L14,11 L14,5 C14,4.44771525 13.5522847,4 13,4 L13,4 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 582 B

After

Width:  |  Height:  |  Size: 841 B

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M9.97129776,7.3924645 L9.43182891,14.6703097 C9.37629241,15.4200524 8.75179683,16 8,16 C7.24820317,16 6.62370759,15.4200524 6.56817109,14.6703097 L6.02870224,7.3924645 C6.59011897,7.7758262 7.26888019,8 8,8 C8.73111981,8 9.40988103,7.7758262 9.97129776,7.3924645 Z M7.5,9 C7.25454011,9 7.05039163,9.17687516 7.00805567,9.41012437 L7,9.5 L7,10.5 C7,10.7761424 7.22385763,11 7.5,11 C7.74545989,11 7.94960837,10.8231248 7.99194433,10.5898756 L8,10.5 L8,9.5 C8,9.22385763 7.77614237,9 7.5,9 Z M8,1 C9.65685425,1 11,2.34314575 11,4 C11,5.65685425 9.65685425,7 8,7 C6.34314575,7 5,5.65685425 5,4 C5,2.34314575 6.34314575,1 8,1 Z" transform="rotate(45 8 8.5)"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_microphone_light</title>
<g id="buletooth_microphone_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9.97129776,7.3924645 L9.43182891,14.6703097 C9.37629241,15.4200524 8.75179683,16 8,16 C7.24820317,16 6.62370759,15.4200524 6.56817109,14.6703097 L6.02870224,7.3924645 C6.59011897,7.7758262 7.26888019,8 8,8 C8.73111981,8 9.40988103,7.7758262 9.97129776,7.3924645 Z M7.5,9 C7.25454011,9 7.05039163,9.17687516 7.00805567,9.41012437 L7,9.5 L7,10.5 C7,10.7761424 7.22385763,11 7.5,11 C7.74545989,11 7.94960837,10.8231248 7.99194433,10.5898756 L8,10.5 L8,9.5 C8,9.22385763 7.77614237,9 7.5,9 Z M8,1 C9.65685425,1 11,2.34314575 11,4 C11,5.65685425 9.65685425,7 8,7 C6.34314575,7 5,5.65685425 5,4 C5,2.34314575 6.34314575,1 8,1 Z" id="形状结合" fill="#000000" transform="translate(8.000000, 8.500000) rotate(45.000000) translate(-8.000000, -8.500000) "></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 792 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M13,8.53172798 L13,9.53172798 C13,12.2931517 10.7614237,14.531728 8,14.531728 C5.23857625,14.531728 3,12.2931517 3,9.53172798 L3,8.53172798 L13,8.53172798 Z M8,1.53172798 C10.7614237,1.53172798 13,3.77030423 13,6.53172798 L13,7.53172798 L3,7.53172798 L3,6.53172798 C3,3.77030423 5.23857625,1.53172798 8,1.53172798 Z M8,3.53172798 C7.72385763,3.53172798 7.5,3.7555856 7.5,4.03172798 L7.5,4.03172798 L7.5,6.03172798 C7.5,6.30787035 7.72385763,6.53172798 8,6.53172798 C8.27614237,6.53172798 8.5,6.30787035 8.5,6.03172798 L8.5,6.03172798 L8.5,4.03172798 C8.5,3.7555856 8.27614237,3.53172798 8,3.53172798 Z" transform="rotate(45 8 8.032)"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_mouse_light</title>
<g id="buletooth_mouse_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13,8.53172798 L13,9.53172798 C13,12.2931517 10.7614237,14.531728 8,14.531728 C5.23857625,14.531728 3,12.2931517 3,9.53172798 L3,8.53172798 L13,8.53172798 Z M8,1.53172798 C10.7614237,1.53172798 13,3.77030423 13,6.53172798 L13,7.53172798 L3,7.53172798 L3,6.53172798 C3,3.77030423 5.23857625,1.53172798 8,1.53172798 Z M8,3.53172798 C7.72385763,3.53172798 7.5,3.7555856 7.5,4.03172798 L7.5,4.03172798 L7.5,6.03172798 C7.5,6.30787035 7.72385763,6.53172798 8,6.53172798 C8.27614237,6.53172798 8.5,6.30787035 8.5,6.03172798 L8.5,6.03172798 L8.5,4.03172798 C8.5,3.7555856 8.27614237,3.53172798 8,3.53172798 Z" id="形状结合" fill="#000000" transform="translate(8.000000, 8.031728) rotate(45.000000) translate(-8.000000, -8.031728) "></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 773 B

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M11,2 C12.6568542,2 14,3.34314575 14,5 L14,11 C14,12.6568542 12.6568542,14 11,14 L5,14 C3.34314575,14 2,12.6568542 2,11 L2,5 C2,3.34314575 3.34314575,2 5,2 L11,2 Z M8.21794839,3.04960864 C7.89636093,2.89141423 7.5,3.12236274 7.5,3.5 L7.5,3.5 L7.5,7.138 L4.74806947,5.56587843 L4.66603884,5.52828191 C4.44251729,5.4493158 4.18766064,5.53881167 4.06587843,5.75193053 L4.06587843,5.75193053 L4.02828191,5.83396116 C3.9493158,6.05748271 4.03881167,6.31233936 4.25193053,6.43412157 L4.25193053,6.43412157 L6.991,8 L4.25193053,9.56587843 L4.17789336,9.61746351 C3.99638085,9.76994543 3.94409622,10.0349506 4.06587843,10.2480695 L4.06587843,10.2480695 L4.11746351,10.3221066 C4.26994543,10.5036191 4.5349506,10.5559038 4.74806947,10.4341216 L4.74806947,10.4341216 L7.5,8.861 L7.5,12.5 L7.50682155,12.5844328 C7.56501237,12.9380679 7.98332302,13.1263639 8.2906191,12.9068667 L8.2906191,12.9068667 L11.7906191,10.4068667 L11.8581667,10.3492475 C12.0815493,10.1220755 12.0383123,9.73173147 11.7480695,9.56587843 L11.7480695,9.56587843 L9.008,8 L11.7480695,6.43412157 L11.8210878,6.38361429 C12.0662583,6.18014854 12.06264,5.78743392 11.7906191,5.59313326 L11.7906191,5.59313326 L8.2906191,3.09313326 Z M8.5,8.862 L10.574,10.047 L8.5,11.528 L8.5,8.862 Z M8.5,4.471 L10.574,5.952 L8.5,7.137 L8.5,4.471 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_other_light</title>
<g id="buletooth_other_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M11,2 C12.6568542,2 14,3.34314575 14,5 L14,11 C14,12.6568542 12.6568542,14 11,14 L5,14 C3.34314575,14 2,12.6568542 2,11 L2,5 C2,3.34314575 3.34314575,2 5,2 L11,2 Z M7.71794839,3.04960864 C7.39636093,2.89141423 7,3.12236274 7,3.5 L7,3.5 L7,7.138 L4.24806947,5.56587843 L4.16603884,5.52828191 C3.94251729,5.4493158 3.68766064,5.53881167 3.56587843,5.75193053 L3.56587843,5.75193053 L3.52828191,5.83396116 C3.4493158,6.05748271 3.53881167,6.31233936 3.75193053,6.43412157 L3.75193053,6.43412157 L6.491,8 L3.75193053,9.56587843 L3.67789336,9.61746351 C3.49638085,9.76994543 3.44409622,10.0349506 3.56587843,10.2480695 L3.56587843,10.2480695 L3.61746351,10.3221066 C3.76994543,10.5036191 4.0349506,10.5559038 4.24806947,10.4341216 L4.24806947,10.4341216 L7,8.861 L7,12.5 L7.00682155,12.5844328 C7.06501237,12.9380679 7.48332302,13.1263639 7.7906191,12.9068667 L7.7906191,12.9068667 L11.2906191,10.4068667 L11.3581667,10.3492475 C11.5815493,10.1220755 11.5383123,9.73173147 11.2480695,9.56587843 L11.2480695,9.56587843 L8.508,8 L11.2480695,6.43412157 L11.3210878,6.38361429 C11.5662583,6.18014854 11.56264,5.78743392 11.2906191,5.59313326 L11.2906191,5.59313326 L7.7906191,3.09313326 Z M8,8.862 L10.074,10.047 L8,11.528 L8,8.862 Z M8,4.471 L10.074,5.952 L8,7.137 L8,4.471 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M13,3 C14.1045695,3 15,3.8954305 15,5 L15,11 C15,12.1045695 14.1045695,13 13,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,5 C1,3.8954305 1.8954305,3 3,3 L13,3 Z M12,4 L3,4 C2.44771525,4 2,4.44771525 2,5 L2,5 L2,11 C2,11.5522847 2.44771525,12 3,12 L3,12 L12,12 C12.5522847,12 13,11.5522847 13,11 L13,11 L13,5 C13,4.44771525 12.5522847,4 12,4 L12,4 Z M14,7.5 C13.7238576,7.5 13.5,7.72385763 13.5,8 C13.5,8.27614237 13.7238576,8.5 14,8.5 C14.2761424,8.5 14.5,8.27614237 14.5,8 C14.5,7.72385763 14.2761424,7.5 14,7.5 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_pad_light</title>
<g id="buletooth_pad_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13,3 C14.1045695,3 15,3.8954305 15,5 L15,11 C15,12.1045695 14.1045695,13 13,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,5 C1,3.8954305 1.8954305,3 3,3 L13,3 Z M12,4 L3,4 C2.44771525,4 2,4.44771525 2,5 L2,5 L2,11 C2,11.5522847 2.44771525,12 3,12 L3,12 L12,12 C12.5522847,12 13,11.5522847 13,11 L13,11 L13,5 C13,4.44771525 12.5522847,4 12,4 L12,4 Z M14,7.5 C13.7238576,7.5 13.5,7.72385763 13.5,8 C13.5,8.27614237 13.7238576,8.5 14,8.5 C14.2761424,8.5 14.5,8.27614237 14.5,8 C14.5,7.72385763 14.2761424,7.5 14,7.5 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 654 B

After

Width:  |  Height:  |  Size: 907 B

View File

@ -1,3 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M2.5,11 C2.22385763,11 2,10.7761424 2,10.5 C2,10.2238576 2.22385763,10 2.5,10 L6,10 L6,9 L1,9 C0.44771525,9 6.76353751e-17,8.55228475 0,8 L13,8 C13,8.55228475 12.5522847,9 12,9 L7,9 L7,10 L10.5,10 C10.7761424,10 11,10.2238576 11,10.5 C11,10.7761424 10.7761424,11 10.5,11 L2.5,11 Z M11,0 C12.1045695,-2.02906125e-16 13,0.8954305 13,2 L13,7 L0,7 L0,2 C-1.3527075e-16,0.8954305 0.8954305,2.02906125e-16 2,0 L11,0 Z" transform="translate(2 3)"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_pc_light</title>
<g id="buletooth_pc_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="编组-4" transform="translate(2.000000, 3.000000)" fill="#000000">
<path d="M2.5,11 C2.22385763,11 2,10.7761424 2,10.5 C2,10.2238576 2.22385763,10 2.5,10 L6,10 L6,9 L1,9 C0.44771525,9 6.76353751e-17,8.55228475 0,8 L13,8 C13,8.55228475 12.5522847,9 12,9 L7,9 L7,10 L10.5,10 C10.7761424,10 11,10.2238576 11,10.5 C11,10.7761424 10.7761424,11 10.5,11 L2.5,11 Z M11,0 C12.1045695,-2.02906125e-16 13,0.8954305 13,2 L13,7 L0,7 L0,2 C-1.3527075e-16,0.8954305 0.8954305,2.02906125e-16 2,0 L11,0 Z" id="形状结合"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 579 B

After

Width:  |  Height:  |  Size: 888 B

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M5.40009062,12.9559895 L2.79944555,13.4807163 C2.66410182,13.5080243 2.53224653,13.4204441 2.5049385,13.2851003 C2.49835429,13.2524677 2.49835383,13.2188487 2.50493716,13.1862159 L3.02967395,10.5851562 L3.02967395,10.5851562 L9.70545583,3.90977002 C9.90070318,3.71449308 10.2172857,3.71450246 10.412542,3.9097704 C10.4125489,3.90977726 10.4125557,3.90978412 10.412542,3.90981157 L12.0763307,5.57389266 C12.2715761,5.76917159 12.2715482,6.08575408 12.0762689,6.28099907 C12.0762688,6.28099919 12.0762687,6.28099931 12.0762682,6.28099907 L5.40009062,12.9559895 L5.40009062,12.9559895 Z M13.8391542,3.8098192 L12.1751352,2.14638503 C11.9798394,1.95115657 11.6632569,1.95121221 11.4680291,2.14650867 C11.4680289,2.14650888 11.4680287,2.14650909 11.4680291,2.14650993 L11.001677,2.61302763 C10.8066232,2.80840055 10.8066235,3.12488673 11.0016776,3.32025929 L12.6655284,4.98469494 C12.860506,5.18024154 13.1770885,5.18029717 13.372385,4.98506934 C13.3724684,4.98498593 13.3725518,4.98490248 13.3723849,4.98456895 L13.8394045,4.51705195 C14.0343874,4.32160917 14.0342754,4.00512389 13.8391542,3.8098192 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_pen_light</title>
<g id="buletooth_pen_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M5.40009062,12.9559895 L2.79944555,13.4807163 C2.66410182,13.5080243 2.53224653,13.4204441 2.5049385,13.2851003 C2.49835429,13.2524677 2.49835383,13.2188487 2.50493716,13.1862159 L3.02967395,10.5851562 L3.02967395,10.5851562 L9.70545583,3.90977002 C9.90070318,3.71449308 10.2172857,3.71450246 10.412542,3.9097704 C10.4125489,3.90977726 10.4125557,3.90978412 10.412542,3.90981157 L12.0763307,5.57389266 C12.2715761,5.76917159 12.2715482,6.08575408 12.0762689,6.28099907 C12.0762688,6.28099919 12.0762687,6.28099931 12.0762682,6.28099907 L5.40009062,12.9559895 L5.40009062,12.9559895 Z M13.8391542,3.8098192 L12.1751352,2.14638503 C11.9798394,1.95115657 11.6632569,1.95121221 11.4680291,2.14650867 C11.4680289,2.14650888 11.4680287,2.14650909 11.4680291,2.14650993 L11.001677,2.61302763 C10.8066232,2.80840055 10.8066235,3.12488673 11.0016776,3.32025929 L12.6655284,4.98469494 C12.860506,5.18024154 13.1770885,5.18029717 13.372385,4.98506934 C13.3724684,4.98498593 13.3725518,4.98490248 13.3723849,4.98456895 L13.8394045,4.51705195 C14.0343874,4.32160917 14.0342754,4.00512389 13.8391542,3.8098192 Z" id="形状" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M5,8 C6.1045695,8 7,8.8954305 7,10 L7,12 C7,13.0543618 6.18412221,13.9181651 5.14926234,13.9945143 L5,14 L5,8 Z M11,8 L11,14 L10.8507377,13.9945143 C9.81587779,13.9181651 9,13.0543618 9,12 L9,12 L9,10 C9,8.8954305 9.8954305,8 11,8 L11,8 Z M4,9 L4,13 C3.44771525,13 3,12.5522847 3,12 L3,10 C3,9.48716416 3.38604019,9.06449284 3.88337887,9.00672773 L4,9 Z M12,9 L12.1166211,9.00672773 C12.6139598,9.06449284 13,9.48716416 13,10 L13,10 L13,12 C13,12.5522847 12.5522847,13 12,13 L12,13 L12,9 Z M8,1.5 C11.7854517,1.5 14.8690987,4.50478338 14.995941,8.25935025 L15,8.5 L15,11 C15,11.2761424 14.7761424,11.5 14.5,11.5 C14.2545401,11.5 14.0503916,11.3231248 14.0080557,11.0898756 L14,11 L14,8.5 C14,5.1862915 11.3137085,2.5 8,2.5 C4.76160306,2.5 2.12242824,5.06557489 2.00413847,8.27506174 L2,8.5 L2,11 C2,11.2761424 1.77614237,11.5 1.5,11.5 C1.25454011,11.5 1.05039163,11.3231248 1.00805567,11.0898756 L1,11 L1,8.5 C1,4.63400675 4.13400675,1.5 8,1.5 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_pheadset_light</title>
<g id="buletooth_pheadset_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M5,8 C6.1045695,8 7,8.8954305 7,10 L7,12 C7,13.0543618 6.18412221,13.9181651 5.14926234,13.9945143 L5,14 L5,8 Z M11,8 L11,14 L10.8507377,13.9945143 C9.81587779,13.9181651 9,13.0543618 9,12 L9,12 L9,10 C9,8.8954305 9.8954305,8 11,8 L11,8 Z M4,9 L4,13 C3.44771525,13 3,12.5522847 3,12 L3,10 C3,9.48716416 3.38604019,9.06449284 3.88337887,9.00672773 L4,9 Z M12,9 L12.1166211,9.00672773 C12.6139598,9.06449284 13,9.48716416 13,10 L13,10 L13,12 C13,12.5522847 12.5522847,13 12,13 L12,13 L12,9 Z M8,1.5 C11.7854517,1.5 14.8690987,4.50478338 14.995941,8.25935025 L15,8.5 L15,11 C15,11.2761424 14.7761424,11.5 14.5,11.5 C14.2545401,11.5 14.0503916,11.3231248 14.0080557,11.0898756 L14,11 L14,8.5 C14,5.1862915 11.3137085,2.5 8,2.5 C4.76160306,2.5 2.12242824,5.06557489 2.00413847,8.27506174 L2,8.5 L2,11 C2,11.2761424 1.77614237,11.5 1.5,11.5 C1.25454011,11.5 1.05039163,11.3231248 1.00805567,11.0898756 L1,11 L1,8.5 C1,4.63400675 4.13400675,1.5 8,1.5 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M11,1 C12.1045695,1 13,1.8954305 13,3 L13,13 C13,14.1045695 12.1045695,15 11,15 L6,15 C4.8954305,15 4,14.1045695 4,13 L4,3 C4,1.8954305 4.8954305,1 6,1 L11,1 Z M11,2 L6,2 C5.44771525,2 5,2.44771525 5,3 L5,3 L5,13 C5,13.5522847 5.44771525,14 6,14 L6,14 L11,14 C11.5522847,14 12,13.5522847 12,13 L12,13 L12,3 C12,2.44771525 11.5522847,2 11,2 L11,2 Z M9.5,3 C9.77614237,3 10,3.22385763 10,3.5 C10,3.77614237 9.77614237,4 9.5,4 L7.5,4 C7.22385763,4 7,3.77614237 7,3.5 C7,3.22385763 7.22385763,3 7.5,3 L9.5,3 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_phone_light</title>
<g id="buletooth_phone_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M11,1 C12.1045695,1 13,1.8954305 13,3 L13,13 C13,14.1045695 12.1045695,15 11,15 L6,15 C4.8954305,15 4,14.1045695 4,13 L4,3 C4,1.8954305 4.8954305,1 6,1 L11,1 Z M11,2 L6,2 C5.44771525,2 5,2.44771525 5,3 L5,3 L5,13 C5,13.5522847 5.44771525,14 6,14 L6,14 L11,14 C11.5522847,14 12,13.5522847 12,13 L12,13 L12,3 C12,2.44771525 11.5522847,2 11,2 L11,2 Z M9.5,3 C9.77614237,3 10,3.22385763 10,3.5 C10,3.77614237 9.77614237,4 9.5,4 L7.5,4 C7.22385763,4 7,3.77614237 7,3.5 C7,3.22385763 7.22385763,3 7.5,3 L9.5,3 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 646 B

After

Width:  |  Height:  |  Size: 903 B

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M10.5,10 C10.7761424,10 11,10.2238576 11,10.5 L11,13.5 C11,13.7761424 10.7761424,14 10.5,14 L5.5,14 C5.22385763,14 5,13.7761424 5,13.5 L5,10.5 C5,10.2238576 5.22385763,10 5.5,10 L10.5,10 Z M13,5 C14.1045695,5 15,5.8954305 15,7 L15,11 C15,12.1045695 14.1045695,13 13,13 L12,13 L12,10.5 C12,9.72030388 11.4051119,9.07955132 10.64446,9.00686658 L10.5,9 L5.5,9 C4.72030388,9 4.07955132,9.59488808 4.00686658,10.35554 L4,10.5 L4,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,7 C1,5.8954305 1.8954305,5 3,5 L13,5 Z M8.5,12 L6.5,12 C6.22385763,12 6,12.2238576 6,12.5 C6,12.7454599 6.17687516,12.9496084 6.41012437,12.9919443 L6.5,13 L8.5,13 C8.77614237,13 9,12.7761424 9,12.5 C9,12.2238576 8.77614237,12 8.5,12 Z M10.5,2 C10.7761424,2 11,2.22385763 11,2.5 L11,4 L5,4 L5,2.5 C5,2.22385763 5.22385763,2 5.5,2 L10.5,2 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_print_light</title>
<g id="buletooth_print_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M10.5,10 C10.7761424,10 11,10.2238576 11,10.5 L11,13.5 C11,13.7761424 10.7761424,14 10.5,14 L5.5,14 C5.22385763,14 5,13.7761424 5,13.5 L5,10.5 C5,10.2238576 5.22385763,10 5.5,10 L10.5,10 Z M13,5 C14.1045695,5 15,5.8954305 15,7 L15,11 C15,12.1045695 14.1045695,13 13,13 L12,13 L12,10.5 C12,9.72030388 11.4051119,9.07955132 10.64446,9.00686658 L10.5,9 L5.5,9 C4.72030388,9 4.07955132,9.59488808 4.00686658,10.35554 L4,10.5 L4,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,7 C1,5.8954305 1.8954305,5 3,5 L13,5 Z M8.5,12 L6.5,12 C6.22385763,12 6,12.2238576 6,12.5 C6,12.7454599 6.17687516,12.9496084 6.41012437,12.9919443 L6.5,13 L8.5,13 C8.77614237,13 9,12.7761424 9,12.5 C9,12.2238576 8.77614237,12 8.5,12 Z M10.5,2 C10.7761424,2 11,2.22385763 11,2.5 L11,4 L5,4 L5,2.5 C5,2.22385763 5.22385763,2 5.5,2 L10.5,2 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 948 B

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M13.5,10 C13.7761424,10 14,10.2238576 14,10.5 L14,12 C14,13.1045695 13.1045695,14 12,14 L10.5,14 C10.2238576,14 10,13.7761424 10,13.5 C10,13.2238576 10.2238576,13 10.5,13 L12,13 C12.5522847,13 13,12.5522847 13,12 L13,10.5 C13,10.2238576 13.2238576,10 13.5,10 Z M2.5,10 C2.77614237,10 3,10.2238576 3,10.5 L3,10.5 L3,12 C3,12.5522847 3.44771525,13 4,13 L4,13 L5.5,13 C5.77614237,13 6,13.2238576 6,13.5 C6,13.7761424 5.77614237,14 5.5,14 L5.5,14 L4,14 C2.8954305,14 2,13.1045695 2,12 L2,12 L2,10.5 C2,10.2238576 2.22385763,10 2.5,10 Z M12,10 L12,11 C12,11.5522847 11.5522847,12 11,12 L5,12 C4.44771525,12 4,11.5522847 4,11 L4,10 L12,10 Z M13.5,8 C13.7761424,8 14,8.22385763 14,8.5 C14,8.77614237 13.7761424,9 13.5,9 L2.5,9 C2.22385763,9 2,8.77614237 2,8.5 C2,8.22385763 2.22385763,8 2.5,8 L13.5,8 Z M11,4 C11.5522847,4 12,4.44771525 12,5 L12,7 L4,7 L4,5 C4,4.44771525 4.44771525,4 5,4 L11,4 Z M5.5,2 C5.77614237,2 6,2.22385763 6,2.5 C6,2.77614237 5.77614237,3 5.5,3 L4,3 C3.44771525,3 3,3.44771525 3,4 L3,5.5 C3,5.77614237 2.77614237,6 2.5,6 C2.22385763,6 2,5.77614237 2,5.5 L2,4 C2,2.8954305 2.8954305,2 4,2 L5.5,2 Z M12,2 C13.1045695,2 14,2.8954305 14,4 L14,4 L14,5.5 C14,5.77614237 13.7761424,6 13.5,6 C13.2238576,6 13,5.77614237 13,5.5 L13,5.5 L13,4 C13,3.44771525 12.5522847,3 12,3 L12,3 L10.5,3 C10.2238576,3 10,2.77614237 10,2.5 C10,2.22385763 10.2238576,2 10.5,2 L10.5,2 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_scaner_light</title>
<g id="buletooth_scaner_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M13.5,10 C13.7761424,10 14,10.2238576 14,10.5 L14,12 C14,13.1045695 13.1045695,14 12,14 L10.5,14 C10.2238576,14 10,13.7761424 10,13.5 C10,13.2238576 10.2238576,13 10.5,13 L12,13 C12.5522847,13 13,12.5522847 13,12 L13,10.5 C13,10.2238576 13.2238576,10 13.5,10 Z M2.5,10 C2.77614237,10 3,10.2238576 3,10.5 L3,10.5 L3,12 C3,12.5522847 3.44771525,13 4,13 L4,13 L5.5,13 C5.77614237,13 6,13.2238576 6,13.5 C6,13.7761424 5.77614237,14 5.5,14 L5.5,14 L4,14 C2.8954305,14 2,13.1045695 2,12 L2,12 L2,10.5 C2,10.2238576 2.22385763,10 2.5,10 Z M12,10 L12,11 C12,11.5522847 11.5522847,12 11,12 L5,12 C4.44771525,12 4,11.5522847 4,11 L4,10 L12,10 Z M13.5,8 C13.7761424,8 14,8.22385763 14,8.5 C14,8.77614237 13.7761424,9 13.5,9 L2.5,9 C2.22385763,9 2,8.77614237 2,8.5 C2,8.22385763 2.22385763,8 2.5,8 L13.5,8 Z M11,4 C11.5522847,4 12,4.44771525 12,5 L12,7 L4,7 L4,5 C4,4.44771525 4.44771525,4 5,4 L11,4 Z M5.5,2 C5.77614237,2 6,2.22385763 6,2.5 C6,2.77614237 5.77614237,3 5.5,3 L4,3 C3.44771525,3 3,3.44771525 3,4 L3,5.5 C3,5.77614237 2.77614237,6 2.5,6 C2.22385763,6 2,5.77614237 2,5.5 L2,4 C2,2.8954305 2.8954305,2 4,2 L5.5,2 Z M12,2 C13.1045695,2 14,2.8954305 14,4 L14,4 L14,5.5 C14,5.77614237 13.7761424,6 13.5,6 C13.2238576,6 13,5.77614237 13,5.5 L13,5.5 L13,4 C13,3.44771525 12.5522847,3 12,3 L12,3 L10.5,3 C10.2238576,3 10,2.77614237 10,2.5 C10,2.22385763 10.2238576,2 10.5,2 L10.5,2 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M15,8 L15,11 C15,12.1045695 14.1045695,13 13,13 L4,13 C2.8954305,13 2,12.1045695 2,11 L2,8 L15,8 Z M2,7 L2,5 C2,3.8954305 2.8954305,3 4,3 L8,3 L8,7 L2,7 Z M9,3 L13,3 C14.1045695,3 15,3.8954305 15,5 L15,7 L9,7 L9,3 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_touchpad_light</title>
<g id="buletooth_touchpad_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M15,8 L15,11 C15,12.1045695 14.1045695,13 13,13 L4,13 C2.8954305,13 2,12.1045695 2,11 L2,8 L15,8 Z M2,7 L2,5 C2,3.8954305 2.8954305,3 4,3 L8,3 L8,7 L2,7 Z M9,3 L13,3 C14.1045695,3 15,3.8954305 15,5 L15,7 L9,7 L9,3 Z" id="Combined-Shape" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 356 B

After

Width:  |  Height:  |  Size: 621 B

View File

@ -1,6 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<g fill="none" fill-rule="evenodd">
<path fill="#536076" d="M12,4 C13.6568542,4 15,5.34314575 15,7 L15,11 C15,12.6568542 13.6568542,14 12,14 L5,14 C3.34314575,14 2,12.6568542 2,11 L2,7 C2,5.34314575 3.34314575,4 5,4 L12,4 Z M12,5 L5,5 C3.9456382,5 3.08183488,5.81587779 3.00548574,6.85073766 L3,7 L3,11 C3,12.0543618 3.81587779,12.9181651 4.85073766,12.9945143 L5,13 L12,13 C13.0543618,13 13.9181651,12.1841222 13.9945143,11.1492623 L14,11 L14,7 C14,5.8954305 13.1045695,5 12,5 Z M12,6 C12.5522847,6 13,6.44771525 13,7 L13,11 C13,11.5522847 12.5522847,12 12,12 L5,12 C4.44771525,12 4,11.5522847 4,11 L4,7 C4,6.44771525 4.44771525,6 5,6 L12,6 Z M7.47058824,7 L5,7 L5,7.8 L5.82352941,7.8 L5.82352941,11 L6.64705882,11 L6.64705882,7.8 L7.47058824,7.8 L7.47058824,7 Z M9.14917766,7 L8.2726478,7 L9.66165358,11 L10.6081938,11 L12,7 L11.1234701,7 L10.3477552,9.38030096 C10.2282709,9.7998176 10.1582605,10.0934793 10.1377241,10.2612859 C10.1265224,10.1883265 10.0980516,10.0583675 10.0523115,9.87140903 C10.021818,9.74677003 9.99194696,9.63246694 9.96269818,9.52849977 L9.91929175,9.38030096 L9.14917766,7 Z"/>
<path fill="#536076" d="M7,0.5 C7.24545989,0.5 7.44960837,0.676875161 7.49194433,0.910124368 L7.5,1 L7.5,3.5 L10,3.5 C10.2454599,3.5 10.4496084,3.67687516 10.4919443,3.91012437 L10.5,4 C10.5,4.24545989 10.3231248,4.44960837 10.0898756,4.49194433 L10,4.5 L7,4.5 L6.5,4 L6.5,1 C6.5,0.723857625 6.72385763,0.5 7,0.5 Z" transform="rotate(-45 8.5 2.5)"/>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_tv_light</title>
<g id="buletooth_tv_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M12,4 C13.6568542,4 15,5.34314575 15,7 L15,11 C15,12.6568542 13.6568542,14 12,14 L5,14 C3.34314575,14 2,12.6568542 2,11 L2,7 C2,5.34314575 3.34314575,4 5,4 L12,4 Z M12,5 L5,5 C3.9456382,5 3.08183488,5.81587779 3.00548574,6.85073766 L3,7 L3,11 C3,12.0543618 3.81587779,12.9181651 4.85073766,12.9945143 L5,13 L12,13 C13.0543618,13 13.9181651,12.1841222 13.9945143,11.1492623 L14,11 L14,7 C14,5.8954305 13.1045695,5 12,5 Z M12,6 C12.5522847,6 13,6.44771525 13,7 L13,11 C13,11.5522847 12.5522847,12 12,12 L5,12 C4.44771525,12 4,11.5522847 4,11 L4,7 C4,6.44771525 4.44771525,6 5,6 L12,6 Z M7.47058824,7 L5,7 L5,7.8 L5.82352941,7.8 L5.82352941,11 L6.64705882,11 L6.64705882,7.8 L7.47058824,7.8 L7.47058824,7 Z M9.14917766,7 L8.2726478,7 L9.66165358,11 L10.6081938,11 L12,7 L11.1234701,7 L10.3477552,9.38030096 C10.2282709,9.7998176 10.1582605,10.0934793 10.1377241,10.2612859 C10.1265224,10.1883265 10.0980516,10.0583675 10.0523115,9.87140903 C10.021818,9.74677003 9.99194696,9.63246694 9.96269818,9.52849977 L9.91929175,9.38030096 L9.14917766,7 Z" id="形状结合" fill="#000000"></path>
<path d="M7,0.5 C7.24545989,0.5 7.44960837,0.676875161 7.49194433,0.910124368 L7.5,1 L7.5,3.5 L10,3.5 C10.2454599,3.5 10.4496084,3.67687516 10.4919443,3.91012437 L10.5,4 C10.5,4.24545989 10.3231248,4.44960837 10.0898756,4.49194433 L10,4.5 L7,4.5 L6.5,4 L6.5,1 C6.5,0.723857625 6.72385763,0.5 7,0.5 Z" id="路径-5" fill="#000000" transform="translate(8.500000, 2.500000) rotate(-45.000000) translate(-8.500000, -2.500000) "></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -1,3 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
<path fill="#536076" fill-rule="evenodd" d="M9,4 C10.1045695,4 11,4.8954305 11,6 L11,11 C11,12.1045695 10.1045695,13 9,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,6 C1,4.8954305 1.8954305,4 3,4 L9,4 Z M14.8466082,6.01915086 C14.9459035,6.14326999 15,6.29748735 15,6.45643739 L15,11.5435626 C15,11.9301619 14.6865993,12.2435626 14.3,12.2435626 C14.14105,12.2435626 13.9868326,12.1894661 13.8627135,12.0901708 L12,10.6 L12,7.4 L13.8627135,5.90982923 C14.1645968,5.66832254 14.6051015,5.71726751 14.8466082,6.01915086 Z M2.75,5 C2.33578644,5 2,5.33578644 2,5.75 C2,6.16421356 2.33578644,6.5 2.75,6.5 C3.16421356,6.5 3.5,6.16421356 3.5,5.75 C3.5,5.33578644 3.16421356,5 2.75,5 Z"/>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>buletooth_vidicon_light</title>
<g id="buletooth_vidicon_light" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M9,4 C10.1045695,4 11,4.8954305 11,6 L11,11 C11,12.1045695 10.1045695,13 9,13 L3,13 C1.8954305,13 1,12.1045695 1,11 L1,6 C1,4.8954305 1.8954305,4 3,4 L9,4 Z M14.8466082,6.01915086 C14.9459035,6.14326999 15,6.29748735 15,6.45643739 L15,11.5435626 C15,11.9301619 14.6865993,12.2435626 14.3,12.2435626 C14.14105,12.2435626 13.9868326,12.1894661 13.8627135,12.0901708 L12,10.6 L12,7.4 L13.8627135,5.90982923 C14.1645968,5.66832254 14.6051015,5.71726751 14.8466082,6.01915086 Z M2.75,5 C2.33578644,5 2,5.33578644 2,5.75 C2,6.16421356 2.33578644,6.5 2.75,6.5 C3.16421356,6.5 3.5,6.16421356 3.5,5.75 C3.5,5.33578644 3.16421356,5 2.75,5 Z" id="形状结合" fill="#000000"></path>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 771 B

After

Width:  |  Height:  |  Size: 1.0 KiB