【节点/连线】悬浮框+右键菜单+全屏响应式
Vue2 版本
visible-stuff-in-fullscreen.vue
javascript
<template>
<div>
<div ref="myPage" class="c-my-graph-theme" style="height:calc(100vh);" @mousemove="onMouseMove">
<RelationGraph
ref="graphRef"
:options="graphOptions"
:on-node-click="onNodeClick"
:on-line-click="onLineClick"
:on-canvas-click="onCanvasClick"
:on-contextmenu="onContextmenu"
>
<template #node="{node}">
<div>
<div class="c-my-node-icon">
<i style="font-size: 30px;" :class="node.data.myicon" />
</div>
<div class="c-my-node-name">
{{ node.data.myicon }}
</div>
</div>
</template>
<template #graph-plug>
<div v-if="isShowNodeMenuPanel || isShowLineMenuPanel" class="c-operation-mask-bg" @click="hideAllPanel">
</div>
<div v-if="isShowNodeMenuPanel" class="c-context-menu-panel" :style="{left: nodeMenuPanelPosition.x + 'px', top: nodeMenuPanelPosition.y + 'px' }">
<div style="line-height: 25px;padding-left: 10px;color: #888888;font-size: 12px;">Node[{{currentNode.text}}]Actions:</div>
<div class="c-node-menu-item" @click.stop="doActionForNode('Node Action 1')">Action 1</div>
<div class="c-node-menu-item" @click.stop="doActionForNode('Node Action 2')">Action 2</div>
<div class="c-node-menu-item" @click.stop="doActionForNode('Node Action 3')">Action 3</div>
<div class="c-node-menu-item" @click.stop="doActionForNode('Node Action 4')">Action 4</div>
</div>
<div v-if="isShowNodeTips" class="c-tips" :style="{left: nodeTipsPosition.x + 'px', top: nodeTipsPosition.y + 'px' }">
<div>NodeId: {{currentNode.text}}</div>
<div>Icon: {{currentNode.data.myicon}}</div>
</div>
<div v-if="isShowLineMenuPanel" class="c-context-menu-panel" :style="{left: lineMenuPosition.x + 'px', top: lineMenuPosition.y + 'px' }">
<div style="line-height: 25px;padding-left: 10px;color: #888888;font-size: 12px;">Line[{{currentLine.text}}]Actions:</div>
<div class="c-node-menu-item" @click.stop="doActionForLine('Line Action 1')">Action 1</div>
<div class="c-node-menu-item" @click.stop="doActionForLine('Line Action 2')">Action 2</div>
<div class="c-node-menu-item" @click.stop="doActionForLine('Line Action 3')">Action 3</div>
<div class="c-node-menu-item" @click.stop="doActionForLine('Line Action 4')">Action 4</div>
</div>
<div v-if="isShowLineTips" class="c-tips" :style="{left: lineTipsPosition.x + 'px', top: lineTipsPosition.y + 'px' }">
<div>Text: {{currentLine.text}}</div>
<div>From Node: {{currentLink.fromNode.text}}</div>
<div>To Node: {{currentLink.toNode.text}}</div>
</div>
<div class="c-my-panel">
<div class="c-option-name" style="line-height: 25px;">
<div>这个示例主要展示:</div>
<div>鼠标移动到【节点】和【连线】上均有悬浮框</div>
<div>支持对【节点】和【连线】使用右键展示菜单</div>
<div>这些操作相关的面板在全屏后依然可以使用</div>
</div>
</div>
</template>
</RelationGraph>
</div>
</div>
</template>
<script>
// 如果您没有在main.js文件中使用Vue.use(RelationGraph); 就需要使用下面这一行代码来引入relation-graph
// import RelationGraph from 'relation-graph';
export default {
name: 'Demo',
components: { },
data() {
return {
// ---------------------------------node------------------------------
currentNode: null,
// --------Node Tips-----------
isShowNodeTips: false,
nodeTipsPosition: { x: 0, y: 0 },
// --------Node Context Menu-----------
isShowNodeMenuPanel: false,
nodeMenuPanelPosition: { x: 0, y: 0 },
// --------------------------------Line------------------------------
currentLink: null,
currentLine: null,
// --------Line tips-----------
isShowLineTips: false,
lineTipsPosition: { x: 0, y: 0 },
// --------Line Context Menu-----------
isShowLineMenuPanel: false,
lineMenuPosition: { x: 0, y: 0 },
graphOptions: {
allowSwitchLineShape: true,
allowSwitchJunctionPoint: true,
defaultLineColor: 'auto',
defaultNodeColor: 'auto',
defaultNodeBorderWidth: 'auto',
defaultNodeBorderColor: 'auto',
defaultNodeFontColor: 'auto',
// 这里可以参考"Graph 图谱"中的参数进行设置
}
};
},
mounted() {
this.showGraph();
// 监控全屏事件,记得在组件销毁时移除这个事件
this.fullscreenchange = () => {
this.resizeViewWhenFullscreen();
}
document.addEventListener('fullscreenchange', this.fullscreenchange);
},
methods: {
showGraph() {
const __graph_json_data = {
rootId: '2',
nodes: [
// 注意:在节点配置信息中,你的自定义属性需要像下面这样放到data标签中,否则数据会丢失
{ id: '1', text: 'Node-1', data: { myicon: 'el-icon-star-on' }},
{ id: '2', text: 'Node-2', data: { myicon: 'el-icon-setting' }},
{ id: '3', text: 'Node-3', data: { myicon: 'el-icon-setting' }},
{ id: '4', text: 'Node-4', data: { myicon: 'el-icon-star-on' }},
{ id: '6', text: 'Node-6', data: { myicon: 'el-icon-setting' }},
{ id: '7', text: 'Node-7', data: { myicon: 'el-icon-setting' }},
{ id: '8', text: 'Node-8', data: { myicon: 'el-icon-star-on' }},
{ id: '9', text: 'Node-9', data: { myicon: 'el-icon-headset' }},
{ id: '71', text: 'Node-71', data: { myicon: 'el-icon-headset' }},
{ id: '72', text: 'Node-72', data: { myicon: 'el-icon-s-tools' }},
{ id: '73', text: 'Node-73', data: { myicon: 'el-icon-star-on' }},
{ id: '81', text: 'Node-81', data: { myicon: 'el-icon-s-promotion' }},
{ id: '82', text: 'Node-82', data: { myicon: 'el-icon-s-promotion' }},
{ id: '83', text: 'Node-83', data: { myicon: 'el-icon-star-on' }},
{ id: '84', text: 'Node-84', data: { myicon: 'el-icon-s-promotion' }},
{ id: '85', text: 'Node-85', data: { myicon: 'el-icon-sunny' }},
{ id: '91', text: 'Node-91', data: { myicon: 'el-icon-sunny' }},
{ id: '92', text: 'Node-82', data: { myicon: 'el-icon-sunny' }},
{ id: '51', text: 'Node-51', data: { myicon: 'el-icon-sunny' }},
{ id: '52', text: 'Node-52', data: { myicon: 'el-icon-sunny' }},
{ id: '53', text: 'Node-53', data: { myicon: 'el-icon-sunny' }},
{ id: '54', text: 'Node-54', data: { myicon: 'el-icon-sunny' }},
{ id: '55', text: 'Node-55', data: { myicon: 'el-icon-sunny' }},
{ id: '5', text: 'Node-5', data: { myicon: 'el-icon-sunny' }}
],
lines: [
{ from: '7', to: '71', text: 'Line text1' },
{ from: '7', to: '72', text: 'Line text2' },
{ from: '7', to: '73', text: 'Line text3' },
{ from: '8', to: '81', text: 'Line text4' },
{ from: '8', to: '82', text: 'Line text5' },
{ from: '8', to: '83', text: 'Line text6' },
{ from: '8', to: '84', text: 'Line text7' },
{ from: '8', to: '85', text: 'Line text8' },
{ from: '9', to: '91', text: 'Line text9' },
{ from: '9', to: '92', text: 'Line text10' },
{ from: '5', to: '51', text: 'Line text11' },
{ from: '5', to: '52', text: 'Line text12' },
{ from: '5', to: '53', text: 'Line text13' },
{ from: '5', to: '54', text: 'Line text14' },
{ from: '5', to: '55', text: 'Line text15' },
{ from: '1', to: '2', text: 'Line Text16' },
{ from: '3', to: '1', text: 'Line Text17' },
{ from: '4', to: '2', text: 'Line Text18' },
{ from: '6', to: '2', text: 'Line Text19' },
{ from: '7', to: '2', text: 'Line Text20' },
{ from: '8', to: '2', text: 'Line Text21' },
{ from: '9', to: '2', text: 'Line Text22' },
{ from: '1', to: '5', text: 'Line Text23' }
]
};
this.$refs.graphRef.setJsonData(__graph_json_data, (graphInstance) => {
// 这些写上当图谱初始化完成后需要执行的代码
});
},
onNodeClick(nodeObject, $event) {
console.log('onNodeClick:', nodeObject);
// this.showNodeContextMenu($event, nodeObject);
this.hideAllPanel();
},
onLineClick(lineObject, linkObject, $event) {
console.log('onLineClick:', lineObject);
this.hideAllPanel();
},
hideAllPanel() {
this.isShowLineMenuPanel = false;
this.isShowNodeMenuPanel = false;
this.isShowNodeTips = false;
this.isShowLineTips = false;
},
onContextmenu($event, objectType, object) {
console.log('onContextmenu:', objectType, object, $event.clientX, $event.clientY);
this.hideAllPanel();
if (objectType === 'node') {
this.showNodeContextMenu($event, object);
}
if (objectType === 'link') {
this.showLinkContextMenu($event, object);
}
},
showNodeContextMenu($event, nodeObject) {
this.currentNode = nodeObject;
const graphInstance = this.$refs.graphRef.getInstance();
graphInstance.setCheckedNode(this.currentNode.id); // 为了让清晰显示对哪个节点展示了右键菜单
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
console.log('showNodeContextMenu:', nodeObject.id, nodeObject.text);
this.isShowNodeMenuPanel = true;
this.nodeMenuPanelPosition.x = $event.clientX - _base_position.x + 10;
this.nodeMenuPanelPosition.y = $event.clientY - _base_position.y + 10;
// 根据你的需求,可以选择隐藏菜单的方式,本示例中使用onCanvasClick事件来隐藏菜单,你也可以使用以下常规方式:
// const hideContentMenu = () => {
// this.isShowNodeTipsPanel = false;
// document.body.removeEventListener('click', hideContentMenu)
// }
// document.body.addEventListener('click', hideContentMenu)
},
showLinkContextMenu($event, linkObject) {
console.log('showLinkContextMenu:', linkObject.fromNode.text, ' > ', linkObject.toNode.text);
const lineIndex = getLineElementIndex($event.target);
this.currentLink = linkObject;
this.currentLine = linkObject.relations[lineIndex];
const graphInstance = this.$refs.graphRef.getInstance();
graphInstance.setCheckedLinkAndLine(linkObject, this.currentLine);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
this.isShowLineMenuPanel = true;
this.lineMenuPosition.x = $event.clientX - _base_position.x + 10;
this.lineMenuPosition.y = $event.clientY - _base_position.y + 10;
},
onCanvasClick($event) {
console.log('onCanvasClick:', $event);
this.hideAllPanel();
const graphInstance = this.$refs.graphRef.getInstance();
graphInstance.clearChecked();
},
onMouseMove($event) {
const graphInstance = this.$refs.graphRef.getInstance();
const node = graphInstance.isNode($event.target);
console.log('onMouseMove:', $event.x, $event.y, node);
if (node) {
this.showNodeTips($event, node);
this.isShowNodeTips = true;
} else {
this.isShowNodeTips = false;
const link = graphInstance.isLink($event.target);
if (link) {
this.showLineTips($event, link);
this.isShowLineTips = true;
} else {
this.isShowLineTips = false;
}
}
},
showNodeTips($event, nodeObject) {
const graphInstance = this.$refs.graphRef.getInstance();
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
console.log('showNodeTips:', $event.clientX, $event.clientY, nodeObject, _base_position.x, _base_position.y);
this.currentNode = nodeObject;
this.nodeTipsPosition.x = $event.clientX - _base_position.x + 10;
this.nodeTipsPosition.y = $event.clientY - _base_position.y + 10;
},
showLineTips($event, linkObject) {
const graphInstance = this.$refs.graphRef.getInstance();
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
console.log('showLineTips:', $event.clientX, $event.clientY, this.currentLine, _base_position.x, _base_position.y);
this.lineTipsPosition.x = $event.clientX - _base_position.x + 10;
this.lineTipsPosition.y = $event.clientY - _base_position.y + 10;
const lineIndex = getLineElementIndex($event.target);
this.currentLink = linkObject;
this.currentLine = linkObject.relations[lineIndex];
},
nodeSlotOut(nodeObject) {
console.log('nodeSlotOut:', nodeObject);
},
doActionForNode(actionName) {
this.$notify({
title: 'Notice',
message: `Operation:[${actionName}] To Node[${this.currentNode.text}]`,
type: 'success'
});
this.hideAllPanel();
},
doActionForLine(actionName) {
this.$notify({
title: 'Notice',
message: `Operation:[${actionName}] To Line[${this.currentLine.text}]`,
type: 'success'
});
this.hideAllPanel();
},
resizeViewWhenFullscreen() {
if (document.fullscreenElement) {
// div进入全屏模式
console.log('div进入全屏模式', document.fullscreenElement);
console.log('graphRef', this.$refs.graphRef.$el);
const graphInstance = this.$refs.graphRef.getInstance();
// vue 会将组件对应的Element挂载在组件对象的$el属性中
if (this.$refs.graphRef.$el === document.fullscreenElement) {
console.log('relation-graph被全屏了!');
setTimeout(async() => {
await graphInstance.resetViewSize();
await graphInstance.moveToCenter();
await graphInstance.zoomToFit();
console.log('relation-graph 重置完成!');
}, 500)
}
} else {
// div退出全屏模式
console.log('div退出全屏模式');
setTimeout(async() => {
const graphInstance = this.$refs.graphRef.getInstance();
await graphInstance.resetViewSize();
await graphInstance.moveToCenter();
await graphInstance.zoomToFit();
console.log('relation-graph 重置完成!');
}, 500)
}
}
},
beforeDestroy() {
document.removeEventListener('fullscreenchange', this.fullscreenchange);
}
};
const getLineElementIndex = (el, deep=0) => {
if (deep > 10)return -1;// 层级太深了,不继续找了
if (el.tagName === 'body')return -1;// 到头了
if (el.parentElement.classList.contains('rel-link-peel')) {
return Array.from(el.parentElement.children).indexOf(el);
} else {
return getLineElementIndex(el.parentElement, deep + 1);
}
}
</script>
<style lang="scss" scoped>
// 这个style标签中的样式设置关系图的样式,与节点菜单、悬浮框无关
::v-deep .c-my-graph-theme{
.rel-map {
background-color: #ffffff;
}
.rel-node{
background-color: rgba(241, 5, 221, 0.73);
border: 2px solid rgba(241, 5, 221,0.3);
.c-node-text {
color: #ffffff;
}
}
.c-rg-line {
stroke: rgba(241, 5, 221);
}
.c-rg-line-text {
fill: rgba(241, 5, 221);
}
.rel-node-checked {
transition: background-color .2s ease,outline .2s ease,color .2s ease,-webkit-box-shadow .2s ease;
box-shadow: 0 0 0 8px rgba(241, 5, 221,0.2);
}
.rel-toolbar{
background-color: rgba(241, 5, 221,0.9);
color: #ffffff;
.c-current-zoom{
color: #ffffff;
}
}
.rel-node-flashing {
animation: none;
}
.c-rg-line-checked {
stroke: rgba(241, 5, 221);
}
.c-rg-line-text-checked {
stroke: rgba(241, 5, 221);
}
.c-rg-line-checked-bg {
stroke: rgba(241, 5, 221,0.2);
}
.c-rg-line-text-checked {
stroke: rgba(241, 5, 221,0.2);
}
.rel-graph-loading{
background-color: #ecf4f8;
}
}
.c-my-panel{
width: 400px;
position: absolute;
left: 10px;
top: 10px;
border-radius: 10px;
z-index: 800;
background-color: #efefef;
border: #eeeeee solid 1px;
padding: 10px;
.c-option-name{
color: #666666;
font-size: 14px;
line-height: 40px;
padding-left:10px;
padding-right:10px;
}
}
</style>
<style lang="scss" scoped>
// 这里的样式是本示例的关键样式
.c-my-node-icon {
height:80px;line-height: 80px;border-radius: 50%;cursor: pointer;
display: flex;
place-items: center;
justify-content: center;
color: #ffffff;
}
.c-my-node-name {
color: rgba(241, 5, 221,1);
font-size: 16px;
position: absolute;
width: 160px;height:25px;line-height: 25px;margin-top:5px;
margin-left: -50%;
text-align: center;
background-color: rgba(241, 5, 221,0.2);
border-radius: 10px;
}
.c-node-menu-item{
border-radius: 6px;
line-height: 30px;padding-left: 10px;cursor: pointer;color: #444444;font-size: 14px;
border-top:#efefef solid 1px;
}
.c-node-menu-item:hover{
background-color: rgba(241, 5, 221,0.2);
}
.c-operation-mask-bg {
position: absolute;
background-color: rgba(51, 51, 51, 0.1);
opacity: 0.1;
z-index: 700;
height:100%;
width:100%;
left:0px;
top:0px;
}
.c-context-menu-panel {
z-index: 999;padding:10px;background-color: #ffffff;border:#eeeeee solid 1px;box-shadow: 0px 0px 8px #cccccc;position: absolute;border-radius: 10px;
}
.c-tips {
z-index: 999;padding:10px;
width: 200px;
position: absolute;
border-radius: 10px;
background-color: #333333;
color: #ffffff;
border:#eeeeee solid 1px;
box-shadow: 0px 0px 8px #cccccc;
& > div {
line-height: 25px;padding-left: 10px;font-size: 12px;
}
}
</style>
Vue3 版本
visible-stuff-in-fullscreen.vue
javascript
<template>
<div>
<div ref="myPage" class="c-my-graph-theme" style="height:calc(100vh);" @mousemove="onMouseMove">
<RelationGraph
ref="graphRef"
:options="graphOptions"
:on-node-click="onNodeClick"
:on-line-click="onLineClick"
:on-canvas-click="onCanvasClick"
:on-contextmenu="onContextmenu"
>
<template #node="{node}">
<div>
<div class="c-my-node-icon">
<i style="font-size: 30px;" :class="node.data.myicon" />
</div>
<div class="c-my-node-name">
{{ node.data.myicon }}
</div>
</div>
</template>
<template #graph-plug>
<div v-if="isShowNodeMenuPanel || isShowLineMenuPanel" class="c-operation-mask-bg" @click="hideAllPanel" />
<div v-if="isShowNodeMenuPanel" class="c-context-menu-panel" :style="{left: nodeMenuPanelPosition.x + 'px', top: nodeMenuPanelPosition.y + 'px' }">
<div style="line-height: 25px;padding-left: 10px;color: #888888;font-size: 12px;">Node[{{ currentNode.text }}]Actions:</div>
<div class="c-node-menu-item" @click.stop="doActionForNode('Node Action 1')">Action 1</div>
<div class="c-node-menu-item" @click.stop="doActionForNode('Node Action 2')">Action 2</div>
<div class="c-node-menu-item" @click.stop="doActionForNode('Node Action 3')">Action 3</div>
<div class="c-node-menu-item" @click.stop="doActionForNode('Node Action 4')">Action 4</div>
</div>
<div v-if="isShowNodeTips" class="c-tips" :style="{left: nodeTipsPosition.x + 'px', top: nodeTipsPosition.y + 'px' }">
<div>NodeId: {{ currentNode.text }}</div>
<div>Icon: {{ currentNode.data.myicon }}</div>
</div>
<div v-if="isShowLineMenuPanel" class="c-context-menu-panel" :style="{left: lineMenuPosition.x + 'px', top: lineMenuPosition.y + 'px' }">
<div style="line-height: 25px;padding-left: 10px;color: #888888;font-size: 12px;">Line[{{ currentLine.text }}]Actions:</div>
<div class="c-node-menu-item" @click.stop="doActionForLine('Line Action 1')">Action 1</div>
<div class="c-node-menu-item" @click.stop="doActionForLine('Line Action 2')">Action 2</div>
<div class="c-node-menu-item" @click.stop="doActionForLine('Line Action 3')">Action 3</div>
<div class="c-node-menu-item" @click.stop="doActionForLine('Line Action 4')">Action 4</div>
</div>
<div v-if="isShowLineTips" class="c-tips" :style="{left: lineTipsPosition.x + 'px', top: lineTipsPosition.y + 'px' }">
<div>Text: {{ currentLine.text }}</div>
<div>From Node: {{ currentLink.fromNode.text }}</div>
<div>To Node: {{ currentLink.toNode.text }}</div>
</div>
<div class="c-my-panel">
<div class="c-option-name" style="line-height: 25px;">
<div>This example mainly demonstrates:</div>
<div>Hovering over the "node" and "line" will display tooltips</div>
<div>Right-clicking on the "node" and "line" will display context menus</div>
<div>These operation-related panels can still be used after full screen</div>
</div>
</div>
</template>
</RelationGraph>
</div>
</div>
</template>
<script lang="ts" setup>
import {ref, onMounted, onBeforeUnmount} from 'vue';
import RelationGraph, { RGJsonData, RGNode, RGLine, RGLink, RGUserEvent, RelationGraphComponent } from 'relation-graph-vue3';
const graphRef = ref<RelationGraphComponent>();
const currentNode = ref(null);
const isShowNodeTips = ref(false);
const nodeTipsPosition = ref({ x: 0, y: 0 });
const isShowNodeMenuPanel = ref(false);
const nodeMenuPanelPosition = ref({ x: 0, y: 0 });
const currentLink = ref(null);
const currentLine = ref(null);
const isShowLineTips = ref(false);
const lineTipsPosition = ref({ x: 0, y: 0 });
const isShowLineMenuPanel = ref(false);
const lineMenuPosition = ref({ x: 0, y: 0 });
const graphOptions = ref({
allowSwitchLineShape: true,
allowSwitchJunctionPoint: true,
defaultLineColor: 'auto',
defaultNodeColor: 'auto',
defaultNodeBorderWidth: 'auto',
defaultNodeBorderColor: 'auto',
defaultNodeFontColor: 'auto',
// You can refer to the parameters in "Graph" for setting here
});
const showGraph = async() => {
const __graph_json_data: RGJsonData = {
rootId: '2',
nodes: [
// Note: In the node configuration information, your custom attributes need to be placed in the data tag like this, otherwise the data will be lost
{ id: '1', text: 'Node-1', data: { myicon: 'el-icon-star-on' }},
{ id: '2', text: 'Node-2', data: { myicon: 'el-icon-setting' }},
{ id: '3', text: 'Node-3', data: { myicon: 'el-icon-setting' }},
{ id: '4', text: 'Node-4', data: { myicon: 'el-icon-star-on' }},
{ id: '6', text: 'Node-6', data: { myicon: 'el-icon-setting' }},
{ id: '7', text: 'Node-7', data: { myicon: 'el-icon-setting' }},
{ id: '8', text: 'Node-8', data: { myicon: 'el-icon-star-on' }},
{ id: '9', text: 'Node-9', data: { myicon: 'el-icon-headset' }},
{ id: '71', text: 'Node-71', data: { myicon: 'el-icon-headset' }},
{ id: '72', text: 'Node-72', data: { myicon: 'el-icon-s-tools' }},
{ id: '73', text: 'Node-73', data: { myicon: 'el-icon-star-on' }},
{ id: '81', text: 'Node-81', data: { myicon: 'el-icon-s-promotion' }},
{ id: '82', text: 'Node-82', data: { myicon: 'el-icon-s-promotion' }},
{ id: '83', text: 'Node-83', data: { myicon: 'el-icon-star-on' }},
{ id: '84', text: 'Node-84', data: { myicon: 'el-icon-s-promotion' }},
{ id: '85', text: 'Node-85', data: { myicon: 'el-icon-sunny' }},
{ id: '91', text: 'Node-91', data: { myicon: 'el-icon-sunny' }},
{ id: '92', text: 'Node-82', data: { myicon: 'el-icon-sunny' }},
{ id: '51', text: 'Node-51', data: { myicon: 'el-icon-sunny' }},
{ id: '52', text: 'Node-52', data: { myicon: 'el-icon-sunny' }},
{ id: '53', text: 'Node-53', data: { myicon: 'el-icon-sunny' }},
{ id: '54', text: 'Node-54', data: { myicon: 'el-icon-sunny' }},
{ id: '55', text: 'Node-55', data: { myicon: 'el-icon-sunny' }},
{ id: '5', text: 'Node-5', data: { myicon: 'el-icon-sunny' }}
],
lines: [
{ from: '7', to: '71', text: 'Line text1' },
{ from: '7', to: '72', text: 'Line text2' },
{ from: '7', to: '73', text: 'Line text3' },
{ from: '8', to: '81', text: 'Line text4' },
{ from: '8', to: '82', text: 'Line text5' },
{ from: '8', to: '83', text: 'Line text6' },
{ from: '8', to: '84', text: 'Line text7' },
{ from: '8', to: '85', text: 'Line text8' },
{ from: '9', to: '91', text: 'Line text9' },
{ from: '9', to: '92', text: 'Line text10' },
{ from: '5', to: '51', text: 'Line text11' },
{ from: '5', to: '52', text: 'Line text12' },
{ from: '5', to: '53', text: 'Line text13' },
{ from: '5', to: '54', text: 'Line text14' },
{ from: '5', to: '55', text: 'Line text15' },
{ from: '1', to: '2', text: 'Line Text16' },
{ from: '3', to: '1', text: 'Line Text17' },
{ from: '4', to: '2', text: 'Line Text18' },
{ from: '6', to: '2', text: 'Line Text19' },
{ from: '7', to: '2', text: 'Line Text20' },
{ from: '8', to: '2', text: 'Line Text21' },
{ from: '9', to: '2', text: 'Line Text22' },
{ from: '1', to: '5', text: 'Line Text23' }
]
};
const graphInstance = graphRef.value!.getInstance();
await graphInstance.setJsonData(__graph_json_data);
await graphInstance.moveToCenter();
await graphInstance.zoomToFit();
};
const onNodeClick = (nodeObject: RGNode, $event: RGUserEvent) => {
console.log('onNodeClick:', nodeObject);
hideAllPanel();
};
const onLineClick = (lineObject: RGLine, linkObject: RGLink, $event: RGUserEvent) => {
console.log('onLineClick:', lineObject);
hideAllPanel();
};
const hideAllPanel = () => {
isShowLineMenuPanel.value = false;
isShowNodeMenuPanel.value = false;
isShowNodeTips.value = false;
isShowLineTips.value = false;
};
const onContextmenu = ($event: RGUserEvent, objectType: string, object: RGNode | RGLink) => {
console.log('onContextmenu:', objectType, object);
hideAllPanel();
if (objectType === 'node') {
showNodeContextMenu($event, object as RGNode);
}
if (objectType === 'link') {
showLinkContextMenu($event, object as RGLink);
}
};
const showNodeContextMenu = ($event: RGUserEvent, nodeObject: RGNode) => {
currentNode.value = nodeObject;
const graphInstance = graphRef.value.getInstance();
graphInstance.setCheckedNode(currentNode.value.id);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
console.log('showNodeContextMenu:', nodeObject.id, nodeObject.text);
isShowNodeMenuPanel.value = true;
nodeMenuPanelPosition.value.x = $event.clientX - _base_position.x + 10;
nodeMenuPanelPosition.value.y = $event.clientY - _base_position.y + 10;
};
const showLinkContextMenu = ($event: RGUserEvent, linkObject: RGLink) => {
const lineIndex = getLineElementIndex($event.target);
console.log('showLinkContextMenu:', lineIndex, linkObject.fromNode.text, ' > ', linkObject.toNode.text);
currentLink.value = linkObject;
currentLine.value = linkObject.relations[lineIndex];
const graphInstance = graphRef.value.getInstance();
graphInstance.setCheckedLinkAndLine(linkObject, currentLine.value);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
isShowLineMenuPanel.value = true;
lineMenuPosition.value.x = $event.clientX - _base_position.x + 10;
lineMenuPosition.value.y = $event.clientY - _base_position.y + 10;
};
const onCanvasClick = ($event: RGUserEvent) => {
console.log('onCanvasClick:', $event);
hideAllPanel();
const graphInstance = graphRef.value.getInstance();
graphInstance.clearChecked();
};
const onMouseMove = ($event: RGUserEvent) => {
const graphInstance = graphRef.value.getInstance();
const node = graphInstance.isNode($event.target);
console.log('onMouseMove:', $event.x, $event.y, node);
if (node) {
showNodeTips($event, node);
isShowNodeTips.value = true;
} else {
isShowNodeTips.value = false;
const link = graphInstance.isLink($event.target);
if (link) {
showLineTips($event, link);
isShowLineTips.value = true;
} else {
isShowLineTips.value = false;
}
}
};
const showNodeTips = ($event: RGUserEvent, nodeObject: RGNode) => {
const graphInstance = graphRef.value.getInstance();
console.log('showNodeTips:', nodeObject);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
currentNode.value = nodeObject;
nodeTipsPosition.value.x = $event.clientX - _base_position.x + 10;
nodeTipsPosition.value.y = $event.clientY - _base_position.y + 10;
};
const showLineTips = ($event: RGUserEvent, linkObject: RGLink) => {
const graphInstance = graphRef.value.getInstance();
console.log('showLineTips:', $event.clientX, $event.clientY, currentLine.value);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
lineTipsPosition.value.x = $event.clientX - _base_position.x + 10;
lineTipsPosition.value.y = $event.clientY - _base_position.y + 10;
const lineIndex = getLineElementIndex($event.target);
currentLink.value = linkObject;
currentLine.value = linkObject.relations[lineIndex];
};
const doActionForNode = (actionName: string) => {
console.log(`Operation:[${actionName}] To Node[${currentNode.value.text}]`);
hideAllPanel();
};
const doActionForLine = (actionName: string) => {
console.log(`Operation:[${actionName}] To Line[${currentLine.value.text}]`);
hideAllPanel();
};
const resizeViewWhenFullscreen = () => {
if (document.fullscreenElement) {
console.log('div进入全屏模式', document.fullscreenElement);
console.log('graphRef', graphRef.value.$el);
const graphInstance = graphRef.value.getInstance();
if (graphRef.value.$el === document.fullscreenElement) {
console.log('relation-graph被全屏了!');
setTimeout(async() => {
await graphInstance.resetViewSize();
await graphInstance.moveToCenter();
await graphInstance.zoomToFit();
console.log('relation-graph 重置完成!');
}, 500);
}
} else {
console.log('div退出全屏模式');
setTimeout(async() => {
const graphInstance = graphRef.value.getInstance();
await graphInstance.resetViewSize();
await graphInstance.moveToCenter();
await graphInstance.zoomToFit();
console.log('relation-graph 重置完成!');
}, 500);
}
};
onMounted(() => {
showGraph();
document.addEventListener('fullscreenchange', resizeViewWhenFullscreen);
});
onBeforeUnmount(() => {
document.removeEventListener('fullscreenchange', resizeViewWhenFullscreen);
});
const getLineElementIndex = (el: HTMLElement, deep = 0): number => {
if (deep > 10) return -1;
if (el.tagName === 'body') return -1;
if (el.parentElement.classList.contains('rel-link-peel')) {
return Array.from(el.parentElement.children).indexOf(el);
} else {
return getLineElementIndex(el.parentElement, deep + 1);
}
};
</script>
<style lang="scss" scoped>
::v-deep(.c-my-graph-theme) {
.rel-map {
background-color: #ffffff;
}
.rel-node{
background-color: rgba(241, 5, 221, 0.73);
border: 2px solid rgba(241, 5, 221,0.3);
.c-node-text {
color: #ffffff;
}
}
.c-rg-line {
stroke: rgba(241, 5, 221);
}
.c-rg-line-text {
fill: rgba(241, 5, 221);
}
.rel-node-checked {
transition: background-color .2s ease,outline .2s ease,color .2s ease,-webkit-box-shadow .2s ease;
box-shadow: 0 0 0 8px rgba(241, 5, 221,0.2);
}
.rel-toolbar{
background-color: rgba(241, 5, 221,0.9);
color: #ffffff;
.c-current-zoom{
color: #ffffff;
}
}
.rel-node-flashing {
animation: none;
}
.c-rg-line-checked {
stroke: rgba(241, 5, 221);
}
.c-rg-line-text-checked {
stroke: rgba(241, 5, 221);
}
.c-rg-line-checked-bg {
stroke: rgba(241, 5, 221,0.2);
}
.c-rg-line-text-checked {
stroke: rgba(241, 5, 221,0.2);
}
.rel-graph-loading{
background-color: #ecf4f8;
}
}
.c-my-panel{
width: 400px;
position: absolute;
left: 10px;
top: 10px;
border-radius: 10px;
z-index: 800;
background-color: #efefef;
border: #eeeeee solid 1px;
padding: 10px;
.c-option-name{
color: #666666;
font-size: 14px;
line-height: 40px;
padding-left:10px;
padding-right:10px;
}
}
</style>
<style lang="scss" scoped>
.c-my-node-icon {
height:80px;line-height: 80px;border-radius: 50%;cursor: pointer;
display: flex;
place-items: center;
justify-content: center;
color: #ffffff;
}
.c-my-node-name {
color: rgba(241, 5, 221,1);
font-size: 16px;
position: absolute;
width: 160px;height:25px;line-height: 25px;margin-top:5px;
margin-left: -50%;
text-align: center;
background-color: rgba(241, 5, 221,0.2);
border-radius: 10px;
}
.c-node-menu-item{
border-radius: 6px;
line-height: 30px;padding-left: 10px;cursor: pointer;color: #444444;font-size: 14px;
border-top:#efefef solid 1px;
}
.c-node-menu-item:hover{
background-color: rgba(241, 5, 221,0.2);
}
.c-operation-mask-bg {
position: absolute;
background-color: rgba(51, 51, 51, 0.1);
opacity: 0.1;
z-index: 700;
height:100%;
width:100%;
left:0px;
top:0px;
}
.c-context-menu-panel {
z-index: 999;padding:10px;background-color: #ffffff;border:#eeeeee solid 1px;box-shadow: 0px 0px 8px #cccccc;position: absolute;border-radius: 10px;
}
.c-tips {
z-index: 999;padding:10px;
width: 200px;
position: absolute;
border-radius: 10px;
background-color: #333333;
color: #ffffff;
border:#eeeeee solid 1px;
box-shadow: 0px 0px 8px #cccccc;
& > div {
line-height: 25px;padding-left: 10px;font-size: 12px;
}
}
</style>
React 版本
visible-stuff-in-fullscreen.tsx
javascript
import React, { useRef, useEffect, useState } from 'react';
import RelationGraphReact, {
RGJsonData,
RGNode,
RGLine,
RGLink,
RGUserEvent,
RelationGraphComponent,
RGOptions, RGNodeSlotProps
} from 'relation-graph-react';
import CircumIcon from "./RGDemoComponents/MyDemoIcons";
import './visible-stuff-in-fullscreen.scss';
const VisibleStuffInFullscreen = () => {
const graphRef = useRef<RelationGraphComponent>(null);
const [currentNode, setCurrentNode] = useState<RGNode | null>(null);
const [isShowNodeTips, setIsShowNodeTips] = useState(false);
const [nodeTipsPosition, setNodeTipsPosition] = useState({ x: 0, y: 0 });
const [isShowNodeMenuPanel, setIsShowNodeMenuPanel] = useState(false);
const [nodeMenuPanelPosition, setNodeMenuPanelPosition] = useState({ x: 0, y: 0 });
const [currentLink, setCurrentLink] = useState<RGLink | null>(null);
const [currentLine, setCurrentLine] = useState<RGLine | null>(null);
const [isShowLineTips, setIsShowLineTips] = useState(false);
const [lineTipsPosition, setLineTipsPosition] = useState({ x: 0, y: 0 });
const [lineMenuPosition, setLineMenuPosition] = useState({ x: 0, y: 0 });
const [isShowLineMenuPanel, setIsShowLineMenuPanel] = useState(false);
const [graphOptions, setGraphOptions] = useState<RGOptions>({
defaultLineColor: 'auto',
defaultNodeColor: 'auto',
defaultNodeBorderColor: 'auto',
defaultNodeFontColor: 'auto',
// You can refer to the parameters in "Graph" for setting here
});
const showGraph = async () => {
const __graph_json_data: RGJsonData = {
rootId: '2',
nodes: [
// Note: In the node configuration information, your custom attributes need to be placed in the data tag like this, otherwise the data will be lost
{ id: '1', text: 'Node-1', data: { myicon: 'star' } },
{ id: '2', text: 'Node-2', data: { myicon: 'settings' } },
{ id: '3', text: 'Node-3', data: { myicon: 'settings' } },
{ id: '4', text: 'Node-4', data: { myicon: 'star' } },
{ id: '6', text: 'Node-6', data: { myicon: 'settings' } },
{ id: '7', text: 'Node-7', data: { myicon: 'settings' } },
{ id: '8', text: 'Node-8', data: { myicon: 'star' } },
{ id: '9', text: 'Node-9', data: { myicon: 'headphones' } },
{ id: '71', text: 'Node-71', data: { myicon: 'headphones' } },
{ id: '72', text: 'Node-72', data: { myicon: 'bluetooth' } },
{ id: '73', text: 'Node-73', data: { myicon: 'star' } },
{ id: '81', text: 'Node-81', data: { myicon: 'burger' } },
{ id: '82', text: 'Node-82', data: { myicon: 'burger' } },
{ id: '83', text: 'Node-83', data: { myicon: 'star' } },
{ id: '84', text: 'Node-84', data: { myicon: 'burger' } },
{ id: '85', text: 'Node-85', data: { myicon: 'gift' } },
{ id: '91', text: 'Node-91', data: { myicon: 'gift' } },
{ id: '92', text: 'Node-82', data: { myicon: 'gift' } },
{ id: '51', text: 'Node-51', data: { myicon: 'gift' } },
{ id: '52', text: 'Node-52', data: { myicon: 'gift' } },
{ id: '53', text: 'Node-53', data: { myicon: 'gift' } },
{ id: '54', text: 'Node-54', data: { myicon: 'gift' } },
{ id: '55', text: 'Node-55', data: { myicon: 'gift' } },
{ id: '5', text: 'Node-5', data: { myicon: 'gift' } }
],
lines: [
{ from: '7', to: '71', text: 'Line text1' },
{ from: '7', to: '72', text: 'Line text2' },
{ from: '7', to: '73', text: 'Line text3' },
{ from: '8', to: '81', text: 'Line text4' },
{ from: '8', to: '82', text: 'Line text5' },
{ from: '8', to: '83', text: 'Line text6' },
{ from: '8', to: '84', text: 'Line text7' },
{ from: '8', to: '85', text: 'Line text8' },
{ from: '9', to: '91', text: 'Line text9' },
{ from: '9', to: '92', text: 'Line text10' },
{ from: '5', to: '51', text: 'Line text11' },
{ from: '5', to: '52', text: 'Line text12' },
{ from: '5', to: '53', text: 'Line text13' },
{ from: '5', to: '54', text: 'Line text14' },
{ from: '5', to: '55', text: 'Line text15' },
{ from: '1', to: '2', text: 'Line Text16' },
{ from: '3', to: '1', text: 'Line Text17' },
{ from: '4', to: '2', text: 'Line Text18' },
{ from: '6', to: '2', text: 'Line Text19' },
{ from: '7', to: '2', text: 'Line Text20' },
{ from: '8', to: '2', text: 'Line Text21' },
{ from: '9', to: '2', text: 'Line Text22' },
{ from: '1', to: '5', text: 'Line Text23' }
]
};
const graphInstance = graphRef.current?.getInstance();
await graphInstance?.setJsonData(__graph_json_data);
await graphInstance?.moveToCenter();
await graphInstance?.zoomToFit();
};
const onNodeClick = (nodeObject: RGNode, $event: RGUserEvent) => {
console.log('onNodeClick:', nodeObject);
hideAllPanel();
};
const onLineClick = (lineObject: RGLine, linkObject: RGLink, $event: RGUserEvent) => {
console.log('onLineClick:', lineObject);
hideAllPanel();
};
const hideAllPanel = () => {
setIsShowLineMenuPanel(false);
setIsShowNodeMenuPanel(false);
setIsShowNodeTips(false);
setIsShowLineTips(false);
};
const onContextmenu = ($event: RGUserEvent, objectType: string, object: RGNode | RGLink) => {
console.log('onContextmenu:', objectType, object);
hideAllPanel();
if (objectType === 'node') {
showNodeContextMenu($event as React.MouseEvent, object as RGNode);
}
if (objectType === 'link') {
showLinkContextMenu($event as React.MouseEvent, object as RGLink);
}
};
const showNodeContextMenu = ($event: React.MouseEvent, nodeObject: RGNode) => {
const graphInstance = graphRef.current!.getInstance();
graphInstance.setCheckedNode(nodeObject.id);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
console.log('showNodeContextMenu:', nodeObject.id, nodeObject.text);
setCurrentNode(nodeObject);
setIsShowNodeMenuPanel(true);
setNodeMenuPanelPosition({
x: $event.clientX - _base_position.x + 10,
y: $event.clientY - _base_position.y + 10
});
};
const showLinkContextMenu = ($event: React.MouseEvent, linkObject: RGLink) => {
const lineIndex = getLineElementIndex($event.target as HTMLElement);
console.log('showLinkContextMenu:', lineIndex, linkObject.fromNode.text, ' > ', linkObject.toNode.text);
setCurrentLink(linkObject);
setCurrentLine(linkObject.relations[lineIndex]);
const graphInstance = graphRef.current!.getInstance();
graphInstance.setCheckedLinkAndLine(linkObject, currentLine!);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
setIsShowLineMenuPanel(true);
setLineMenuPosition({
x: $event.clientX - _base_position.x + 10,
y: $event.clientY - _base_position.y + 10
});
};
const onCanvasClick = ($event: RGUserEvent) => {
console.log('onCanvasClick:', $event);
hideAllPanel();
const graphInstance = graphRef.current?.getInstance();
graphInstance?.clearChecked();
};
const onMouseMove = ($event: React.MouseEvent) => {
const graphInstance = graphRef.current!.getInstance();
const node = graphInstance.isNode($event.target as HTMLElement);
console.log('onMouseMove:', node);
if (node) {
showNodeTips($event, node);
setIsShowNodeTips(true);
} else {
setIsShowNodeTips(false);
const link = graphInstance.isLink($event.target as HTMLElement);
if (link) {
showLineTips($event, link);
setIsShowLineTips(true);
} else {
setIsShowLineTips(false);
}
}
};
const showNodeTips = ($event: React.MouseEvent, nodeObject: RGNode) => {
const graphInstance = graphRef.current!.getInstance();
console.log('showNodeTips:', nodeObject);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
setCurrentNode(nodeObject);
setNodeTipsPosition({
x: $event.clientX - _base_position.x + 10,
y: $event.clientY - _base_position.y + 10
});
};
const showLineTips = ($event: React.MouseEvent, linkObject: RGLink) => {
const graphInstance = graphRef.current!.getInstance();
console.log('showLineTips:', $event.clientX, $event.clientY, currentLine);
const _base_position = graphInstance.options.fullscreen ? { x: 0, y: 0 } : graphInstance.getBoundingClientRect();
setLineTipsPosition({
x: $event.clientX - _base_position.x + 10,
y: $event.clientY - _base_position.y + 10
});
const lineIndex = getLineElementIndex($event.target as HTMLElement);
setCurrentLink(linkObject);
setCurrentLine(linkObject.relations[lineIndex]);
};
const doActionForNode = (actionName: string) => {
console.log(`Operation:[${actionName}] To Node[${currentNode?.text}]`);
hideAllPanel();
};
const doActionForLine = (actionName: string) => {
console.log(`Operation:[${actionName}] To Line[${currentLine?.text}]`);
hideAllPanel();
};
const resizeViewWhenFullscreen = () => {
if (document.fullscreenElement) {
console.log('div进入全屏模式', document.fullscreenElement);
console.log('graphRef', graphRef.current);
const graphInstance = graphRef.current!.getInstance();
if (graphInstance.$dom === document.fullscreenElement) {
console.log('relation-graph被全屏了!');
setTimeout(async () => {
await graphInstance?.resetViewSize();
await graphInstance?.moveToCenter();
await graphInstance?.zoomToFit();
console.log('relation-graph 重置完成!');
}, 500);
}
} else {
console.log('div退出全屏模式');
setTimeout(async () => {
const graphInstance = graphRef.current?.getInstance();
await graphInstance?.resetViewSize();
await graphInstance?.moveToCenter();
await graphInstance?.zoomToFit();
console.log('relation-graph 重置完成!');
}, 500);
}
};
useEffect(() => {
showGraph();
document.addEventListener('fullscreenchange', resizeViewWhenFullscreen);
return () => {
document.removeEventListener('fullscreenchange', resizeViewWhenFullscreen);
};
}, []);
const getLineElementIndex = (el: HTMLElement, deep = 0): number => {
if (deep > 10) return -1;
if (el.tagName === 'body') return -1;
if (el.parentElement.classList.contains('rel-link-peel')) {
return Array.from(el.parentElement.children).indexOf(el);
} else {
return getLineElementIndex(el.parentElement, deep + 1);
}
};
return (
<div>
<div className="c-my-graph-theme" style={{ height: '100vh' }} onMouseMove={onMouseMove}>
<RelationGraphReact
ref={graphRef}
options={graphOptions}
onNodeClick={onNodeClick}
onLineClick={onLineClick}
onCanvasClick={onCanvasClick}
onContextmenu={onContextmenu}
nodeSlot={MyNodeSlot}
graphPlugSlot={<div>
{isShowNodeMenuPanel || isShowLineMenuPanel && <div className="c-operation-mask-bg" onClick={hideAllPanel} />}
{isShowNodeMenuPanel && (
<div className="c-context-menu-panel" style={{ left: nodeMenuPanelPosition.x + 'px', top: nodeMenuPanelPosition.y + 'px' }}>
<div style={{ lineHeight: '25px', paddingLeft: '10px', color: '#888888', fontSize: '12px' }}>Node[{currentNode?.text}]Actions:</div>
<div className="c-node-menu-item" onClick={() => doActionForNode('Node Action 1')}>Action 1</div>
<div className="c-node-menu-item" onClick={() => doActionForNode('Node Action 2')}>Action 2</div>
<div className="c-node-menu-item" onClick={() => doActionForNode('Node Action 3')}>Action 3</div>
<div className="c-node-menu-item" onClick={() => doActionForNode('Node Action 4')}>Action 4</div>
</div>
)}
{isShowNodeTips && (
<div className="c-tips" style={{ left: nodeTipsPosition.x + 'px', top: nodeTipsPosition.y + 'px' }}>
<div>NodeId: {currentNode!.text}</div>
<div>Icon: {currentNode!.data?.myicon}</div>
</div>
)}
{isShowLineMenuPanel && (
<div className="c-context-menu-panel" style={{ left: lineMenuPosition.x + 'px', top: lineMenuPosition.y + 'px' }}>
<div style={{ lineHeight: '25px', paddingLeft: '10px', color: '#888888', fontSize: '12px' }}>Line[{currentLine?.text}]Actions:</div>
<div className="c-node-menu-item" onClick={() => doActionForLine('Line Action 1')}>Action 1</div>
<div className="c-node-menu-item" onClick={() => doActionForLine('Line Action 2')}>Action 2</div>
<div className="c-node-menu-item" onClick={() => doActionForLine('Line Action 3')}>Action 3</div>
<div className="c-node-menu-item" onClick={() => doActionForLine('Line Action 4')}>Action 4</div>
</div>
)}
{isShowLineTips && (
<div className="c-tips" style={{ left: lineTipsPosition.x + 'px', top: lineTipsPosition.y + 'px' }}>
<div>Text: {currentLine?.text}</div>
<div>From Node: {currentLink?.fromNode.text}</div>
<div>To Node: {currentLink?.toNode.text}</div>
</div>
)}
<div className="c-my-panel w-96 rounded-lg absolute left-20 top-20 z-20 p-4 bg-white border-solid border-2 border-black shadow-lg">
<div className="c-option-name" style={{ lineHeight: '25px' }}>
<div>This example mainly demonstrates:</div>
<div>Hovering over the "node" and "line" will display tooltips</div>
<div>Right-clicking on the "node" and "line" will display context menus</div>
<div>These operation-related panels can still be used after full screen</div>
</div>
</div>
</div>}
>
</RelationGraphReact>
</div>
</div>
);
};
const MyNodeSlot:React.FC<RGNodeSlotProps> = ({node}) => {
return <div>
<div>
<div className="c-my-node-icon">
<CircumIcon style={{ fontSize: '30px' }} name={node.data?.myicon} />
</div>
<div className="c-my-node-name">
{node.data?.myicon}
</div>
</div>
</div>
}
export default VisibleStuffInFullscreen;
visible-stuff-in-fullscreen.scss
scss
.c-my-graph-theme {
.rel-map {
background-color: #ffffff;
}
.rel-node {
background-color: rgba(241, 5, 221, 0.73);
border: 2px solid rgba(241, 5, 221, 0.3);
.c-node-text {
color: #ffffff;
}
}
.c-rg-line {
stroke: rgba(241, 5, 221);
}
.c-rg-line-text {
fill: rgba(241, 5, 221);
}
.rel-node-checked {
transition: background-color 0.2s ease, outline 0.2s ease, color 0.2s ease, -webkit-box-shadow
0.2s ease;
box-shadow: 0 0 0 8px rgba(241, 5, 221, 0.2);
}
.rel-toolbar {
background-color: rgba(241, 5, 221, 0.9);
color: #ffffff;
.c-current-zoom {
color: #ffffff;
}
}
.rel-node-flashing {
animation: none;
}
.c-rg-line-checked {
stroke: rgba(241, 5, 221);
}
.c-rg-line-text-checked {
stroke: rgba(241, 5, 221);
}
.c-rg-line-checked-bg {
stroke: rgba(241, 5, 221, 0.2);
}
.c-rg-line-text-checked {
stroke: rgba(241, 5, 221, 0.2);
}
.rel-graph-loading {
background-color: #ecf4f8;
}
}
.c-my-panel {
.c-option-name {
color: #666666;
font-size: 14px;
line-height: 40px;
padding-left: 10px;
padding-right: 10px;
}
}
.c-my-node-icon {
height: 80px;
line-height: 80px;
border-radius: 50%;
cursor: pointer;
display: flex;
place-items: center;
justify-content: center;
color: #ffffff;
}
.c-my-node-name {
color: rgba(241, 5, 221, 1);
font-size: 16px;
position: absolute;
width: 160px;
height: 25px;
line-height: 25px;
margin-top: 5px;
margin-left: -50%;
text-align: center;
background-color: rgba(241, 5, 221, 0.2);
border-radius: 10px;
}
.c-node-menu-item {
border-radius: 6px;
line-height: 30px;
padding-left: 10px;
cursor: pointer;
color: #444444;
font-size: 14px;
border-top: #efefef solid 1px;
}
.c-node-menu-item:hover {
background-color: rgba(241, 5, 221, 0.2);
}
.c-operation-mask-bg {
position: absolute;
background-color: rgba(51, 51, 51, 0.1);
opacity: 0.1;
z-index: 700;
height: 100%;
width: 100%;
left: 0px;
top: 0px;
}
.c-context-menu-panel {
z-index: 999;
padding: 10px;
background-color: #ffffff;
border: #eeeeee solid 1px;
box-shadow: 0px 0px 8px #cccccc;
position: absolute;
border-radius: 10px;
}
.c-tips {
z-index: 999;
padding: 10px;
width: 200px;
position: absolute;
border-radius: 10px;
background-color: #333333;
color: #ffffff;
border: #eeeeee solid 1px;
box-shadow: 0px 0px 8px #cccccc;
& > div {
line-height: 25px;
padding-left: 10px;
font-size: 12px;
}
}
📂 RGDemoComponents
MyDemoIcons.tsx
javascript
import React from 'react'
export const icons = [
{
name: 'airport_Sign_1',
svg: `<g>
<path d="M13.105,12.609v2.279a.119.119,0,0,0,.061.105l.622.355a.49.49,0,0,1,.242.365l.049.413a.243.243,0,0,1-.307.263l-1.641-.459a.486.486,0,0,0-.262,0l-1.641.459a.244.244,0,0,1-.308-.263l.05-.413a.487.487,0,0,1,.242-.365l.621-.355a.12.12,0,0,0,.062-.105V12.609a.122.122,0,0,0-.137-.121l-3.485.435A.242.242,0,0,1,7,12.682v-.624a.486.486,0,0,1,.316-.455l3.5-1.313a.122.122,0,0,0,.079-.114V9.435a4.756,4.756,0,0,1,.1-.981h0a1.015,1.015,0,0,1,1.2-.833,1.063,1.063,0,0,1,.819.9l.015.094a6.3,6.3,0,0,1,.077.976v.587a.121.121,0,0,0,.079.114l3.5,1.313a.486.486,0,0,1,.316.455v.624a.243.243,0,0,1-.274.241l-3.484-.435A.121.121,0,0,0,13.105,12.609Z"/>
<path d="M12,21.933A9.933,9.933,0,1,1,21.933,12,9.944,9.944,0,0,1,12,21.933ZM12,3.067A8.933,8.933,0,1,0,20.933,12,8.943,8.943,0,0,0,12,3.067Z"/>
</g>`,
},
{
name: 'alarm_off',
svg: `<g>
<path d="M4.564,3.856c-0.45-0.45-1.16,0.25-0.7,0.71l0.29,0.29l-0.5,0.5c-0.79,0.79-0.79,2.07-0.01,2.85
l0.65,0.67c-0.47,1.05-0.71,2.2-0.71,3.39c0,4.64,3.77,8.42,8.42,8.42c2.14,0,4.16-0.79,5.72-2.26c0.57,0.57,1.14,1.15,1.71,1.71
c0.46,0.46,1.16-0.25,0.71-0.7L4.564,3.856z M4.354,6.066l0.51-0.5c0.32,0.33,0.65,0.65,0.98,0.98c-0.43,0.43-0.78,0.9-1.06,1.4
l-0.43-0.44C3.964,7.116,3.964,6.466,4.354,6.066z M12.004,19.686c-4.09,0-7.42-3.33-7.42-7.42c0-1.89,0.69-3.65,1.96-5.02
l2.59,2.59c2.63,2.63,5.25,5.26,7.88,7.88C15.644,18.996,13.884,19.686,12.004,19.686z"/>
<path d="M20.354,8.216c0.78-0.79,0.78-2.07,0-2.86l-1.46-1.45c-0.78-0.79-2.06-0.79-2.85,0l-0.68,0.67
c-1.99-0.87-4.29-0.95-6.38-0.17c-0.6,0.23-0.34,1.19,0.27,0.97c2.76-1.05,5.89-0.46,7.99,1.64c2.11,2.11,2.7,5.24,1.65,8
c-0.22,0.6,0.74,0.86,0.97,0.26c0.79-2.09,0.7-4.4-0.17-6.39L20.354,8.216z M17.954,6.316c-0.5-0.5-1.05-0.92-1.65-1.27l0.44-0.43
c0.4-0.4,1.05-0.4,1.45,0l1.45,1.45c0.4,0.4,0.4,1.05,0,1.44l-0.43,0.44C18.864,7.356,18.444,6.806,17.954,6.316z"/>
</g>`,
},
{
name: 'alarm_on',
svg: `<g>
<path d="M20.352,8.213c0.38-0.38,0.59-0.89,0.59-1.42c0-0.54-0.21-1.05-0.59-1.43l-1.45-1.46
c-0.79-0.78-2.07-0.78-2.86,0l-0.67,0.66c-1.03-0.46-2.17-0.71-3.37-0.71c-1.21,0-2.35,0.25-3.39,0.71l-0.65-0.66
c-0.79-0.78-2.07-0.78-2.86,0l-1.45,1.46c-0.79,0.78-0.79,2.07-0.01,2.85l0.65,0.67c-0.45,1.04-0.71,2.18-0.71,3.39
c0,4.64,3.78,8.41,8.42,8.41c4.64,0,8.42-3.77,8.42-8.41c0-1.22-0.26-2.37-0.72-3.41L20.352,8.213z M4.362,6.062l1.45-1.45
c0.4-0.4,1.04-0.4,1.44,0l0.44,0.43c-1.19,0.71-2.2,1.71-2.91,2.9l-0.42-0.43C3.962,7.112,3.962,6.463,4.362,6.062z M12.002,19.682
c-4.09,0-7.42-3.32-7.42-7.41c0-4.1,3.33-7.42,7.42-7.42c4.09,0,7.42,3.32,7.42,7.42C19.422,16.362,16.092,19.682,12.002,19.682z
M19.222,7.932c-0.72-1.18-1.72-2.18-2.91-2.89l0.44-0.43c0.39-0.4,1.04-0.4,1.44,0l1.45,1.45c0.2,0.2,0.3,0.45,0.3,0.73
c0,0.27-0.1,0.52-0.3,0.72L19.222,7.932z"/>
<path d="M17.042,12.763h-5.04c-0.11,0-0.2-0.03-0.27-0.08c-0.03-0.02-0.05-0.04-0.07-0.05
c-0.1-0.08-0.16-0.2-0.16-0.36v-5.04c0-0.65,1-0.65,1,0v4.53h4.54C17.682,11.763,17.682,12.763,17.042,12.763z"/>
</g>`,
},
{
name: 'align_bottom',
svg: `<g>
<path d="M3.548,20.922c4.927,0,9.853,0,14.78,0c0.708,0,1.416,0,2.124,0c0.643,0,0.645-1,0-1
c-4.927,0-9.853,0-14.78,0c-0.708,0-1.416,0-2.124,0C2.905,19.922,2.904,20.922,3.548,20.922L3.548,20.922z"/>
<path d="M9,18.919H6.565c-1.379,0-2.5-1.121-2.5-2.5V5.578c0-1.379,1.121-2.5,2.5-2.5H9
c1.379,0,2.5,1.121,2.5,2.5v10.841C11.5,17.798,10.379,18.919,9,18.919z M6.565,4.078c-0.827,0-1.5,0.673-1.5,1.5v10.841
c0,0.827,0.673,1.5,1.5,1.5H9c0.827,0,1.5-0.673,1.5-1.5V5.578c0-0.827-0.673-1.5-1.5-1.5H6.565z"/>
<path d="M17.437,18.919h-2.435c-1.379,0-2.5-1.121-2.5-2.5V10.55c0-1.379,1.121-2.5,2.5-2.5h2.435
c1.379,0,2.5,1.121,2.5,2.5v5.869C19.937,17.798,18.816,18.919,17.437,18.919z M15.003,9.05c-0.827,0-1.5,0.673-1.5,1.5v5.869
c0,0.827,0.673,1.5,1.5,1.5h2.435c0.827,0,1.5-0.673,1.5-1.5V10.55c0-0.827-0.673-1.5-1.5-1.5H15.003z"/>
</g>`,
},
{
name: 'align_center-h',
svg: `<g>
<path d="M17.42,4.062H12.5v-0.51c0-0.65-1-0.65-1,0v0.51H6.58c-1.38,0-2.5,1.13-2.5,2.5v2.44
c0,1.38,1.12,2.5,2.5,2.5h4.92v1H9.06c-1.37,0-2.5,1.12-2.5,2.5v2.44c0,1.38,1.13,2.5,2.5,2.5h2.44v0.51c0,0.64,1,0.65,1,0v-0.51
h2.43c1.38,0,2.5-1.12,2.5-2.5v-2.44c0-1.38-1.12-2.5-2.5-2.5H12.5v-1h4.92c1.38,0,2.5-1.12,2.5-2.5v-2.44
C19.92,5.192,18.8,4.062,17.42,4.062z M11.5,18.942H9.06c-0.82,0-1.5-0.68-1.5-1.5v-2.44c0-0.83,0.68-1.5,1.5-1.5h2.44V18.942z
M11.5,10.502H6.58c-0.83,0-1.5-0.67-1.5-1.5v-2.44c0-0.82,0.67-1.5,1.5-1.5h4.92V10.502z M14.93,13.502c0.83,0,1.5,0.67,1.5,1.5
v2.44c0,0.82-0.67,1.5-1.5,1.5H12.5v-5.44H14.93z M18.92,9.002c0,0.83-0.67,1.5-1.5,1.5H12.5v-5.44h4.92c0.83,0,1.5,0.68,1.5,1.5
V9.002z"/>
</g>`,
},
{
name: 'align_center-v',
svg: `<g>
<path d="M20.446,11.5h-0.51V9.07c0-1.38-1.12-2.5-2.5-2.5h-2.43c-1.38,0-2.5,1.12-2.5,2.5v2.43h-1.01V6.58
c0-1.38-1.12-2.5-2.5-2.5h-2.43c-1.38,0-2.5,1.12-2.5,2.5v4.92h-0.52c-0.64,0-0.64,1,0,1h0.52v4.92c0,1.38,1.12,2.5,2.5,2.5h2.43
c1.38,0,2.5-1.12,2.5-2.5V12.5h1.01v2.43c0,1.38,1.12,2.5,2.5,2.5h2.43c1.38,0,2.5-1.12,2.5-2.5V12.5h0.51
C21.096,12.5,21.096,11.5,20.446,11.5z M10.496,17.42c0,0.83-0.67,1.5-1.5,1.5h-2.43c-0.83,0-1.5-0.67-1.5-1.5V12.5h5.43V17.42z
M10.496,11.5h-5.43V6.58c0-0.83,0.67-1.5,1.5-1.5h2.43c0.83,0,1.5,0.67,1.5,1.5V11.5z M18.936,14.93c0,0.83-0.67,1.5-1.5,1.5
h-2.43c-0.83,0-1.5-0.67-1.5-1.5V12.5h5.43V14.93z M18.936,11.5h-5.43V9.07c0-0.83,0.67-1.5,1.5-1.5h2.43c0.83,0,1.5,0.67,1.5,1.5
V11.5z"/>
</g>`,
},
{
name: 'align_left',
svg: `<g>
<path d="M3.078,3.548c0,4.927,0,9.853,0,14.78c0,0.708,0,1.416,0,2.124c0,0.643,1,0.645,1,0
c0-4.927,0-9.853,0-14.78c0-0.708,0-1.416,0-2.124C4.078,2.905,3.078,2.904,3.078,3.548L3.078,3.548z"/>
<path d="M18.422,11.5H7.582c-1.379,0-2.5-1.121-2.5-2.5V6.565c0-1.379,1.121-2.5,2.5-2.5h10.84
c1.379,0,2.5,1.121,2.5,2.5V9C20.922,10.378,19.801,11.5,18.422,11.5z M7.582,5.065c-0.827,0-1.5,0.673-1.5,1.5V9
c0,0.827,0.673,1.5,1.5,1.5h10.84c0.827,0,1.5-0.673,1.5-1.5V6.565c0-0.827-0.673-1.5-1.5-1.5H7.582z"/>
<path d="M13.451,19.938H7.582c-1.379,0-2.5-1.121-2.5-2.5v-2.436c0-1.379,1.121-2.5,2.5-2.5h5.869
c1.379,0,2.5,1.121,2.5,2.5v2.436C15.951,18.817,14.83,19.938,13.451,19.938z M7.582,13.502c-0.827,0-1.5,0.673-1.5,1.5v2.436
c0,0.827,0.673,1.5,1.5,1.5h5.869c0.827,0,1.5-0.673,1.5-1.5v-2.436c0-0.827-0.673-1.5-1.5-1.5H7.582z"/>
</g>`,
},
{
name: 'align_right',
svg: `<g>
<path d="M19.922,3.548c0,4.927,0,9.853,0,14.78c0,0.708,0,1.416,0,2.124c0,0.643,1,0.645,1,0
c0-4.927,0-9.853,0-14.78c0-0.708,0-1.416,0-2.124C20.922,2.905,19.922,2.904,19.922,3.548L19.922,3.548z"/>
<path d="M16.419,11.5H5.578c-1.379,0-2.5-1.121-2.5-2.5V6.565c0-1.379,1.121-2.5,2.5-2.5h10.841
c1.379,0,2.5,1.121,2.5,2.5V9C18.919,10.378,17.798,11.5,16.419,11.5z M5.578,5.065c-0.827,0-1.5,0.673-1.5,1.5V9
c0,0.827,0.673,1.5,1.5,1.5h10.841c0.827,0,1.5-0.673,1.5-1.5V6.565c0-0.827-0.673-1.5-1.5-1.5H5.578z"/>
<path d="M16.419,19.938H10.55c-1.379,0-2.5-1.121-2.5-2.5v-2.436c0-1.379,1.121-2.5,2.5-2.5h5.869
c1.379,0,2.5,1.121,2.5,2.5v2.436C18.919,18.817,17.798,19.938,16.419,19.938z M10.55,13.502c-0.827,0-1.5,0.673-1.5,1.5v2.436
c0,0.827,0.673,1.5,1.5,1.5h5.869c0.827,0,1.5-0.673,1.5-1.5v-2.436c0-0.827-0.673-1.5-1.5-1.5H10.55z"/>
</g>`,
},
{
name: 'align_top',
svg: `<g>
<path d="M3.548,4.078c4.927,0,9.853,0,14.78,0c0.708,0,1.416,0,2.124,0c0.643,0,0.645-1,0-1
c-4.927,0-9.853,0-14.78,0c-0.708,0-1.416,0-2.124,0C2.905,3.078,2.904,4.078,3.548,4.078L3.548,4.078z"/>
<path d="M9,20.922H6.565c-1.379,0-2.5-1.121-2.5-2.5V7.582c0-1.379,1.121-2.5,2.5-2.5H9
c1.379,0,2.5,1.121,2.5,2.5v10.84C11.5,19.801,10.379,20.922,9,20.922z M6.565,6.082c-0.827,0-1.5,0.673-1.5,1.5v10.84
c0,0.827,0.673,1.5,1.5,1.5H9c0.827,0,1.5-0.673,1.5-1.5V7.582c0-0.827-0.673-1.5-1.5-1.5H6.565z"/>
<path d="M17.438,15.951h-2.435c-1.379,0-2.5-1.121-2.5-2.5V7.582c0-1.379,1.121-2.5,2.5-2.5h2.435
c1.379,0,2.5,1.121,2.5,2.5v5.869C19.938,14.83,18.816,15.951,17.438,15.951z M15.003,6.082c-0.827,0-1.5,0.673-1.5,1.5v5.869
c0,0.827,0.673,1.5,1.5,1.5h2.435c0.827,0,1.5-0.673,1.5-1.5V7.582c0-0.827-0.673-1.5-1.5-1.5H15.003z"/>
</g>`,
},
{
name: 'apple',
svg: `<g>
<path d="M14.875,6.612l.05-.05a3.229,3.229,0,0,0,.95-2.58.976.976,0,0,0-.9-.9,3.229,3.229,0,0,0-2.58.95,3.279,3.279,0,0,0-.85,1.46,4.661,4.661,0,0,0-2.69-1.75.5.5,0,1,0-.22.98,3.664,3.664,0,0,1,2.59,2.2,5.577,5.577,0,0,0-1.9-.32,5.847,5.847,0,0,0-5.84,5.84c0,2.98,2.41,8.49,5.84,8.49a5.821,5.821,0,0,0,2.4-.52.683.683,0,0,1,.56,0,5.73,5.73,0,0,0,2.38.52c3.44,0,5.85-5.51,5.85-8.49A5.838,5.838,0,0,0,14.875,6.612Zm-1.77-1.87a2.3,2.3,0,0,1,1.78-.68c0,.06.01.12.01.17a2.326,2.326,0,0,1-.67,1.63,2.359,2.359,0,0,1-1.79.66A2.247,2.247,0,0,1,13.105,4.742Zm1.56,15.19a4.787,4.787,0,0,1-1.97-.43,1.718,1.718,0,0,0-.69-.15,1.649,1.649,0,0,0-.69.15,4.879,4.879,0,0,1-1.99.43c-2.58,0-4.84-4.67-4.84-7.49a4.855,4.855,0,0,1,6.83-4.42,1.56,1.56,0,0,0,.67.15h.02a1.683,1.683,0,0,0,.69-.15,4.777,4.777,0,0,1,1.97-.42,4.852,4.852,0,0,1,4.85,4.84C19.515,15.262,17.245,19.932,14.665,19.932Z"/>
</g>`,
},
{
name: 'at',
svg: ` <path d="M12.09,21.925c-1.368,0-2.647-0.249-3.838-0.748c-1.191-0.499-2.237-1.196-3.137-2.091
c-0.9-0.896-1.603-1.948-2.111-3.156c-0.508-1.208-0.76-2.518-0.76-3.93c0-1.341,0.231-2.609,0.694-3.805s1.129-2.252,1.999-3.17
C5.806,4.108,6.86,3.387,8.1,2.862s2.631-0.787,4.175-0.787c1.658,0,3.103,0.275,4.334,0.827c1.231,0.552,2.242,1.29,3.031,2.217
c0.789,0.926,1.358,1.961,1.707,3.103s0.474,2.305,0.378,3.487c-0.133,1.623-0.565,2.823-1.297,3.599
c-0.733,0.777-1.641,1.165-2.727,1.165c-0.873,0-1.594-0.203-2.163-0.608c-0.569-0.406-0.942-0.971-1.118-1.694l0.503,0.106
c-0.265,0.582-0.697,1.015-1.296,1.297c-0.601,0.282-1.227,0.423-1.88,0.423c-0.715,0-1.337-0.152-1.866-0.457
c-0.529-0.304-0.942-0.728-1.237-1.27c-0.296-0.542-0.444-1.167-0.444-1.873c0-0.741,0.152-1.382,0.456-1.925
C8.96,9.929,9.381,9.51,9.919,9.214c0.538-0.296,1.156-0.444,1.853-0.444c0.573,0,1.163,0.121,1.767,0.364
c0.604,0.243,1.065,0.677,1.383,1.304l-0.503,0.503v-1.48c0-0.221,0.179-0.4,0.4-0.4h0.232c0.221,0,0.4,0.179,0.4,0.4v3.517
c0,0.644,0.177,1.202,0.529,1.674c0.353,0.472,0.971,0.708,1.853,0.708c0.485,0,0.927-0.137,1.323-0.41
c0.397-0.273,0.719-0.666,0.967-1.178c0.247-0.511,0.392-1.129,0.437-1.853c0.079-1.315-0.06-2.506-0.417-3.573
c-0.357-1.067-0.905-1.987-1.642-2.759s-1.63-1.365-2.679-1.78c-1.05-0.415-2.232-0.622-3.547-0.622
c-1.411,0-2.665,0.247-3.758,0.741s-2.018,1.16-2.773,1.998C4.991,6.764,4.416,7.71,4.024,8.764
c-0.392,1.054-0.588,2.142-0.588,3.262c0,1.209,0.226,2.345,0.682,3.408c0.453,1.063,1.08,1.998,1.879,2.806
c0.799,0.807,1.727,1.438,2.786,1.892c1.059,0.454,2.188,0.682,3.388,0.682c0.89,0,1.784-0.126,2.679-0.377
c0.743-0.209,1.408-0.486,1.997-0.832c0.196-0.115,0.446-0.043,0.553,0.158l0.102,0.192c0.098,0.186,0.038,0.419-0.142,0.527
c-0.762,0.457-1.558,0.804-2.391,1.04C14.02,21.79,13.06,21.925,12.09,21.925z M11.799,14.859c0.741,0,1.337-0.216,1.786-0.649
c0.45-0.432,0.675-1.046,0.675-1.839c0-0.838-0.231-1.467-0.694-1.886c-0.463-0.419-1.052-0.629-1.767-0.629
c-0.794,0-1.408,0.216-1.839,0.649c-0.433,0.432-0.649,1.054-0.649,1.866c0,0.829,0.227,1.451,0.682,1.866
S11.048,14.859,11.799,14.859z"/>`,
},
{
name: 'avocado',
svg: `<g>
<path d="M11.982,21.939a7.759,7.759,0,0,1-.818-.044A7.58,7.58,0,0,1,6.1,9.6a3.578,3.578,0,0,0,.684-2.271,5.128,5.128,0,0,1,3.8-5.085,5.266,5.266,0,0,1,4.6.892,5.185,5.185,0,0,1,2.039,4.14A3.6,3.6,0,0,0,17.9,9.61a7.574,7.574,0,0,1-5.918,12.329Zm.009-18.877a4.538,4.538,0,0,0-1.158.152,4.126,4.126,0,0,0-3.055,4.07,4.532,4.532,0,0,1-.9,2.947,6.555,6.555,0,0,0-1.366,5.231A6.643,6.643,0,0,0,11.271,20.9a6.575,6.575,0,0,0,5.851-10.662,4.453,4.453,0,0,1-.9-2.9,4.214,4.214,0,0,0-4.228-4.273Z"/>
<ellipse cx="11.999" cy="14.856" rx="2.5" ry="3"/>
</g>`,
},
{
name: 'bacon',
svg: `<g>
<path d="M20.605,7.455l-3.49-3.49a.8.8,0,0,0-1.08-.04,1.833,1.833,0,0,1-.93.37,3.787,3.787,0,0,0-2.21,1.12,3.918,3.918,0,0,0-1.13,2.22,1.681,1.681,0,0,1-.53,1.1,1.753,1.753,0,0,1-1.1.53,4.026,4.026,0,0,0-3.35,3.35,1.677,1.677,0,0,1-.53,1.1,1.721,1.721,0,0,1-1.11.53,4.041,4.041,0,0,0-1.62.63,1.1,1.1,0,0,0-.14,1.66l3.5,3.5a.781.781,0,0,0,.55.23.822.822,0,0,0,.53-.19,1.759,1.759,0,0,1,.93-.38,3.8,3.8,0,0,0,2.21-1.12,3.948,3.948,0,0,0,1.14-2.22,1.71,1.71,0,0,1,.52-1.1,1.776,1.776,0,0,1,1.11-.53,4.03,4.03,0,0,0,3.34-3.35,1.66,1.66,0,0,1,.53-1.1,1.721,1.721,0,0,1,1.11-.53,4.018,4.018,0,0,0,1.61-.62,1.091,1.091,0,0,0,.14-1.67ZM4.1,15.7a3.15,3.15,0,0,1,1.24-.47,2.635,2.635,0,0,0,1.63-.81,2.587,2.587,0,0,0,.8-1.61,2.852,2.852,0,0,1,.86-1.7,2.9,2.9,0,0,1,1.7-.86,2.745,2.745,0,0,0,1.62-.8,2.687,2.687,0,0,0,.8-1.62,2.9,2.9,0,0,1,.86-1.7,2.814,2.814,0,0,1,1.69-.85,2.819,2.819,0,0,0,1.24-.48l1.3,1.3a2.362,2.362,0,0,1-.98.35,3.515,3.515,0,0,0-2.95,2.95,2.136,2.136,0,0,1-.67,1.36,2.159,2.159,0,0,1-1.36.67,3.44,3.44,0,0,0-1.96.99,3.351,3.351,0,0,0-.98,1.96,2.355,2.355,0,0,1-2.03,2.03,3.242,3.242,0,0,0-1.58.66L4.1,15.835ZM19.9,8.3a3.059,3.059,0,0,1-1.23.47,2.659,2.659,0,0,0-1.63.81,2.587,2.587,0,0,0-.8,1.61,2.852,2.852,0,0,1-.86,1.7,2.883,2.883,0,0,1-1.69.86,2.812,2.812,0,0,0-2.43,2.42,2.878,2.878,0,0,1-.86,1.7,2.8,2.8,0,0,1-1.68.85,2.808,2.808,0,0,0-1.25.48l-1.3-1.29a2.423,2.423,0,0,1,.97-.35,3.377,3.377,0,0,0,1.96-.99,3.44,3.44,0,0,0,.99-1.96,2.217,2.217,0,0,1,.66-1.36,2.292,2.292,0,0,1,1.36-.67,3.317,3.317,0,0,0,1.96-.99,3.351,3.351,0,0,0,.99-1.96,2.355,2.355,0,0,1,2.03-2.03,3.479,3.479,0,0,0,1.59-.66l1.23,1.23Z"/>
</g>`,
},
{
name: 'badge_dollar',
svg: `<g>
<path d="M12,21.953c-.895,0-1.545-.743-2.118-1.4a3.671,3.671,0,0,0-1.033-.946,3.8,3.8,0,0,0-1.466-.077,3.012,3.012,0,0,1-2.421-.494,3.014,3.014,0,0,1-.494-2.421,3.82,3.82,0,0,0-.077-1.466,3.671,3.671,0,0,0-.946-1.033c-.655-.573-1.4-1.222-1.4-2.118s.743-1.545,1.4-2.118a3.66,3.66,0,0,0,.946-1.034,3.815,3.815,0,0,0,.077-1.465,3.012,3.012,0,0,1,.494-2.421,3.015,3.015,0,0,1,2.422-.5A3.794,3.794,0,0,0,8.849,4.39a3.666,3.666,0,0,0,1.033-.945c.573-.655,1.223-1.4,2.118-1.4s1.545.742,2.118,1.4a3.66,3.66,0,0,0,1.034.946,3.807,3.807,0,0,0,1.464.077,3.018,3.018,0,0,1,2.422.5,3.012,3.012,0,0,1,.5,2.422,3.81,3.81,0,0,0,.077,1.464,3.66,3.66,0,0,0,.946,1.034c.655.573,1.4,1.223,1.4,2.118s-.743,1.545-1.4,2.118a3.666,3.666,0,0,0-.945,1.033,3.815,3.815,0,0,0-.077,1.465,3.012,3.012,0,0,1-.5,2.422,3.018,3.018,0,0,1-2.421.494,3.818,3.818,0,0,0-1.465.077,3.673,3.673,0,0,0-1.034.946C13.545,21.21,12.9,21.953,12,21.953ZM8.093,18.5a2.952,2.952,0,0,1,1.138.183,4.233,4.233,0,0,1,1.4,1.21c.454.52.924,1.057,1.365,1.057s.911-.537,1.366-1.057a4.225,4.225,0,0,1,1.4-1.21,4.365,4.365,0,0,1,1.908-.152c.672.041,1.366.085,1.653-.2s.245-.982.2-1.653a4.387,4.387,0,0,1,.152-1.909,4.241,4.241,0,0,1,1.209-1.4c.52-.454,1.057-.924,1.057-1.365s-.537-.911-1.057-1.365a4.234,4.234,0,0,1-1.209-1.4,4.381,4.381,0,0,1-.152-1.908c.041-.671.084-1.365-.2-1.653s-.982-.246-1.653-.2a4.384,4.384,0,0,1-1.908-.152,4.234,4.234,0,0,1-1.4-1.209c-.454-.52-.924-1.057-1.365-1.057s-.911.537-1.365,1.057a4.241,4.241,0,0,1-1.4,1.209,4.417,4.417,0,0,1-1.909.152c-.67-.041-1.364-.084-1.653.2s-.244.981-.2,1.652A4.37,4.37,0,0,1,5.314,9.23a4.226,4.226,0,0,1-1.21,1.4c-.52.454-1.057.925-1.057,1.365s.537.911,1.057,1.366a4.238,4.238,0,0,1,1.21,1.4,4.378,4.378,0,0,1,.152,1.91c-.041.672-.084,1.366.2,1.653s.98.245,1.653.2C7.578,18.519,7.838,18.5,8.093,18.5Z"/>
<path d="M14.5,13.5a2.006,2.006,0,0,1-2,2v1.01A.5.5,0,0,1,12,17a.492.492,0,0,1-.5-.49V15.5h-1.25a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5H12.5a1,1,0,1,0,0-2h-1a2,2,0,0,1,0-4V7.453A.473.473,0,0,1,12,7a.48.48,0,0,1,.5.45V8.5h1.25a.5.5,0,0,1,.5.5.508.508,0,0,1-.5.5H11.5a1,1,0,0,0,0,2h1A2,2,0,0,1,14.5,13.5Z"/>
</g>`,
},
{
name: 'bag_1',
svg: `<g>
<path d="M20.37,17.65a16.777,16.777,0,0,0-2.01-5.54,17.037,17.037,0,0,0-3.74-4.55l-.1-.08a.121.121,0,0,1-.02-.15l1.49-2.59a1.12,1.12,0,0,0,0-1.12,1.092,1.092,0,0,0-.97-.55H8.98a1.1,1.1,0,0,0-.97.55,1.12,1.12,0,0,0,0,1.12l1.5,2.59a.124.124,0,0,1-.03.15l-.09.08A17.327,17.327,0,0,0,3.63,17.65a4.051,4.051,0,0,0-.04.48,2.8,2.8,0,0,0,2.8,2.8H17.62a2.782,2.782,0,0,0,2.13-.99A2.834,2.834,0,0,0,20.37,17.65ZM8.88,4.24a.1.1,0,0,1,0-.12.106.106,0,0,1,.1-.05h6.04a.143.143,0,0,1,.11.05.163.163,0,0,1,0,.12l-1.59,2.8H10.46Zm5.09,4.08a16.436,16.436,0,0,1,5.42,9.5,1.817,1.817,0,0,1-.4,1.47,1.786,1.786,0,0,1-1.37.64H6.39a1.805,1.805,0,0,1-1.8-1.8,1.628,1.628,0,0,1,.03-.31,16.286,16.286,0,0,1,5.42-9.5l.32-.28h3.28Z"/>
</g>`,
},
{
name: 'bandage',
svg: `<g>
<path d="M17.435,7.5H6.565a4.5,4.5,0,0,0,0,9h10.87a4.5,4.5,0,0,0,0-9Zm-9.93,8h-.94a3.5,3.5,0,0,1,0-7h.94Zm8,0h-7v-7h7Zm1.93,0h-.93v-7h.93a3.5,3.5,0,0,1,0,7Z"/>
<circle cx="10.252" cy="10.501" r="0.625"/>
<circle cx="10.252" cy="13.501" r="0.625"/>
<circle cx="13.752" cy="10.5" r="0.625"/>
<circle cx="13.752" cy="13.5" r="0.625"/>
</g>`,
},
{
name: 'bank',
svg: `<g>
<path d="M19.505,17.943V10.362a1.491,1.491,0,0,0,1.39-1.12,1.468,1.468,0,0,0-.7-1.68l-7.45-4.3a1.521,1.521,0,0,0-1.49,0l-7.45,4.3a1.468,1.468,0,0,0-.7,1.68,1.487,1.487,0,0,0,1.45,1.12h.13v7.57h-.12a1.5,1.5,0,0,0,0,3h14.87a1.5,1.5,0,0,0,.07-2.989ZM4.555,9.362a.505.505,0,0,1-.25-.94l7.45-4.289a.474.474,0,0,1,.49,0L19.7,8.422a.5.5,0,0,1-.25.94Zm13.95,1v7.57H14.9v-7.57Zm-4.61,0v7.57h-3.61v-7.57Zm-4.61,0v7.57h-3.6v-7.57Zm10.15,9.57H4.565a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5h14.87a.5.5,0,0,1,.5.5A.5.5,0,0,1,19.435,19.932Z"/>
</g>`,
},
{
name: 'barcode',
svg: `<g>
<path d="M8.066,4.065H3.648a1.732,1.732,0,0,0-.963.189A1.368,1.368,0,0,0,2.066,5.48v4.585a.5.5,0,0,0,1,0V5.785a1.794,1.794,0,0,1,.014-.518c.077-.236.319-.2.514-.2H8.066a.5.5,0,0,0,0-1Z"/>
<path d="M2.063,13.937v4.418a1.733,1.733,0,0,0,.189.963,1.369,1.369,0,0,0,1.227.619H8.063a.5.5,0,0,0,0-1H3.783a1.831,1.831,0,0,1-.518-.014c-.236-.077-.2-.319-.2-.514V13.937a.5.5,0,0,0-1,0Z"/>
<path d="M15.934,19.935h4.418a1.732,1.732,0,0,0,.963-.189,1.368,1.368,0,0,0,.619-1.226V13.935a.5.5,0,0,0-1,0v4.28a1.794,1.794,0,0,1-.014.518c-.077.236-.319.2-.514.2H15.934a.5.5,0,0,0,0,1Z"/>
<path d="M21.937,10.063V5.645a1.733,1.733,0,0,0-.189-.963,1.369,1.369,0,0,0-1.227-.619H15.937a.5.5,0,0,0,0,1h4.28a1.831,1.831,0,0,1,.518.014c.236.077.2.319.2.514v4.472a.5.5,0,0,0,1,0Z"/>
<g>
<rect x="10.999" y="7.643" width="1" height="8.709" rx="0.5"/>
<rect x="14.249" y="7.643" width="1" height="8.709" rx="0.5"/>
<rect x="16.499" y="7.643" width="1" height="8.709" rx="0.5"/>
<rect x="6.499" y="7.643" width="1" height="8.709" rx="0.5"/>
<rect x="8.499" y="7.643" width="1.5" height="8.709" rx="0.75"/>
</g>
</g>`,
},
{
name: 'baseball',
svg: `<g>
<path d="M19.02,4.976A9.927,9.927,0,1,0,15.74,21.2,9.908,9.908,0,0,0,21.93,12,9.856,9.856,0,0,0,19.02,4.976Zm-13.34.71a8.9,8.9,0,0,1,6.04-2.61,8.461,8.461,0,0,1-.34,2.26l-.34-.19a.5.5,0,0,0-.5.86l.5.29a9.227,9.227,0,0,1-1.57,2.47l-.35-.35a.5.5,0,0,0-.7,0,.5.5,0,0,0,0,.71l.34.34a8.875,8.875,0,0,1-2.47,1.58L6,10.536a.5.5,0,0,0-.68-.19.505.505,0,0,0-.18.69l.2.34a8.2,8.2,0,0,1-2.26.35A8.827,8.827,0,0,1,5.68,5.686ZM11.74,17a.5.5,0,1,0-.5.87l.49.29a10.008,10.008,0,0,0-.45,2.74,8.9,8.9,0,0,1-8.18-8.17,9.378,9.378,0,0,0,2.75-.46l.29.5a.5.5,0,0,0,.43.25.475.475,0,0,0,.25-.07.493.493,0,0,0,.18-.68l-.21-.36a9.461,9.461,0,0,0,2.68-1.73l.36.36a.5.5,0,0,0,.35.15.508.508,0,0,0,.36-.15.513.513,0,0,0,0-.71l-.36-.36A9.665,9.665,0,0,0,11.9,6.8l.37.21a.475.475,0,0,0,.25.07.511.511,0,0,0,.44-.25.494.494,0,0,0-.19-.68l-.51-.29a9.789,9.789,0,0,0,.46-2.76,8.924,8.924,0,0,1,8.18,8.18,10.08,10.08,0,0,0-2.74.46l-.28-.49a.505.505,0,0,0-.69-.18.491.491,0,0,0-.18.68l.2.35a9.684,9.684,0,0,0-2.68,1.73l-.35-.35a.5.5,0,0,0-.71,0,.5.5,0,0,0,0,.7l.36.36a9.2,9.2,0,0,0-1.73,2.67Zm6.58,1.32a8.851,8.851,0,0,1-6.04,2.6,8.388,8.388,0,0,1,.34-2.25l.35.2a.451.451,0,0,0,.25.07.5.5,0,0,0,.43-.25.505.505,0,0,0-.18-.69l-.51-.29a8.7,8.7,0,0,1,1.57-2.47l.36.36a.5.5,0,0,0,.7-.71l-.36-.36a9.124,9.124,0,0,1,2.48-1.57l.3.52a.5.5,0,0,0,.43.25.451.451,0,0,0,.25-.07.505.505,0,0,0,.19-.68l-.21-.36a8.449,8.449,0,0,1,2.25-.34,8.992,8.992,0,0,1-.66,3.14A9.172,9.172,0,0,1,18.32,18.316Z"/>
</g>`,
},
{
name: 'basketball',
svg: `<g>
<path d="M19.02,4.971a9.941,9.941,0,1,0,0,14.05A9.941,9.941,0,0,0,19.02,4.971Zm-13.34.71a8.894,8.894,0,0,1,6.05-2.6,8.812,8.812,0,0,1-2.61,6.04,8.75,8.75,0,0,1-6.04,2.61A8.875,8.875,0,0,1,5.68,5.681ZM3.1,12.731a9.772,9.772,0,0,0,6.73-2.9,9.8,9.8,0,0,0,2.9-6.73,8.908,8.908,0,0,1,5.23,2.24L5.34,17.951A8.881,8.881,0,0,1,3.1,12.731Zm8.18,8.17a8.872,8.872,0,0,1-5.23-2.24L18.66,6.041a8.91,8.91,0,0,1,2.24,5.24,9.86,9.86,0,0,0-9.62,9.62Zm7.04-2.59a8.856,8.856,0,0,1-6.04,2.61,8.851,8.851,0,0,1,8.64-8.64A8.847,8.847,0,0,1,18.32,18.311Z"/>
</g>`,
},
{
name: 'battery_charging',
svg: `<g>
<path d="M17.505,18.5H4.065a2,2,0,0,1-2-2v-9a2,2,0,0,1,2-2h13.44a2,2,0,0,1,2,2v1h.93a1.5,1.5,0,0,1,1.5,1.5v4a1.5,1.5,0,0,1-1.5,1.5h-.93v1A2,2,0,0,1,17.505,18.5ZM4.065,6.5a1,1,0,0,0-1,1v9a1,1,0,0,0,1,1h13.44a1,1,0,0,0,1-1V15.25a.752.752,0,0,1,.75-.75h1.18a.5.5,0,0,0,.5-.5V10a.5.5,0,0,0-.5-.5h-1.18a.752.752,0,0,1-.75-.75V7.5a1,1,0,0,0-1-1Z"/>
<path d="M13.174,11.191H11.891a.11.11,0,0,1-.1-.15l.655-1.669a.251.251,0,0,0-.233-.342H9.274a.248.248,0,0,0-.231.157L8.292,11.04a.11.11,0,0,0,.1.151H9.829a.11.11,0,0,1,.1.144l-.776,3.53a.085.085,0,0,0,.139.081l3.947-3.561A.109.109,0,0,0,13.174,11.191Z"/>
</g>`,
},
{
name: 'battery_empty',
svg: `<g>
<path d="M17.505,18.5H4.065a2,2,0,0,1-2-2v-9a2,2,0,0,1,2-2h13.44a2,2,0,0,1,2,2v1h.93a1.5,1.5,0,0,1,1.5,1.5v4a1.5,1.5,0,0,1-1.5,1.5h-.93v1A2,2,0,0,1,17.505,18.5ZM4.065,6.5a1,1,0,0,0-1,1v9a1,1,0,0,0,1,1h13.44a1,1,0,0,0,1-1V15.25a.752.752,0,0,1,.75-.75h1.18a.5.5,0,0,0,.5-.5V10a.5.5,0,0,0-.5-.5h-1.18a.752.752,0,0,1-.75-.75V7.5a1,1,0,0,0-1-1Z"/>
</g>`,
},
{
name: 'battery_full',
svg: `<g>
<path d="M17.505,18.5H4.065a2,2,0,0,1-2-2v-9a2,2,0,0,1,2-2h13.44a2,2,0,0,1,2,2v1h.93a1.5,1.5,0,0,1,1.5,1.5v4a1.5,1.5,0,0,1-1.5,1.5h-.93v1A2,2,0,0,1,17.505,18.5ZM4.065,6.5a1,1,0,0,0-1,1v9a1,1,0,0,0,1,1h13.44a1,1,0,0,0,1-1V15.25a.751.751,0,0,1,.75-.75h1.18a.5.5,0,0,0,.5-.5V10a.5.5,0,0,0-.5-.5h-1.18a.751.751,0,0,1-.75-.75V7.5a1,1,0,0,0-1-1Z"/>
<rect x="4.063" y="7.499" width="13.437" height="8.998" rx="1"/>
</g>`,
},
{
name: 'beaker_1',
svg: `<g>
<path d="M19.447,18.645l-.51-1.52a17.9,17.9,0,0,0-4.02-6.66,1.493,1.493,0,0,1-.42-1.04V3.065H15a.5.5,0,0,0,0-1H9a.5.5,0,0,0,0,1h.5v6.36a1.484,1.484,0,0,1-.41,1.04,17.9,17.9,0,0,0-4.02,6.66l-.52,1.52a2.5,2.5,0,0,0,2.37,3.29h10.16a2.5,2.5,0,0,0,2.37-3.29Zm-9.64-7.49a2.477,2.477,0,0,0,.69-1.73V3.065h3v6.36a2.486,2.486,0,0,0,.7,1.73,16.907,16.907,0,0,1,3.01,4.38H6.787A16.943,16.943,0,0,1,9.807,11.155Zm8.49,9.16a1.507,1.507,0,0,1-1.22.62H6.917a1.5,1.5,0,0,1-1.42-1.98l.51-1.52q.15-.45.33-.9h11.32q.18.45.33.9l.51,1.52A1.5,1.5,0,0,1,18.3,20.315Z"/>
</g>`,
},
{
name: 'beer_mug_full',
svg: `<g>
<path d="M18.356,9.63h-.97V7.99a2.938,2.938,0,0,0,.5-1.65,1.77,1.77,0,0,0-.01-.23,2.905,2.905,0,0,0-1.64-2.38,2.956,2.956,0,0,0-2.4-.07,3.278,3.278,0,0,0-5.62,0,2.9,2.9,0,0,0-1.68-.17,2.866,2.866,0,0,0-2.16,1.75,2.948,2.948,0,0,0,.3,2.77V19.43a2.5,2.5,0,0,0,2.5,2.5h7.71a2.5,2.5,0,0,0,2.5-2.5v-.99l.91-.36a2.433,2.433,0,0,0,1.54-2.27V11.1A1.481,1.481,0,0,0,18.356,9.63Zm-1.97,9.8a1.5,1.5,0,0,1-1.5,1.5H7.176a1.5,1.5,0,0,1-1.5-1.5V11.34a2.858,2.858,0,0,0,1.93.74c.13,0,.25-.01.37-.02V18.4a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5V11.82a.17.17,0,0,0-.01-.07,2.939,2.939,0,0,0,1.57-2.46h4.42a2.86,2.86,0,0,0,1.43-.38Zm-.01-11.77a1.949,1.949,0,0,1-1.42.63h-4.61a.8.8,0,0,0-.79.61,1.231,1.231,0,0,0-.02.2,1.975,1.975,0,0,1-1.05,1.78,1.934,1.934,0,0,1-2.8-1.72,1.808,1.808,0,0,1,.17-.77.6.6,0,0,0-.13-.68,1.939,1.939,0,0,1-.41-2.11,1.868,1.868,0,0,1,1.4-1.13,2.531,2.531,0,0,1,.38-.03,1.909,1.909,0,0,1,.86.2.766.766,0,0,0,.59.06A.8.8,0,0,0,9,4.32a2.273,2.273,0,0,1,4.06,0,.751.751,0,0,0,.44.38.8.8,0,0,0,.59-.05,1.917,1.917,0,0,1,2.79,1.54A1.886,1.886,0,0,1,16.376,7.66Zm2.46,8.15a1.428,1.428,0,0,1-.92,1.34l-.52.22V10.63h.96a.478.478,0,0,1,.48.47Z"/>
<path d="M13.577,18.9a.5.5,0,0,1-.5-.5V11.82a.5.5,0,0,1,1,0V18.4A.5.5,0,0,1,13.577,18.9Z"/>
</g>`,
},
{
name: 'bell_off',
svg: `<g>
<path d="M9.624,5.208c-0.57,0.296-0.079,1.124,0.505,0.863c0.509-0.227,1.068-0.286,1.114-0.949
c0.029-0.41,0.014-0.811,0.476-0.994c0.517-0.205,0.984,0.2,1.036,0.71c0.047,0.461,0.035,0.821,0.548,1.025
c1.236,0.49,2.231,1.192,2.811,2.432c0.37,0.791,0.414,1.614,0.414,2.467c0,0.673,0,1.346,0,2.02c0,0.643,1,0.645,1,0
c0-1.646,0.186-3.393-0.521-4.929c-0.594-1.291-1.701-2.292-3.019-2.808c-0.034-0.013-0.155-0.069-0.227-0.092
c-0.002-0.021-0.004-0.044-0.005-0.058c-0.013-0.332-0.088-0.656-0.257-0.945c-0.312-0.534-0.894-0.878-1.514-0.874
c-0.684,0.004-1.315,0.423-1.589,1.046c-0.112,0.254-0.15,0.516-0.154,0.792c0,0.011-0.002,0.032-0.003,0.052
C10.24,4.965,9.808,5.112,9.624,5.208z"/>
<path d="M4.57,3.865c-0.46-0.46-1.17,0.25-0.71,0.7c1.06,1.06,2.12,2.13,3.18,3.19
c-0.37,0.75-0.57,1.59-0.57,2.44v4.54c-1.06,0.12-1.88,1.02-1.88,2.11v0.53c0,1.17,0.95,2.12,2.12,2.12h3.59
c0.13,0.81,0.85,1.43,1.7,1.43s1.56-0.62,1.7-1.43h3.59c0.41,0,0.81-0.12,1.15-0.34c0.33,0.33,0.66,0.66,0.99,0.99
c0.46,0.46,1.17-0.25,0.71-0.71L4.57,3.865z M17.7,18.415c-0.13,0.05-0.27,0.08-0.41,0.08H6.71c-0.62,0-1.12-0.5-1.12-1.12v-0.53
c0-0.62,0.5-1.12,1.12-1.12c0.42,0,0.76-0.34,0.76-0.77v-4.76c0-0.58,0.11-1.15,0.33-1.68L17.7,18.415z"/>
</g>`,
},
{
name: 'bell_on',
svg: `<path d="M18.79,15.343c-0.35-0.35-0.79-0.56-1.26-0.61v-4.54c0-1.48-0.58-2.87-1.62-3.91
c-0.62-0.6-1.36-1.06-2.15-1.33v-0.06c0-0.94-0.71-1.74-1.61-1.81c-0.49-0.04-0.98,0.12-1.34,0.45c-0.36,0.33-0.57,0.8-0.57,1.3
v0.12c-2.23,0.74-3.77,2.87-3.77,5.24v4.54c-1.06,0.12-1.88,1.02-1.88,2.11v0.53c0,1.17,0.95,2.12,2.12,2.12h3.59
c0.14,0.81,0.85,1.43,1.7,1.43s1.56-0.62,1.7-1.43h3.59c1.17,0,2.12-0.95,2.12-2.12v-0.53C19.41,16.273,19.19,15.743,18.79,15.343z
M18.41,17.373c0,0.62-0.5,1.12-1.12,1.12H6.71c-0.62,0-1.12-0.5-1.12-1.12v-0.53c0-0.62,0.5-1.12,1.12-1.12
c0.42,0,0.76-0.34,0.76-0.77v-4.76c0-1.99,1.33-3.77,3.24-4.34c0.32-0.09,0.53-0.38,0.53-0.71v-0.31c0-0.22,0.09-0.42,0.25-0.56
c0.14-0.13,0.32-0.2,0.51-0.2h0.07c0.38,0.03,0.69,0.4,0.69,0.82v0.25c0,0.33,0.21,0.62,0.53,0.71c0.71,0.22,1.38,0.61,1.91,1.14
c0.86,0.85,1.33,1.99,1.33,3.2v4.76c0,0.21,0.08,0.4,0.22,0.55c0.15,0.14,0.33,0.22,0.54,0.22c0.3,0,0.58,0.11,0.79,0.33
c0.22,0.21,0.33,0.49,0.33,0.79V17.373z"/>`,
},
{
name: 'bezier',
svg: `<path d="M20.435,8.005c0.83,0,1.5-0.67,1.5-1.5c0-0.82-0.67-1.5-1.5-1.5c-0.65,0-1.21,0.42-1.41,1h-5.53
v-0.25c0-0.41-0.33-0.75-0.75-0.75h-1.5c-0.41,0-0.75,0.34-0.75,0.75v0.25h-5.52c-0.21-0.58-0.77-1-1.41-1
c-0.83,0-1.5,0.68-1.5,1.5c0,0.83,0.67,1.5,1.5,1.5c0.65,0,1.21-0.42,1.41-1h3.79c-2.5,1.61-4.23,5-4.47,8.99h-0.28
c-0.42,0-0.75,0.34-0.75,0.75v1.5c0,0.41,0.33,0.75,0.75,0.75h1.5c0.41,0,0.75-0.34,0.75-0.75v-1.5c0-0.41-0.34-0.75-0.75-0.75
h-0.21c0.27-4.22,2.38-7.78,5.19-8.73c0.01,0.42,0.34,0.74,0.75,0.74h1.5c0.42,0,0.74-0.32,0.75-0.74
c2.81,0.95,4.93,4.51,5.21,8.73h-0.22c-0.42,0-0.75,0.34-0.75,0.75v1.5c0,0.41,0.33,0.75,0.75,0.75h1.5c0.41,0,0.75-0.34,0.75-0.75
v-1.5c0-0.41-0.34-0.75-0.75-0.75h-0.28c-0.24-3.99-1.97-7.38-4.46-8.99h3.78C19.225,7.585,19.785,8.005,20.435,8.005z
M20.435,6.005c0.27,0,0.5,0.23,0.5,0.5c0,0.28-0.23,0.5-0.5,0.5c-0.28,0-0.5-0.22-0.5-0.5C19.935,6.235,20.155,6.005,20.435,6.005
z M3.565,7.005c-0.28,0-0.5-0.22-0.5-0.5c0-0.27,0.22-0.5,0.5-0.5c0.27,0,0.5,0.23,0.5,0.5C4.065,6.785,3.835,7.005,3.565,7.005z
M5.265,17.995h-1v-1h1V17.995z M12.495,7.005h-1v-1h1V7.005z M18.735,16.995h1v1h-1V16.995z"/>`,
},
{
name: 'bitcoin',
svg: `<g>
<path d="M12,21.934A9.934,9.934,0,1,1,21.934,12,9.945,9.945,0,0,1,12,21.934ZM12,3.066A8.934,8.934,0,1,0,20.934,12,8.944,8.944,0,0,0,12,3.066Z"/>
<path d="M14.28,11.78A1.994,1.994,0,0,0,12.75,8.5H12.5V7.47A.489.489,0,0,0,12,7a.483.483,0,0,0-.5.47V8.5H10.25a1,1,0,0,0-1,1v5a1,1,0,0,0,1,1H11.5v1.03A.483.483,0,0,0,12,17a.489.489,0,0,0,.5-.47V15.5h.75a2.006,2.006,0,0,0,2-2A2.033,2.033,0,0,0,14.28,11.78ZM10.25,9.5h2.5a1,1,0,0,1,0,2h-2.5Zm3,5h-3v-2h3a1,1,0,0,1,0,2Z"/>
</g>`,
},
{
name: 'bluetooth',
svg: `<path d="M18.649,15.938l-6.82-3.94l6.82-3.94c0.32-0.18,0.5-0.51,0.5-0.87c0-0.36-0.18-0.68-0.5-0.86
l-6.62-3.83c-0.31-0.18-0.69-0.18-1,0c-0.31,0.18-0.5,0.51-0.5,0.87v7.77c-1.4-0.82-2.81-1.63-4.22-2.44
c-0.24-0.14-0.47-0.28-0.71-0.41c-0.56-0.33-1.06,0.54-0.51,0.86c1.65,0.95,3.3,1.9,4.95,2.85c-1.41,0.81-2.83,1.62-4.23,2.44
c-0.24,0.13-0.48,0.27-0.72,0.41c-0.55,0.32-0.05,1.18,0.51,0.86c1.65-0.95,3.28-1.89,4.93-2.85v7.77c0,0.37,0.19,0.69,0.5,0.87
c0.16,0.09,0.33,0.14,0.5,0.14c0.17,0,0.34-0.05,0.5-0.14l6.62-3.82c0.32-0.19,0.5-0.51,0.5-0.87
C19.149,16.447,18.969,16.127,18.649,15.938z M11.529,3.368l6.62,3.82l-6.62,3.83V3.368z M11.529,20.627v-7.64l6.62,3.82
L11.529,20.627z"/>`,
},
{
name: 'bookmark_check',
svg: `<g>
<path d="M17.601,21.938c-0.367,0-0.725-0.137-1.011-0.401l-4.25-3.903c-0.191-0.176-0.489-0.176-0.679-0.001
L7.41,21.537c-0.444,0.41-1.064,0.515-1.619,0.271c-0.554-0.243-0.898-0.769-0.898-1.374V4.562c0-1.378,1.122-2.5,2.5-2.5h9.215
c1.378,0,2.5,1.122,2.5,2.5v15.872c0,0.605-0.344,1.132-0.898,1.375C18.011,21.895,17.804,21.938,17.601,21.938z M11.999,16.502
c0.366,0,0.732,0.132,1.018,0.396l4.251,3.904c0.223,0.206,0.469,0.121,0.539,0.09c0.07-0.031,0.3-0.154,0.3-0.458V4.562
c0-0.827-0.673-1.5-1.5-1.5H7.393c-0.827,0-1.5,0.673-1.5,1.5v15.872c0,0.303,0.229,0.427,0.3,0.458
c0.07,0.031,0.316,0.116,0.54-0.09l4.251-3.905C11.268,16.634,11.633,16.502,11.999,16.502z"/>
<path d="M14.85,9.079c-0.11,0.12-0.23,0.23-0.35,0.35c-0.83,0.83-1.65,1.65-2.47,2.48
c-0.2,0.19-0.52,0.19-0.71,0c-0.47-0.48-0.94-0.95-1.42-1.42c-0.45-0.46,0.25-1.16,0.71-0.71c0.35,0.36,0.7,0.71,1.06,1.06
c0.83-0.82,1.65-1.65,2.48-2.47C14.6,7.909,15.31,8.619,14.85,9.079z"/>
</g>`,
},
{
name: 'bookmark_minus',
svg: `<g>
<path d="M17.601,21.938c-0.367,0-0.725-0.137-1.011-0.401l-4.25-3.903c-0.191-0.176-0.489-0.176-0.679-0.001
L7.41,21.537c-0.443,0.41-1.064,0.515-1.619,0.271c-0.554-0.243-0.898-0.769-0.898-1.374V4.562c0-1.378,1.122-2.5,2.5-2.5h9.215
c1.378,0,2.5,1.122,2.5,2.5v15.872c0,0.605-0.344,1.132-0.898,1.375C18.011,21.895,17.804,21.938,17.601,21.938z M11.999,16.502
c0.366,0,0.732,0.132,1.018,0.396l4.251,3.904c0.223,0.206,0.469,0.121,0.539,0.09s0.3-0.154,0.3-0.458V4.562
c0-0.827-0.673-1.5-1.5-1.5H7.393c-0.827,0-1.5,0.673-1.5,1.5v15.872c0,0.303,0.229,0.427,0.3,0.458
c0.07,0.031,0.316,0.116,0.54-0.09l4.251-3.905C11.268,16.634,11.633,16.502,11.999,16.502z"/>
<path d="M10,10.276c-0.645,0-0.643-1,0-1h4l0,0c0.645,0,0.643,1,0,1H10z"/>
</g>`,
},
{
name: 'bookmark_plus',
svg: `<g>
<path d="M17.601,21.938c-0.367,0-0.725-0.137-1.011-0.401l-4.25-3.903c-0.191-0.176-0.489-0.176-0.679-0.001
L7.41,21.537c-0.444,0.41-1.064,0.515-1.619,0.271c-0.554-0.243-0.898-0.769-0.898-1.374V4.562c0-1.378,1.122-2.5,2.5-2.5h9.215
c1.378,0,2.5,1.122,2.5,2.5v15.872c0,0.605-0.344,1.132-0.898,1.375C18.011,21.895,17.804,21.938,17.601,21.938z M11.999,16.502
c0.366,0,0.732,0.132,1.018,0.396l4.251,3.904c0.223,0.206,0.469,0.121,0.539,0.09s0.3-0.154,0.3-0.458V4.562
c0-0.827-0.673-1.5-1.5-1.5H7.393c-0.827,0-1.5,0.673-1.5,1.5v15.872c0,0.303,0.229,0.427,0.3,0.458
c0.07,0.031,0.316,0.116,0.54-0.09l4.251-3.905C11.268,16.634,11.633,16.502,11.999,16.502z"/>
<path d="M14,10.279h-1.5v1.5c0,0.64-1,0.64-1,0v-1.5H10c-0.64,0-0.64-1,0-1h1.5v-1.5c0-0.64,1-0.64,1,0v1.5
H14C14.64,9.279,14.64,10.279,14,10.279z"/>
</g>`,
},
{
name: 'bookmark_remove',
svg: `<g>
<path d="M17.601,21.938c-0.367,0-0.725-0.137-1.011-0.401l-4.25-3.903c-0.191-0.176-0.489-0.176-0.679-0.001
L7.41,21.537c-0.444,0.41-1.064,0.515-1.619,0.271c-0.554-0.243-0.898-0.769-0.898-1.374V4.562c0-1.378,1.122-2.5,2.5-2.5h9.215
c1.378,0,2.5,1.122,2.5,2.5v15.872c0,0.605-0.344,1.132-0.898,1.375C18.011,21.895,17.804,21.938,17.601,21.938z M11.999,16.502
c0.366,0,0.732,0.132,1.018,0.396l4.251,3.904c0.223,0.206,0.469,0.121,0.539,0.09s0.3-0.154,0.3-0.458V4.562
c0-0.827-0.673-1.5-1.5-1.5H7.393c-0.827,0-1.5,0.673-1.5,1.5v15.872c0,0.303,0.229,0.427,0.3,0.458s0.316,0.116,0.54-0.09
l4.251-3.905C11.268,16.634,11.633,16.502,11.999,16.502z"/>
<path d="M10.23,10.839c-0.18,0.19-0.2,0.52,0,0.71c0.2,0.18,0.51,0.2,0.71,0l1.061-1.059l1.059,1.059
c0.19,0.18,0.53,0.19,0.71,0c0.18-0.2,0.2-0.51,0-0.71l-1.061-1.061l1.061-1.059c0.18-0.19,0.2-0.53,0-0.71
c-0.2-0.18-0.51-0.2-0.71,0c-0.35,0.35-0.7,0.71-1.06,1.06l-1.06-1.06c-0.18-0.19-0.52-0.2-0.71,0c-0.18,0.2-0.19,0.51,0,0.71
c0.35,0.35,0.71,0.7,1.06,1.06L10.23,10.839z"/>
</g>`,
},
{
name: 'bookmark',
svg: `<path d="M17.601,21.938c-0.366,0-0.725-0.137-1.01-0.4l-4.251-3.904c-0.191-0.177-0.488-0.176-0.68-0.001
l-4.251,3.905c-0.444,0.41-1.063,0.515-1.618,0.271c-0.554-0.243-0.898-0.769-0.898-1.374V4.562c0-1.378,1.121-2.5,2.5-2.5h9.215
c1.379,0,2.5,1.122,2.5,2.5v15.872c0,0.605-0.345,1.131-0.898,1.374C18.011,21.895,17.805,21.938,17.601,21.938z M11.999,16.502
c0.366,0,0.732,0.132,1.018,0.396l4.251,3.904c0.225,0.206,0.471,0.121,0.54,0.09c0.07-0.031,0.3-0.155,0.3-0.458V4.562
c0-0.827-0.673-1.5-1.5-1.5H7.393c-0.827,0-1.5,0.673-1.5,1.5v15.872c0,0.303,0.229,0.427,0.3,0.458
c0.069,0.031,0.316,0.116,0.54-0.09l4.251-3.905C11.268,16.634,11.634,16.502,11.999,16.502z"/>`,
},
{
name: 'bowl_noodles',
svg: `<g>
<path d="M19.5,10.705a.948.948,0,0,0-.92-.67h-5.07V8.355l4.75.17h.02a.734.734,0,0,0,.73-.73.718.718,0,0,0-.75-.72l-4.75.17V5.405l4.78-.67a.723.723,0,0,0,.62-.72.487.487,0,0,0-.01-.12.716.716,0,0,0-.87-.58l-4.6.98a1.5,1.5,0,0,0-2.92.47v.15l-1.14.24a1.494,1.494,0,0,0-2.86.61v.01l-1.2.25a.267.267,0,0,0-.2.26v.04a.257.257,0,0,0,.29.21l1.11-.15V7.5l-1.25.04a.263.263,0,0,0-.25.26.256.256,0,0,0,.25.26l1.25.04v1.94H5.425a.963.963,0,0,0-.92.68,10.119,10.119,0,0,0,1.19,8.53l.61.92a1.233,1.233,0,0,0,1.05.57h9.3a1.228,1.228,0,0,0,1.04-.57l.61-.92A10.136,10.136,0,0,0,19.5,10.705Zm-7.99-5.94a.5.5,0,0,1,.5-.5.5.5,0,0,1,.5.5v5.24h-1Zm-2,1.2,1-.14v1.53l-1,.03Zm0,2.25,1,.03v1.79h-1Zm-2-2.45a.5.5,0,0,1,.5-.5.5.5,0,0,1,.5.5v4.24h-1Zm9.96,12.93-.6.93a.261.261,0,0,1-.21.11h-9.3a.236.236,0,0,1-.21-.11l-.61-.93a9.229,9.229,0,0,1-1.11-7.66l13.12-.03A9.122,9.122,0,0,1,17.465,18.7Z"/>
</g>`,
},
{
name: 'box_list',
svg: `<g>
<path d="M6.562,8.062h-2a1.5,1.5,0,0,1-1.5-1.5v-2a1.5,1.5,0,0,1,1.5-1.5h2a1.5,1.5,0,0,1,1.5,1.5v2A1.5,1.5,0,0,1,6.562,8.062Zm-2-4a.5.5,0,0,0-.5.5v2a.5.5,0,0,0,.5.5h2a.5.5,0,0,0,.5-.5v-2a.5.5,0,0,0-.5-.5Z"/>
<path d="M6.562,20.938h-2a1.5,1.5,0,0,1-1.5-1.5v-2a1.5,1.5,0,0,1,1.5-1.5h2a1.5,1.5,0,0,1,1.5,1.5v2A1.5,1.5,0,0,1,6.562,20.938Zm-2-4a.5.5,0,0,0-.5.5v2a.5.5,0,0,0,.5.5h2a.5.5,0,0,0,.5-.5v-2a.5.5,0,0,0-.5-.5Z"/>
<path d="M6.562,14.5h-2a1.5,1.5,0,0,1-1.5-1.5V11a1.5,1.5,0,0,1,1.5-1.5h2a1.5,1.5,0,0,1,1.5,1.5v2A1.5,1.5,0,0,1,6.562,14.5Zm-2-4a.5.5,0,0,0-.5.5v2a.5.5,0,0,0,.5.5h2a.5.5,0,0,0,.5-.5V11a.5.5,0,0,0-.5-.5Z"/>
<path d="M20.438,6.062h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.438,12.5h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.438,18.935h-9a.5.5,0,1,1,0-1h9a.5.5,0,0,1,0,1Z"/>
</g>`,
},
{
name: 'boxes',
svg: `<g>
<path d="M19.435,11.5h-2.72V4.56a1.5,1.5,0,0,0-1.5-1.5H8.785a1.5,1.5,0,0,0-1.5,1.5V11.5H4.565a1.5,1.5,0,0,0-1.5,1.5v6.44a1.5,1.5,0,0,0,1.5,1.5H11a1.468,1.468,0,0,0,1-.39,1.487,1.487,0,0,0,1,.39h6.44a1.5,1.5,0,0,0,1.5-1.5V13A1.5,1.5,0,0,0,19.435,11.5ZM11.5,19.44a.5.5,0,0,1-.5.5H4.565a.5.5,0,0,1-.5-.5V13a.5.5,0,0,1,.5-.5h1.97v2a.5.5,0,0,0,.5.5h1.5a.508.508,0,0,0,.5-.5v-2H11.5ZM8.285,11.5V4.56a.5.5,0,0,1,.5-.5h1.96v2a.5.5,0,0,0,.5.5h1.5a.5.5,0,0,0,.5-.5v-2h1.97a.5.5,0,0,1,.5.5V11.5Zm11.65,7.94a.508.508,0,0,1-.5.5H13a.508.508,0,0,1-.5-.5V12.5h2.47v2a.5.5,0,0,0,.5.5h1.5a.5.5,0,0,0,.5-.5v-2h1.97a.5.5,0,0,1,.5.5Z"/>
</g>`,
},
{
name: 'brightness_down',
svg: `<g>
<path d="M12,17.5A5.5,5.5,0,1,1,17.5,12,5.506,5.506,0,0,1,12,17.5Zm0-10A4.5,4.5,0,1,0,16.5,12,4.505,4.505,0,0,0,12,7.5Z"/>
<circle cx="12" cy="2.813" r="0.75"/>
<circle cx="12" cy="21.187" r="0.75"/>
<circle cx="21.187" cy="12" r="0.75"/>
<circle cx="2.813" cy="12" r="0.75"/>
<circle cx="18.496" cy="5.504" r="0.75"/>
<circle cx="5.504" cy="18.496" r="0.75"/>
<circle cx="18.496" cy="18.496" r="0.75"/>
<circle cx="5.504" cy="5.504" r="0.75"/>
</g>`,
},
{
name: 'brightness_up',
svg: `<g>
<path d="M12,17.5A5.5,5.5,0,1,1,17.5,12,5.506,5.506,0,0,1,12,17.5Zm0-10A4.5,4.5,0,1,0,16.5,12,4.505,4.505,0,0,0,12,7.5Z"/>
<circle cx="12" cy="3.063" r="1"/>
<circle cx="12" cy="20.937" r="1"/>
<circle cx="20.937" cy="12" r="1"/>
<circle cx="3.063" cy="12" r="1"/>
<circle cx="18.319" cy="5.681" r="1"/>
<circle cx="5.681" cy="18.319" r="1"/>
<circle cx="18.319" cy="18.319" r="1"/>
<circle cx="5.681" cy="5.681" r="1"/>
</g>`,
},
{
name: 'bullhorn',
svg: '<path d="M4.5,16.474c-0.849,-0.4 -1.436,-1.263 -1.436,-2.264l-0,-4.419c-0,-1.38 1.118,-2.5 2.5,-2.5l4.343,0c0.793,0 1.581,-0.132 2.33,-0.392c1.859,-0.705 3.792,-1.727 5.24,-2.922l0.869,-0.718c0.015,-0.013 0.032,-0.025 0.049,-0.036c0.666,-0.424 1.538,0.054 1.538,0.844l0,6.717c0.572,0.11 1.004,0.613 1.004,1.217c-0,0.604 -0.432,1.106 -1.004,1.216l-0,6.718c-0,0.787 -0.872,1.267 -1.538,0.843c-0.017,-0.011 -0.034,-0.023 -0.05,-0.036l-0.868,-0.718c-1.446,-1.195 -3.364,-2.214 -5.226,-2.891c-0.748,-0.261 -1.536,-0.394 -2.328,-0.394c-0.609,-0.029 -1.265,-0.029 -1.265,-0.029l0,2.147c0,1.148 -0.931,2.079 -2.079,2.079c-1.148,-0 -2.079,-0.931 -2.079,-2.079l0,-2.383Zm1,0.236l0,2.147c0,0.596 0.483,1.079 1.079,1.079c0.596,-0 1.079,-0.483 1.079,-1.079c0,-0 0,-2.147 0,-2.147l-2.094,-0c-0.031,-0 -0.053,-0 -0.064,-0Zm6,-0.882l0.142,0.04c2.37,0.664 4.575,1.817 6.473,3.385l0.818,0.677l-0,-15.859l-0.82,0.677c-1.897,1.566 -4.1,2.717 -6.468,3.379l-0.145,0.041l-0,7.66Zm-2.842,-0.118l1.842,0l-0,-7.419l-4.936,0c-0.829,0 -1.5,0.672 -1.5,1.5l-0,4.419c-0,0.829 0.671,1.5 1.499,1.5l3.095,0Z"/>',
},
{
name: 'burger',
svg: `<g>
<path d="M19.325,11.015a7.344,7.344,0,0,0-14.66,0,2.014,2.014,0,0,0-1.6,1.96v.16a2.016,2.016,0,0,0,1.64,1.97l.27,2.45a2.593,2.593,0,0,0,2.59,2.32h8.87a2.593,2.593,0,0,0,2.59-2.32l.27-2.45a2.016,2.016,0,0,0,1.64-1.97v-.16A2,2,0,0,0,19.325,11.015ZM12,5.125a6.365,6.365,0,0,1,6.34,5.85H5.665A6.362,6.362,0,0,1,12,5.125Zm6.04,12.32a1.6,1.6,0,0,1-1.6,1.43H7.565a1.6,1.6,0,0,1-1.6-1.43l-.26-2.31H18.3Zm1.9-4.31a1,1,0,0,1-1,1H5.065a1,1,0,0,1-1-1v-.16a1,1,0,0,1,1-1h13.87a1,1,0,0,1,1,1Z"/>
<circle cx="12" cy="6.622" r="0.5"/>
<circle cx="8.323" cy="8.323" r="0.5"/>
<circle cx="15.676" cy="8.323" r="0.5"/>
</g>`,
},
{
name: 'calculator_1',
svg: `<g>
<path d="M16.5,21.937h-9a2.5,2.5,0,0,1-2.5-2.5V4.563a2.5,2.5,0,0,1,2.5-2.5h9a2.5,2.5,0,0,1,2.5,2.5V19.437A2.5,2.5,0,0,1,16.5,21.937ZM7.5,3.063A1.5,1.5,0,0,0,6,4.563V19.437a1.5,1.5,0,0,0,1.5,1.5h9a1.5,1.5,0,0,0,1.5-1.5V4.563a1.5,1.5,0,0,0-1.5-1.5Z"/>
<path d="M14.5,9.757h-5A1.5,1.5,0,0,1,8,8.257V6.563a1.5,1.5,0,0,1,1.5-1.5h5a1.5,1.5,0,0,1,1.5,1.5V8.257A1.5,1.5,0,0,1,14.5,9.757Zm-5-3.694a.5.5,0,0,0-.5.5V8.257a.5.5,0,0,0,.5.5h5a.5.5,0,0,0,.5-.5V6.563a.5.5,0,0,0-.5-.5Z"/>
<g>
<circle cx="12" cy="11.508" r="0.75"/>
<circle cx="15.25" cy="11.508" r="0.75"/>
<circle cx="8.75" cy="11.508" r="0.75"/>
</g>
<g>
<circle cx="12" cy="14.848" r="0.75"/>
<circle cx="15.25" cy="14.848" r="0.75"/>
<circle cx="8.75" cy="14.848" r="0.75"/>
</g>
<g>
<circle cx="15.25" cy="18.187" r="0.75"/>
<path d="M12.248,18.687H8.5a.5.5,0,0,1,0-1h3.744a.5.5,0,1,1,0,1Z"/>
</g>
</g>`,
},
{
name: 'calculator_2',
svg: `<g>
<path d="M20.45,7.83h-2.8v2.81a.5.5,0,0,1-1,0V7.83H13.84a.5.5,0,0,1,0-1h2.81V4.02a.5.5,0,0,1,1,0V6.83h2.8A.5.5,0,0,1,20.45,7.83Z"/>
<path d="M3.545,7.83a.5.5,0,0,1,0-1h6.619a.5.5,0,0,1,0,1Z"/>
<g>
<path d="M13.836,16.05a.5.5,0,0,1,0-1h6.619a.5.5,0,0,1,0,1Z"/>
<path d="M13.836,20.191a.5.5,0,0,1,0-1h6.619a.5.5,0,0,1,0,1Z"/>
</g>
<path d="M9.55,19.61a.5.5,0,0,1-.71.7L6.86,18.33c-.66.65-1.33,1.32-1.99,1.98a.5.5,0,0,1-.71-.7l1.99-1.99L4.16,15.63a.5.5,0,0,1,.71-.7l.58.58,1.4,1.4c.67-.66,1.33-1.32,1.99-1.98a.5.5,0,0,1,.71.7L7.56,17.62Z"/>
</g>`,
},
{
name: 'calendar_date',
svg: `<g>
<path d="M18.435,4.955h-1.94v-1.41c0-0.26-0.23-0.51-0.5-0.5c-0.27,0.01-0.5,0.22-0.5,0.5v1.41h-7v-1.41
c0-0.26-0.23-0.51-0.5-0.5c-0.27,0.01-0.5,0.22-0.5,0.5v1.41h-1.93c-1.38,0-2.5,1.12-2.5,2.5v11c0,1.38,1.12,2.5,2.5,2.5h12.87
c1.38,0,2.5-1.12,2.5-2.5v-11C20.935,6.075,19.815,4.955,18.435,4.955z M19.935,18.455c0,0.83-0.67,1.5-1.5,1.5H5.565
c-0.83,0-1.5-0.67-1.5-1.5v-8.42h15.87V18.455z M19.935,9.035H4.065v-1.58c0-0.83,0.67-1.5,1.5-1.5h1.93v0.59
c0,0.26,0.23,0.51,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5v-0.59h7v0.59c0,0.26,0.23,0.51,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5v-0.59
h1.94c0.83,0,1.5,0.67,1.5,1.5V9.035z"/>
<path d="M11.492,17.173v-3.46c0-0.059-0.064-0.095-0.114-0.064l-0.638,0.392
c-0.1,0.061-0.228-0.01-0.228-0.128v-0.651c0-0.105,0.055-0.203,0.146-0.257l0.764-0.457c0.047-0.028,0.1-0.043,0.154-0.043h0.626
c0.166,0,0.3,0.134,0.3,0.3v4.367c0,0.166-0.134,0.3-0.3,0.3h-0.409C11.626,17.473,11.492,17.339,11.492,17.173z"/>
</g>`,
},
{
name: 'calendar',
svg: `<path d="M18.438,4.954H16.5c0-0.346,0-0.691,0-1.036c0-0.124,0-0.248,0-0.372c0-0.262-0.23-0.512-0.5-0.5
c-0.271,0.012-0.5,0.22-0.5,0.5c0,0.469,0,0.939,0,1.408h-7c0-0.346,0-0.691,0-1.036c0-0.124,0-0.248,0-0.372
c0-0.262-0.23-0.512-0.5-0.5c-0.271,0.012-0.5,0.22-0.5,0.5c0,0.469,0,0.939,0,1.408H5.562c-1.378,0-2.5,1.122-2.5,2.5v11
c0,1.379,1.122,2.5,2.5,2.5h12.875c1.379,0,2.5-1.121,2.5-2.5v-11C20.938,6.076,19.816,4.954,18.438,4.954z M5.562,5.954H7.5
c0,0.073,0,0.147,0,0.22c0,0.124,0,0.248,0,0.372c0,0.262,0.23,0.512,0.5,0.5c0.271-0.012,0.5-0.22,0.5-0.5c0-0.197,0-0.394,0-0.592
h7c0,0.073,0,0.147,0,0.22c0,0.124,0,0.248,0,0.372c0,0.262,0.23,0.512,0.5,0.5c0.271-0.012,0.5-0.22,0.5-0.5
c0-0.197,0-0.394,0-0.592h1.937c0.827,0,1.5,0.673,1.5,1.5v1.584H4.062V7.454C4.062,6.627,4.735,5.954,5.562,5.954z M18.438,19.954
H5.562c-0.827,0-1.5-0.673-1.5-1.5v-8.416h15.875v8.416C19.938,19.281,19.265,19.954,18.438,19.954z"/>`,
},
{
name: 'camera',
svg: `<g>
<path d="M20.435,19.925H3.565c-0.827,0-1.5-0.673-1.5-1.5v-9.14c0-0.827,0.673-1.5,1.5-1.5h2.657
c0.26,0,0.475-0.195,0.498-0.454l0.166-1.802C6.885,4.748,7.558,4.075,8.385,4.075h7.23c0.827,0,1.5,0.673,1.5,1.5l0.164,1.756
c0.023,0.259,0.238,0.454,0.498,0.454h2.657c0.827,0,1.5,0.673,1.5,1.5v9.14C21.935,19.252,21.262,19.925,20.435,19.925z
M3.565,8.785c-0.275,0-0.5,0.225-0.5,0.5v9.14c0,0.275,0.225,0.5,0.5,0.5h16.869c0.275,0,0.5-0.225,0.5-0.5v-9.14
c0-0.275-0.225-0.5-0.5-0.5h-2.657c-0.779,0-1.422-0.586-1.494-1.362l-0.166-1.802c-0.002-0.321-0.227-0.546-0.502-0.546h-7.23
c-0.275,0-0.5,0.225-0.5,0.5L7.717,7.423C7.645,8.199,7.002,8.785,6.223,8.785H3.565z"/>
<path d="M11.999,17.282c-2.206,0-4-1.794-4-4s1.794-4,4-4s4,1.794,4,4S14.205,17.282,11.999,17.282z
M11.999,10.282c-1.654,0-3,1.346-3,3s1.346,3,3,3s3-1.346,3-3S13.653,10.282,11.999,10.282z"/>
</g>`,
},
{
name: 'chat_1',
svg: `<path d="M3.316,19.938c-0.161,0-0.323-0.031-0.478-0.095c-0.468-0.193-0.772-0.645-0.773-1.152L2.06,16.974
L2.068,6.56c0.001-1.377,1.123-2.498,2.5-2.498H19.44c1.378,0,2.5,1.122,2.5,2.5v8.41c0,1.378-1.122,2.5-2.5,2.5H6.918
c-0.401,0-0.777,0.156-1.061,0.439l-1.659,1.659C3.959,19.811,3.641,19.938,3.316,19.938z M4.568,5.062
c-0.826,0-1.5,0.672-1.5,1.499L3.06,16.973l0.005,1.714c0,0.151,0.108,0.211,0.155,0.23c0.047,0.02,0.166,0.052,0.272-0.054
l1.659-1.659c0.472-0.472,1.1-0.732,1.768-0.732H19.44c0.827,0,1.5-0.673,1.5-1.5v-8.41c0-0.827-0.673-1.5-1.5-1.5H4.568z"/>`,
},
{
name: 'chat_2',
svg: `<path d="M11.998,19.937c-0.298,0-0.596-0.106-0.833-0.319l-1.883-1.686c-0.299-0.298-0.686-0.458-1.081-0.458
h-3.64c-0.668,0-1.296-0.26-1.769-0.733s-0.732-1.101-0.731-1.769l0.006-8.41c0.001-1.377,1.123-2.498,2.5-2.498h14.872
c1.378,0,2.5,1.122,2.5,2.5v8.41c0,1.378-1.122,2.5-2.5,2.5H15.79c-0.402,0-0.779,0.157-1.062,0.441l-1.894,1.702
C12.596,19.83,12.297,19.937,11.998,19.937z M4.567,5.063c-0.826,0-1.5,0.672-1.5,1.499l-0.006,8.41
c0,0.401,0.155,0.778,0.439,1.061c0.283,0.284,0.66,0.44,1.061,0.44h3.64c0.667,0,1.295,0.26,1.768,0.732l1.863,1.667
c0.095,0.085,0.239,0.085,0.333,0l1.874-1.682c0.445-0.448,1.09-0.716,1.75-0.716h3.649c0.827,0,1.5-0.673,1.5-1.5v-8.41
c0-0.827-0.673-1.5-1.5-1.5H4.567z"/>`,
},
{
name: 'circle_alert',
svg: `<g>
<g>
<path d="M12.5,8.999c0-0.643-1-0.645-1,0l0,0v4.018c0,0.643,1,0.645,1,0V8.999z"/>
<circle cx="12" cy="14.999" r="0.5"/>
</g>
<path d="M12,21.933c-5.478,0-9.934-4.456-9.934-9.933S6.522,2.067,12,2.067S21.934,6.523,21.934,12
S17.478,21.933,12,21.933z M12,3.067c-4.926,0-8.934,4.007-8.934,8.933S7.074,20.933,12,20.933s8.934-4.007,8.934-8.933
S16.926,3.067,12,3.067z"/>
</g>`,
},
{
name: 'circle_check',
svg: `<g>
<path d="M15.811,10.399c0.45-0.46-0.25-1.17-0.71-0.71l-3.56,3.56c-0.58-0.58-1.16-1.16-1.73-1.73
c-0.46-0.46-1.17,0.25-0.71,0.71l2.08,2.08c0.2,0.19,0.52,0.19,0.71,0L15.811,10.399z"/>
<path d="M12,21.933c-5.478,0-9.934-4.456-9.934-9.933S6.522,2.067,12,2.067S21.934,6.523,21.934,12
S17.478,21.933,12,21.933z M12,3.067c-4.926,0-8.934,4.007-8.934,8.933S7.074,20.933,12,20.933s8.934-4.007,8.934-8.933
S16.926,3.067,12,3.067z"/>
</g>`,
},
{
name: 'circle_chev_down',
svg: `<g>
<path d="M12.35,13.85c-0.18,0.2-0.52,0.19-0.7,0l-3-3c-0.2-0.19-0.19-0.5,0-0.7c0.18-0.2,0.52-0.19,0.7,0
L12,12.79l2.65-2.64c0.19-0.2,0.5-0.19,0.7,0c0.2,0.18,0.19,0.52,0,0.7L12.35,13.85z"/>
<path d="M21.933,12c0,5.477-4.456,9.933-9.933,9.933S2.067,17.477,2.067,12S6.523,2.067,12,2.067
S21.933,6.523,21.933,12z M3.067,12c0,4.926,4.007,8.933,8.933,8.933s8.933-4.007,8.933-8.933S16.926,3.067,12,3.067
S3.067,7.074,3.067,12z"/>
</g>`,
},
{
name: 'circle_chev_left',
svg: `<g>
<path d="M10.15,12.35c-0.2-0.18-0.19-0.52,0-0.7l3-3c0.19-0.2,0.5-0.19,0.7,0c0.2,0.18,0.19,0.52,0,0.7
L11.21,12l2.64,2.65c0.2,0.19,0.19,0.5,0,0.7c-0.18,0.2-0.52,0.19-0.7,0L10.15,12.35z"/>
<path d="M12,21.933c-5.477,0-9.933-4.456-9.933-9.933S6.523,2.067,12,2.067S21.933,6.523,21.933,12
S17.477,21.933,12,21.933z M12,3.067c-4.926,0-8.933,4.007-8.933,8.933S7.074,20.933,12,20.933s8.933-4.007,8.933-8.933
S16.926,3.067,12,3.067z"/>
</g>`,
},
{
name: 'circle_chev_right',
svg: `<g>
<path d="M13.85,11.65c0.2,0.18,0.19,0.52,0,0.7l-3,3c-0.19,0.2-0.5,0.19-0.7,0c-0.2-0.18-0.19-0.52,0-0.7
L12.79,12l-2.64-2.65c-0.2-0.19-0.19-0.5,0-0.7c0.18-0.2,0.52-0.19,0.7,0L13.85,11.65z"/>
<path d="M12,2.067c5.477,0,9.933,4.456,9.933,9.933S17.477,21.933,12,21.933S2.067,17.477,2.067,12
S6.523,2.067,12,2.067z M12,20.933c4.926,0,8.933-4.007,8.933-8.933S16.926,3.067,12,3.067S3.067,7.074,3.067,12
S7.074,20.933,12,20.933z"/>
</g>`,
},
{
name: 'circle_chev_up',
svg: `<g>
<path d="M11.65,10.15c0.18-0.2,0.52-0.19,0.7,0l3,3c0.2,0.19,0.19,0.5,0,0.7c-0.18,0.2-0.52,0.19-0.7,0
L12,11.21l-2.65,2.64c-0.19,0.2-0.5,0.19-0.7,0c-0.2-0.18-0.19-0.52,0-0.7L11.65,10.15z"/>
<path d="M2.067,12c0-5.477,4.456-9.933,9.933-9.933S21.933,6.523,21.933,12S17.477,21.933,12,21.933
S2.067,17.477,2.067,12z M20.933,12c0-4.926-4.007-8.933-8.933-8.933S3.067,7.074,3.067,12S7.074,20.933,12,20.933
S20.933,16.926,20.933,12z"/>
</g>`,
},
{
name: 'circle_info',
svg: `<g>
<g>
<path d="M11.5,15.001c0,0.643,1,0.645,1,0l0,0v-4.018c0-0.643-1-0.645-1,0V15.001z"/>
<circle cx="12" cy="9.001" r="0.5"/>
</g>
<path d="M12,2.067c5.478,0,9.934,4.456,9.934,9.933S17.478,21.933,12,21.933S2.066,17.477,2.066,12
S6.522,2.067,12,2.067z M12,20.933c4.926,0,8.934-4.007,8.934-8.933S16.926,3.067,12,3.067S3.066,7.074,3.066,12
S7.074,20.933,12,20.933z"/>
</g>`,
},
{
name: 'circle_list',
svg: `<g>
<path d="M20.438,6.062h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.438,12.5h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.438,18.935h-9a.5.5,0,1,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M5.562,8.062a2.5,2.5,0,1,1,2.5-2.5A2.5,2.5,0,0,1,5.562,8.062Zm0-4a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,5.562,4.062Z"/>
<path d="M5.562,14.5a2.5,2.5,0,1,1,2.5-2.5A2.5,2.5,0,0,1,5.562,14.5Zm0-4a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,5.562,10.5Z"/>
<path d="M5.562,20.938a2.5,2.5,0,1,1,2.5-2.5A2.5,2.5,0,0,1,5.562,20.938Zm0-4a1.5,1.5,0,1,0,1.5,1.5A1.5,1.5,0,0,0,5.562,16.938Z"/>
</g>`,
},
{
name: 'circle_minus',
svg: `<g>
<path d="M15,11.5L15,11.5c0.645,0,0.643,1,0,1c-0.248,0-4.248,0-6,0c-0.645,0-0.643-1,0-1H15z"/>
<path d="M12,21.933c-5.478,0-9.934-4.456-9.934-9.933S6.522,2.067,12,2.067S21.934,6.523,21.934,12
S17.478,21.933,12,21.933z M12,3.067c-4.926,0-8.934,4.007-8.934,8.933S7.074,20.933,12,20.933s8.934-4.007,8.934-8.933
S16.926,3.067,12,3.067z"/>
</g>`,
},
{
name: 'circle_more',
svg: `<g>
<circle cx="12" cy="12.001" r="1"/>
<circle cx="16" cy="12.001" r="1"/>
<circle cx="8" cy="12.001" r="1"/>
<path d="M12,21.933c-5.477,0-9.933-4.456-9.933-9.934c0-5.477,4.456-9.933,9.933-9.933
S21.933,6.523,21.933,12C21.933,17.477,17.477,21.933,12,21.933z M12,3.067c-4.926,0-8.933,4.007-8.933,8.933
S7.074,20.933,12,20.933s8.933-4.008,8.933-8.934S16.926,3.067,12,3.067z"/>
</g>`,
},
{
name: 'circle_plus',
svg: `<g>
<path d="M15.001,12.501h-2.5v2.5c0,0.64-1,0.64-1,0v-2.5h-2.5c-0.65,0-0.64-1,0-1h2.5v-2.5
c0-0.64,1-0.64,1,0v2.5h2.5C15.641,11.501,15.641,12.501,15.001,12.501z"/>
<path d="M12,21.933c-5.477,0-9.933-4.456-9.933-9.933S6.523,2.067,12,2.067S21.933,6.523,21.933,12
S17.477,21.933,12,21.933z M12,3.067c-4.926,0-8.933,4.007-8.933,8.933S7.074,20.933,12,20.933s8.933-4.007,8.933-8.933
S16.926,3.067,12,3.067z"/>
</g>`,
},
{
name: 'circle_question',
svg: `<g>
<g>
<path d="M11.41,12.462c0.08-0.241,0.193-0.445,0.341-0.598c0.148-0.153,0.327-0.291,0.535-0.417
c0.134-0.085,0.255-0.18,0.363-0.285c0.107-0.106,0.193-0.226,0.255-0.363c0.062-0.136,0.095-0.288,0.095-0.454
c0-0.199-0.047-0.372-0.142-0.518c-0.094-0.146-0.218-0.258-0.374-0.338c-0.156-0.079-0.329-0.119-0.519-0.119
c-0.173,0-0.337,0.036-0.495,0.107c-0.157,0.072-0.287,0.183-0.389,0.335c-0.046,0.067-0.083,0.141-0.111,0.224
c-0.072,0.21-0.261,0.359-0.483,0.359h0c-0.349,0-0.601-0.348-0.479-0.675c0.047-0.125,0.106-0.241,0.179-0.348
c0.188-0.279,0.437-0.491,0.748-0.634c0.311-0.143,0.654-0.216,1.031-0.216c0.411,0,0.773,0.077,1.082,0.231
c0.31,0.154,0.55,0.367,0.721,0.642c0.172,0.274,0.258,0.595,0.258,0.96c0,0.251-0.039,0.477-0.118,0.678s-0.19,0.379-0.334,0.536
c-0.144,0.157-0.318,0.296-0.52,0.417c-0.191,0.119-0.344,0.242-0.462,0.37s-0.207,0.278-0.257,0.454
c-0.015,0.053-0.031,0.164-0.045,0.283c-0.029,0.245-0.236,0.429-0.482,0.429h0c-0.286,0-0.512-0.246-0.484-0.531
C11.343,12.789,11.371,12.58,11.41,12.462z"/>
<circle cx="11.792" cy="14.894" r="0.587"/>
</g>
<path d="M12,21.933c-5.477,0-9.933-4.456-9.933-9.934c0-5.477,4.456-9.933,9.933-9.933
S21.933,6.523,21.933,12C21.933,17.477,17.477,21.933,12,21.933z M12,3.067c-4.926,0-8.933,4.007-8.933,8.933
S7.074,20.933,12,20.933s8.933-4.008,8.933-8.934S16.926,3.067,12,3.067z"/>
</g>`,
},
{
name: 'circle_remove',
svg: `<g>
<path d="M9.525,13.765c-0.46,0.46,0.25,1.17,0.71,0.71c0.59-0.59,1.175-1.18,1.765-1.76l1.765,1.76
c0.46,0.46,1.17-0.25,0.71-0.71c-0.59-0.58-1.18-1.175-1.76-1.765c0.41-0.42,0.82-0.825,1.23-1.235c0.18-0.18,0.35-0.36,0.53-0.53
c0.45-0.46-0.25-1.17-0.71-0.71L12,11.293l-1.765-1.768c-0.46-0.45-1.17,0.25-0.71,0.71L11.293,12L9.525,13.765z"/>
<path d="M12,21.933c-5.478,0-9.934-4.456-9.934-9.933S6.522,2.067,12,2.067S21.934,6.523,21.934,12
S17.478,21.933,12,21.933z M12,3.067c-4.926,0-8.934,4.007-8.934,8.933S7.074,20.933,12,20.933s8.934-4.007,8.934-8.933
S16.926,3.067,12,3.067z"/>
</g>`,
},
{
name: 'clock_1',
svg: `<g>
<path d="M12,21.933c-5.477,0-9.933-4.456-9.933-9.934c0-5.477,4.456-9.933,9.933-9.933
S21.933,6.523,21.933,12C21.933,17.477,17.477,21.933,12,21.933z M12,3.067c-4.926,0-8.933,4.007-8.933,8.933
S7.074,20.933,12,20.933s8.933-4.008,8.933-8.934S16.926,3.067,12,3.067z"/>
<path d="M11.497,6.001c0-0.65,1-0.64,1,0v4.8c1.13-1.13,2.26-2.27,3.39-3.4c0.46-0.45,1.17,0.25,0.71,0.71
l-4.26,4.25c-0.19,0.18-0.41,0.17-0.58,0.07c-0.01-0.02-0.02-0.02-0.03-0.02c-0.11-0.06-0.2-0.17-0.22-0.33L11.497,6.001z"/>
</g>`,
},
{
name: 'clock_2',
svg: `<g>
<path d="M12,21.933c-5.477,0-9.933-4.456-9.933-9.933c0-5.478,4.456-9.934,9.933-9.934
S21.933,6.523,21.933,12C21.933,17.477,17.477,21.933,12,21.933z M12,3.067c-4.926,0-8.933,4.008-8.933,8.934
S7.074,20.933,12,20.933s8.933-4.007,8.933-8.933S16.926,3.067,12,3.067z"/>
<path d="M17.997,12.501h-6c-0.15,0-0.26-0.05-0.34-0.14c-0.01,0-0.01-0.01-0.02-0.02
c-0.09-0.08-0.14-0.19-0.14-0.34v-6c0-0.65,1-0.64,1,0v5.5h5.5C18.647,11.501,18.647,12.501,17.997,12.501z"/>
</g>`,
},
{
name: 'cloud_drizzle',
svg: `<g>
<path d="M17.419,14.763H7.28c-1.479,0-2.866-0.795-3.618-2.075c-0.785-1.337-0.77-2.94,0.044-4.4
C4.368,7.1,5.666,6.366,7.067,6.366c0.002,0,0.004,0,0.006,0C7.648,4.431,9.454,3.064,11.5,3.064c2.072,0,3.85,1.341,4.426,3.297
c0.813,0.016,1.701,0.403,2.112,1.455c1.652,0.295,2.877,1.74,2.877,3.44C20.916,13.19,19.347,14.763,17.419,14.763z M7.115,7.371
c-1.098,0-2.052,0.536-2.536,1.403c-0.636,1.143-0.656,2.385-0.055,3.408c0.573,0.976,1.629,1.581,2.755,1.581h10.14
c1.376,0,2.497-1.125,2.497-2.507c0-1.263-0.946-2.328-2.201-2.479C17.45,8.744,17.232,8.56,17.153,8.31
c-0.286-0.919-1.028-0.982-1.452-0.94c-0.308,0.042-0.602-0.176-0.672-0.485c-0.371-1.66-1.823-2.82-3.529-2.82
c-1.701,0-3.189,1.204-3.539,2.863L7.87,7.357L7.354,7.379C7.274,7.374,7.194,7.371,7.115,7.371z M6.984,6.717
c0,0.002-0.001,0.005-0.002,0.007C6.983,6.722,6.983,6.719,6.984,6.717z M16.006,6.666L16.006,6.666L16.006,6.666z M7.343,6.376
c0.001,0,0.002,0,0.004,0C7.346,6.376,7.344,6.376,7.343,6.376z"/>
<path d="M5.502,16.266c0,0.292,0,0.584,0,0.876c0,0.041,0,0.083,0,0.124c0,0.128,0.056,0.263,0.146,0.354
c0.087,0.087,0.229,0.152,0.354,0.146c0.129-0.006,0.263-0.048,0.354-0.146c0.09-0.098,0.146-0.218,0.146-0.354
c0-0.292,0-0.584,0-0.876c0-0.041,0-0.083,0-0.124c0-0.128-0.056-0.263-0.146-0.354c-0.087-0.087-0.229-0.152-0.354-0.146
c-0.129,0.006-0.263,0.048-0.354,0.146C5.559,16.011,5.502,16.131,5.502,16.266L5.502,16.266z"/>
<path d="M11.501,16.266c0,0.292,0,0.584,0,0.876c0,0.041,0,0.083,0,0.124c0,0.128,0.056,0.263,0.146,0.354
c0.087,0.087,0.229,0.152,0.354,0.146c0.129-0.006,0.263-0.048,0.354-0.146c0.09-0.098,0.146-0.218,0.146-0.354
c0-0.292,0-0.584,0-0.876c0-0.041,0-0.083,0-0.124c0-0.128-0.056-0.263-0.146-0.354c-0.087-0.087-0.229-0.152-0.354-0.146
c-0.129,0.006-0.263,0.048-0.354,0.146C11.558,16.011,11.501,16.131,11.501,16.266L11.501,16.266z"/>
<path d="M8.502,19.436c0,0.292,0,0.584,0,0.876c0,0.041,0,0.083,0,0.124c0,0.128,0.056,0.263,0.146,0.354
c0.087,0.087,0.229,0.152,0.354,0.146c0.129-0.006,0.263-0.048,0.354-0.146c0.09-0.098,0.146-0.218,0.146-0.354
c0-0.292,0-0.584,0-0.876c0-0.041,0-0.083,0-0.124c0-0.128-0.056-0.263-0.146-0.354c-0.087-0.087-0.229-0.152-0.354-0.146
c-0.129,0.006-0.263,0.048-0.354,0.146C8.559,19.18,8.502,19.3,8.502,19.436L8.502,19.436z"/>
<path d="M14.502,19.436c0,0.292,0,0.584,0,0.876c0,0.041,0,0.083,0,0.124c0,0.128,0.056,0.263,0.146,0.354
c0.087,0.087,0.229,0.152,0.354,0.146c0.129-0.006,0.263-0.048,0.354-0.146c0.09-0.098,0.146-0.218,0.146-0.354
c0-0.292,0-0.584,0-0.876c0-0.041,0-0.083,0-0.124c0-0.128-0.056-0.263-0.146-0.354c-0.087-0.087-0.229-0.152-0.354-0.146
c-0.129,0.006-0.263,0.048-0.354,0.146C14.559,19.18,14.502,19.3,14.502,19.436L14.502,19.436z"/>
<path d="M17.502,16.266c0,0.292,0,0.584,0,0.876c0,0.041,0,0.083,0,0.124c0,0.128,0.056,0.263,0.146,0.354
c0.087,0.087,0.229,0.152,0.354,0.146c0.129-0.006,0.263-0.048,0.354-0.146c0.09-0.098,0.146-0.218,0.146-0.354
c0-0.292,0-0.584,0-0.876c0-0.041,0-0.083,0-0.124c0-0.128-0.056-0.263-0.146-0.354c-0.087-0.087-0.229-0.152-0.354-0.146
c-0.129,0.006-0.263,0.048-0.354,0.146C17.559,16.011,17.502,16.131,17.502,16.266L17.502,16.266z"/>
</g>`,
},
{
name: 'cloud_moon',
svg: `<path d="M21.801,12.134c-0.16-0.23-0.44-0.34-0.71-0.28c-0.68,0.15-1.38,0.13-2.07-0.04
c-1.91-0.47-3.34-2.18-3.48-4.14c-0.06-0.74,0.05-1.45,0.33-2.11c0.1-0.26,0.04-0.56-0.15-0.76s-0.48-0.26-0.73-0.16
c-1.81,0.71-3.13,2.34-3.47,4.24c-0.51-0.21-1.07-0.33-1.66-0.33c-1.89,0-3.56,1.26-4.11,3.04c-1.29,0.01-2.49,0.69-3.1,1.79
c-0.76,1.36-0.77,2.85-0.04,4.1c0.7,1.19,1.99,1.92,3.36,1.92h9.34c1.8,0,3.26-1.46,3.26-3.26c0-0.28-0.03-0.55-0.1-0.81
c1.38-0.35,2.6-1.23,3.35-2.45C21.971,12.654,21.961,12.364,21.801,12.134z M15.311,18.404h-9.34c-1.02,0-1.98-0.55-2.5-1.43
c-0.55-0.93-0.53-2.06,0.05-3.1c0.44-0.79,1.3-1.27,2.3-1.27c0.08,0,0.15,0,0.22,0.01l0.51-0.03l0.09-0.42
c0.32-1.51,1.67-2.61,3.22-2.61c1.55,0,2.87,1.06,3.21,2.57c0.07,0.28,0.32,0.48,0.6,0.48h0.06c0.38-0.04,1.04,0.02,1.3,0.83
c0.07,0.25,0.29,0.43,0.55,0.46c1.13,0.14,1.99,1.1,1.99,2.25C17.571,17.394,16.551,18.404,15.311,18.404z M18.071,14.414
c-0.47-0.76-1.24-1.31-2.16-1.48c-0.39-0.96-1.2-1.32-1.95-1.34c-0.27-0.89-0.8-1.65-1.51-2.17c0.15-1.47,1-2.78,2.25-3.53
c-0.15,0.6-0.21,1.22-0.16,1.85c0.18,2.39,1.92,4.47,4.24,5.04c0.59,0.14,1.18,0.2,1.76,0.16
C19.891,13.674,19.031,14.194,18.071,14.414z"/>`,
},
{
name: 'cloud_off',
svg: `<g>
<path d="M20.8,16.577c-.41.49-1.12-.22-.7-.71a3.585,3.585,0,0,0,.37-4.04A3.266,3.266,0,0,0,16.6,10.3a.5.5,0,0,1-.56-.23,5.391,5.391,0,0,0-5.3-3.1c-.64.04-.64-.96,0-1a6.346,6.346,0,0,1,5.99,3.26,4.255,4.255,0,0,1,4.6,2.1A4.579,4.579,0,0,1,20.8,16.577Z"/>
<path d="M4.941,4.237a.5.5,0,0,0-.7.7l2.69,2.69a6.273,6.273,0,0,0-1.94,3.78,3.342,3.342,0,0,0-2.65,4.6,3.518,3.518,0,0,0,3.48,2.05h11.53c.58.57,1.14,1.14,1.71,1.71a.5.5,0,0,0,.71-.71Zm.3,12.81a2.352,2.352,0,0,1-2.16-2.25,2.309,2.309,0,0,1,2.35-2.42.515.515,0,0,0,.5-.5,5.377,5.377,0,0,1,1.71-3.54q4.35,4.365,8.71,8.72Z"/>
</g>`,
},
{
name: 'cloud_on',
svg: '<path d="M21.917,13.484a4.381,4.381,0,0,0-5.19-4.26,6.281,6.281,0,0,0-11.75,2.19,3.237,3.237,0,0,0-2.66,2,3.433,3.433,0,0,0,.82,3.74c1.12,1.03,2.54.89,3.94.89h10.15a4.514,4.514,0,0,0,4.69-4.32Zm-4.65,3.56c-1.19.01-2.38,0-3.56,0-2.75,0-5.49.06-8.23,0a2.383,2.383,0,0,1-2.33-1.73,2.333,2.333,0,0,1,2.28-2.94.515.515,0,0,0,.5-.5,5.3,5.3,0,0,1,10.11-1.81.5.5,0,0,0,.56.23,3.366,3.366,0,0,1,4.33,3.32A3.489,3.489,0,0,1,17.267,17.044Z"/>',
},
{
name: 'cloud_rainbow',
svg: `<path d="M21.881,10.32c-0.942-1.893-2.697-3.301-4.773-3.749c-2.158-0.457-4.371,0.137-6.044,1.564
C10.507,7.824,9.867,7.659,9.19,7.659c-1.737,0-3.264,1.152-3.758,2.78c-1.179,0.009-2.277,0.631-2.834,1.637
c-0.695,1.244-0.704,2.606-0.037,3.74c0.64,1.088,1.82,1.765,3.072,1.765h8.54c1.646,0,2.981-1.335,2.981-2.99
c0-1.436-1.033-2.661-2.432-2.926c-0.009-0.027-0.027-0.064-0.046-0.091c0.192-0.11,0.393-0.174,0.631-0.219
c0.247-0.046,0.567-0.027,0.832,0.046c0.274,0.073,0.549,0.201,0.75,0.366c0.274,0.219,0.439,0.439,0.594,0.75
c0.11,0.229,0.43,0.283,0.631,0.165c0.219-0.128,0.274-0.402,0.165-0.622c-0.759-1.536-2.734-2.085-4.169-1.216
c-0.347-0.274-0.759-0.393-1.161-0.402c-0.009-0.018-0.018-0.046-0.027-0.064c0.96-0.859,2.295-1.244,3.566-0.951
c1.244,0.274,2.24,1.097,2.798,2.222c0.265,0.53,1.051,0.064,0.795-0.457c-0.677-1.353-1.957-2.368-3.438-2.67
c-1.463-0.293-2.953,0.082-4.115,0.988c-0.192-0.311-0.421-0.594-0.695-0.832c3.017-2.396,7.525-1.39,9.253,2.103
C21.351,11.308,22.137,10.841,21.881,10.32z M12.125,10.924c0.064,0.274,0.329,0.466,0.604,0.43
c0.347-0.027,0.951,0.018,1.189,0.768c0.064,0.229,0.265,0.393,0.503,0.421c1.033,0.128,1.82,1.006,1.82,2.048
c0,1.143-0.924,2.076-2.066,2.076h-8.54c-0.933,0-1.81-0.503-2.286-1.308c-0.494-0.85-0.485-1.884,0.046-2.835
c0.402-0.722,1.198-1.17,2.103-1.17c0.064,0,0.128,0.009,0.201,0.009l0.466-0.009l0.082-0.393C6.538,9.58,7.773,8.574,9.19,8.574
C10.607,8.574,11.814,9.543,12.125,10.924z"/>`,
},
{
name: 'cloud_sun',
svg: ` <path d="M21.449,10.332l-1.708-0.98l0.515-1.91c0.081-0.323-0.01-0.657-0.243-0.889
c-0.232-0.232-0.566-0.323-0.889-0.243l-1.9,0.515l-0.99-1.708c-0.172-0.293-0.465-0.465-0.798-0.465
c-0.334,0-0.627,0.172-0.798,0.465l-0.98,1.708l-1.91-0.515c-0.323-0.081-0.657,0.01-0.889,0.243
c-0.243,0.232-0.323,0.566-0.243,0.889l0.283,1.041c-0.303-0.071-0.616-0.101-0.93-0.101c-1.92,0-3.608,1.273-4.154,3.072
c-1.304,0.01-2.516,0.697-3.133,1.809c-0.768,1.375-0.778,2.88-0.04,4.133c0.707,1.203,2.011,1.951,3.396,1.951h9.439
c1.819,0,3.295-1.486,3.295-3.305c0-0.061,0-0.131-0.01-0.192l0.364,0.101c0.081,0.02,0.162,0.03,0.243,0.03
c0.243,0,0.475-0.091,0.647-0.273c0.232-0.232,0.323-0.566,0.243-0.889l-0.515-1.9l1.708-0.99c0.283-0.172,0.455-0.465,0.455-0.798
C21.904,10.797,21.732,10.504,21.449,10.332z M15.476,18.337H6.037c-1.031,0-2.001-0.556-2.527-1.445
c-0.556-0.95-0.536-2.082,0.051-3.133c0.445-0.798,1.324-1.294,2.335-1.294c0.071,0,0.141,0.01,0.212,0.01l0.515-0.02l0.091-0.435
c0.323-1.516,1.688-2.628,3.254-2.628s2.9,1.071,3.244,2.597c0.061,0.283,0.313,0.475,0.586,0.475h0.081
c0.384-0.04,1.051,0.02,1.314,0.849c0.071,0.253,0.293,0.435,0.556,0.465c1.142,0.142,2.011,1.112,2.011,2.264
C17.76,17.306,16.729,18.337,15.476,18.337z M13.677,10.464c0.273-0.728,0.98-1.213,1.759-1.213c1.041,0,1.88,0.839,1.88,1.88
c0,0.738-0.424,1.405-1.102,1.708c-0.04-0.01-0.091-0.02-0.131-0.03c-0.394-0.97-1.213-1.334-1.971-1.354
C14.011,11.101,13.859,10.767,13.677,10.464z M19.175,12.081c-0.354,0.202-0.536,0.627-0.424,1.031l0.485,1.819l-0.738-0.192
c-0.253-0.576-0.657-1.071-1.182-1.415c0.637-0.536,1.011-1.334,1.011-2.193c0-1.597-1.294-2.89-2.89-2.89
c-1.001,0-1.92,0.526-2.446,1.354c-0.283-0.273-0.586-0.495-0.93-0.677l-0.424-1.587l1.829,0.485
c0.394,0.111,0.829-0.071,1.031-0.425l0.94-1.637l0.95,1.637c0.202,0.354,0.627,0.536,1.031,0.425l1.819-0.485L18.75,9.15
c-0.111,0.404,0.061,0.829,0.424,1.041l1.627,0.94L19.175,12.081z"/>`,
},
{
name: 'cloud',
svg: `<path d="M18.074,18.495H6.709c-1.637,0-3.17-0.88-4.002-2.296c-0.869-1.479-0.851-3.255,0.051-4.871
c0.738-1.327,2.188-2.137,3.765-2.123c0.619-2.162,2.633-3.7,4.917-3.7c2.311,0,4.29,1.505,4.915,3.694
c0.911,0.004,1.917,0.43,2.37,1.624c1.84,0.312,3.208,1.915,3.208,3.802C21.932,16.759,20.201,18.495,18.074,18.495z M6.531,10.21
c-1.257,0-2.348,0.613-2.899,1.604c-0.724,1.299-0.747,2.713-0.062,3.879c0.653,1.111,1.856,1.802,3.14,1.802h11.364
c1.576,0,2.858-1.287,2.858-2.87c0-1.445-1.083-2.665-2.52-2.837c-0.274-0.035-0.5-0.226-0.58-0.485
c-0.333-1.068-1.199-1.144-1.69-1.093l-0.004,0.001c-0.315,0.033-0.612-0.183-0.684-0.496c-0.422-1.891-2.073-3.21-4.015-3.21
c-1.935,0-3.627,1.369-4.025,3.257c-0.063,0.288-0.328,0.481-0.612,0.458C6.711,10.213,6.62,10.21,6.531,10.21z M18.787,11.005
c0,0.001,0,0.002,0.001,0.003C18.787,11.007,18.787,11.006,18.787,11.005z M6.78,9.216c0,0,0.001,0,0.001,0
C6.781,9.216,6.78,9.216,6.78,9.216z"/>`,
},
{
name: 'coffee_bean',
svg: '<path d="M19.151,4.868a6.744,6.744,0,0,0-5.96-1.69,12.009,12.009,0,0,0-6.54,3.47,11.988,11.988,0,0,0-3.48,6.55,6.744,6.744,0,0,0,1.69,5.95,6.406,6.406,0,0,0,4.63,1.78,11.511,11.511,0,0,0,7.87-3.56C21.3,13.428,22.1,7.818,19.151,4.868Zm-14.99,8.48a11.041,11.041,0,0,1,3.19-5.99,10.976,10.976,0,0,1,5.99-3.19,8.016,8.016,0,0,1,1.18-.09,5.412,5.412,0,0,1,3.92,1.49.689.689,0,0,1,.11.13,6.542,6.542,0,0,1-2.12,1.23,7.666,7.666,0,0,0-2.96,1.93,7.666,7.666,0,0,0-1.93,2.96,6.589,6.589,0,0,1-1.71,2.63,6.7,6.7,0,0,1-2.63,1.71,7.478,7.478,0,0,0-2.35,1.36A6.18,6.18,0,0,1,4.161,13.348Zm12.49,3.31c-3.55,3.55-8.52,4.35-11.08,1.79a1.538,1.538,0,0,1-.12-.13,6.677,6.677,0,0,1,2.13-1.23,7.862,7.862,0,0,0,2.96-1.93,7.738,7.738,0,0,0,1.93-2.96,6.589,6.589,0,0,1,1.71-2.63,6.589,6.589,0,0,1,2.63-1.71,7.6,7.6,0,0,0,2.34-1.37C20.791,9.2,19.821,13.488,16.651,16.658Z"/>',
},
{
name: 'coffee_cup',
svg: '<path d="M18.79,5.67a1.5,1.5,0,0,0-1.16-1.46l-.38-1.38a1.081,1.081,0,0,0-1.05-.76H7.79a1.06,1.06,0,0,0-1.04.76L6.37,4.21A1.537,1.537,0,0,0,5.21,5.76,1.476,1.476,0,0,0,6.27,7.18l.1,2.77a.75.75,0,0,0-.42.22.768.768,0,0,0-.21.56l.24,5.76a.759.759,0,0,0,.65.72l.08,2.22a2.579,2.579,0,0,0,2.59,2.5h5.39a2.581,2.581,0,0,0,2.6-2.5l.08-2.22a.76.76,0,0,0,.64-.72l.24-5.76a.768.768,0,0,0-.21-.56.72.72,0,0,0-.41-.22l.1-2.77A1.534,1.534,0,0,0,18.79,5.67Zm-11-2.6,8.49.03.3,1.07H7.44Zm8.5,16.33a1.578,1.578,0,0,1-1.6,1.53H9.3A1.575,1.575,0,0,1,7.71,19.4l-.08-2.18h8.74ZM9.9,13.58a2.1,2.1,0,1,1,2.1,2.1A2.1,2.1,0,0,1,9.9,13.58Zm6.73-3.65H7.37l-.1-2.67h9.45Zm.66-3.67H6.71a.522.522,0,0,1-.5-.59.5.5,0,0,1,.5-.5H17.29a.528.528,0,0,1,.5.59A.5.5,0,0,1,17.29,6.26Z"/>',
},
{
name: 'coin_insert',
svg: `<g>
<path d="M21.44,17.7H17.77a7.484,7.484,0,0,0,1.78-4.86A7.55,7.55,0,1,0,6.23,17.7H2.56a.508.508,0,0,0-.5.5.5.5,0,0,0,.5.5H21.44a.5.5,0,0,0,.5-.5A.508.508,0,0,0,21.44,17.7Zm-5.03,0H7.62a6.546,6.546,0,1,1,8.78-.01Z"/>
<path d="M14,13.965a1.616,1.616,0,0,1-1.5,1.61v.65a.485.485,0,0,1-.5.48.491.491,0,0,1-.5-.48v-.64h-.81a.5.5,0,0,1-.5-.5.508.508,0,0,1,.5-.5h1.69a.617.617,0,0,0,.62-.62.623.623,0,0,0-.62-.62h-.75a1.618,1.618,0,0,1-.13-3.23v-.65a.491.491,0,0,1,.5-.48.485.485,0,0,1,.5.48v.64h.81a.5.5,0,0,1,0,1H11.63a.62.62,0,0,0,0,1.24h.75A1.626,1.626,0,0,1,14,13.965Z"/>
</g>`,
},
{
name: 'coins_1',
svg: '<path d="M18.46,10.905a3.469,3.469,0,0,0-2.47,1.04,2.3,2.3,0,0,0-.86-1.73,2.257,2.257,0,0,0,.86-1.78,2.288,2.288,0,0,0-2.28-2.29H4.35a2.284,2.284,0,0,0-1.43,4.07,2.282,2.282,0,0,0,0,3.57,2.277,2.277,0,0,0,1.43,4.06h9.36a2.29,2.29,0,0,0,2.06-1.29,3.434,3.434,0,0,0,2.69,1.3,3.475,3.475,0,1,0,0-6.95Zm-4.75,5.94H4.35a1.28,1.28,0,1,1,0-2.56h9.36a1.28,1.28,0,1,1,0,2.56Zm0-3.56H4.35a1.285,1.285,0,1,1,0-2.57h9.36a1.285,1.285,0,0,1,0,2.57Zm0-3.57H4.35a1.285,1.285,0,1,1,0-2.57h9.36a1.285,1.285,0,0,1,0,2.57Zm4.75,7.14a2.475,2.475,0,1,1,2.48-2.48A2.477,2.477,0,0,1,18.46,16.855Z"/>',
},
{
name: 'compass_1',
svg: `<g>
<path d="M4.661,20.937a1.589,1.589,0,0,1-1.117-.48,1.534,1.534,0,0,1-.4-1.59L6.58,8.937A3.8,3.8,0,0,1,8.938,6.58l9.93-3.439a1.537,1.537,0,0,1,1.589.4,1.532,1.532,0,0,1,.4,1.588L17.42,15.061a3.8,3.8,0,0,1-2.358,2.358l-9.93,3.439A1.442,1.442,0,0,1,4.661,20.937ZM19.337,4.062a.424.424,0,0,0-.142.024L9.267,7.525A2.8,2.8,0,0,0,7.525,9.266L4.087,19.2a.6.6,0,0,0,.717.718l9.93-3.439a2.8,2.8,0,0,0,1.741-1.741L19.913,4.8a.551.551,0,0,0-.163-.553A.609.609,0,0,0,19.337,4.062Z"/>
<circle cx="12" cy="12" r="1.563"/>
</g>`,
},
{
name: 'credit_card_1',
svg: `<g>
<path d="M19.44,5.14H4.56a2.5,2.5,0,0,0-2.5,2.5v8.72a2.5,2.5,0,0,0,2.5,2.5H19.44a2.5,2.5,0,0,0,2.5-2.5V7.64A2.5,2.5,0,0,0,19.44,5.14ZM3.06,7.64a1.5,1.5,0,0,1,1.5-1.5H19.44a1.5,1.5,0,0,1,1.5,1.5v.5H3.06Zm17.88,8.72a1.5,1.5,0,0,1-1.5,1.5H4.56a1.5,1.5,0,0,1-1.5-1.5V9.64H20.94Z"/>
<path d="M8.063,14.247h-3a.5.5,0,1,1,0-1h3a.5.5,0,1,1,0,1Z"/>
<path d="M18.934,14.25h-6.5a.5.5,0,1,1,0-1h6.5a.5.5,0,0,1,0,1Z"/>
</g>`,
},
{
name: 'credit_card_2',
svg: `<g>
<path d="M19.437,18.859H4.563a2.5,2.5,0,0,1-2.5-2.5V7.641a2.5,2.5,0,0,1,2.5-2.5H19.437a2.5,2.5,0,0,1,2.5,2.5v8.718A2.5,2.5,0,0,1,19.437,18.859ZM4.563,6.141a1.5,1.5,0,0,0-1.5,1.5v8.718a1.5,1.5,0,0,0,1.5,1.5H19.437a1.5,1.5,0,0,0,1.5-1.5V7.641a1.5,1.5,0,0,0-1.5-1.5Z"/>
<path d="M8.063,14.247h-3a.5.5,0,1,1,0-1h3a.5.5,0,1,1,0,1Z"/>
<path d="M18.934,14.249h-6.5a.5.5,0,0,1,0-1h6.5a.5.5,0,0,1,0,1Z"/>
<rect x="16.434" y="7.14" width="2" height="4" rx="0.5" transform="translate(8.293 26.574) rotate(-90)"/>
</g>`,
},
{
name: 'credit_card_off',
svg: `<g>
<path d="M21.94,7.64v9.3a.5.5,0,0,1-.5.5.5.5,0,0,1-.5-.5V9.64H13.49a.75.75,0,0,1,0-1.5h7.45v-.5a1.5,1.5,0,0,0-1.5-1.5H9.89a.5.5,0,0,1,0-1h9.55A2.5,2.5,0,0,1,21.94,7.64Z"/>
<path d="M8.064,14.246h-3a.5.5,0,0,1,0-1h3a.5.5,0,0,1,0,1Z"/>
<path d="M18.935,14.248h-.944a.5.5,0,0,1,0-1h.944a.5.5,0,0,1,0,1Z"/>
<path d="M18.76,18.05,4.01,3.3c-.46-.46-1.17.25-.71.7L4.44,5.14a2.5,2.5,0,0,0-2.38,2.5v8.72a2.5,2.5,0,0,0,2.5,2.5h13.6L20,20.7c.45.46,1.16-.25.7-.71ZM3.06,7.64a1.5,1.5,0,0,1,1.5-1.5h.88c.66.67,1.33,1.34,2,2H3.06Zm9.49,5.61h-.12a.5.5,0,0,0-.5.5.508.508,0,0,0,.5.5h1.12l3.61,3.61H4.56a1.5,1.5,0,0,1-1.5-1.5V9.64H8.94Z"/>
</g>`,
},
{
name: 'crop',
svg: '<path d="M5.624,6.623l-2.075,-0c-0.276,-0 -0.5,-0.224 -0.5,-0.5c-0,-0.276 0.224,-0.5 0.5,-0.5l2.075,-0l0,-2.073c0,-0.276 0.224,-0.5 0.5,-0.5c0.276,0 0.5,0.224 0.5,0.5l0,2.073l9.191,-0c1.414,-0 2.561,1.147 2.561,2.561l-0,9.193l2.075,0c0.276,0 0.5,0.224 0.5,0.5c0,0.276 -0.224,0.5 -0.5,0.5l-2.075,0l-0,2.073c-0,0.276 -0.224,0.5 -0.5,0.5c-0.276,-0 -0.5,-0.224 -0.5,-0.5l-0,-2.073l-9.191,0c-1.414,0 -2.561,-1.147 -2.561,-2.561l0,-9.193Zm11.752,10.754l-0,-9.193c-0,-0.862 -0.699,-1.561 -1.561,-1.561l-9.191,-0l0,9.193c0,0.862 0.699,1.561 1.561,1.561l9.191,0Z" />',
},
{
name: 'dark',
svg: `<path d="M12.773,21.088c-0.463,0-0.929-0.035-1.396-0.105c-3.882-0.586-7.007-3.708-7.601-7.594
c-0.68-4.45,1.901-8.7,6.136-10.106c0.432-0.142,0.883-0.038,1.21,0.281c0.343,0.335,0.468,0.831,0.325,1.293
c-0.266,0.863-0.385,1.765-0.353,2.68c0.095,2.801,1.768,5.429,4.365,6.857c1.203,0.661,2.417,0.986,3.711,0.993
c0.463,0.003,0.882,0.266,1.094,0.686c0.21,0.417,0.172,0.907-0.1,1.277l0,0C18.422,19.725,15.677,21.088,12.773,21.088z
M10.292,4.221c-0.021,0-0.043,0.004-0.064,0.011c-3.771,1.252-6.068,5.04-5.463,9.006c0.528,3.457,3.309,6.235,6.761,6.756
c3.026,0.458,6.032-0.782,7.833-3.236l0,0c0.07-0.096,0.032-0.196,0.013-0.235c-0.021-0.041-0.081-0.135-0.206-0.136
c-1.464-0.008-2.833-0.374-4.188-1.117c-2.904-1.598-4.775-4.548-4.883-7.699c-0.035-1.027,0.099-2.039,0.397-3.008
c0.037-0.123-0.012-0.227-0.069-0.284C10.384,4.24,10.34,4.221,10.292,4.221z"/>`,
},
{
name: 'database',
svg: '<path d="M12,2.06c-3.53,0-6.18,1.23-6.18,2.86V19.08c0,1.63,2.65,2.86,6.18,2.86s6.18-1.23,6.18-2.86V4.92C18.18,3.29,15.52,2.06,12,2.06Zm5.18,17.02c0,.78-1.97,1.86-5.18,1.86s-5.18-1.08-5.18-1.86V15.96A9.349,9.349,0,0,0,12,17.22a9.373,9.373,0,0,0,5.18-1.26Zm0-4.72c0,.78-1.97,1.86-5.18,1.86s-5.18-1.08-5.18-1.86V11.24A9.349,9.349,0,0,0,12,12.5a9.373,9.373,0,0,0,5.18-1.26Zm0-4.72c0,.78-1.97,1.86-5.18,1.86S6.82,10.42,6.82,9.64V6.52A9.349,9.349,0,0,0,12,7.78a9.373,9.373,0,0,0,5.18-1.26ZM12,6.78c-3.21,0-5.18-1.08-5.18-1.86S8.79,3.06,12,3.06s5.18,1.08,5.18,1.86S15.21,6.78,12,6.78Z"/>',
},
{
name: 'delivery_truck',
svg: `<g>
<path d="M21.47,11.185l-1.03-1.43a2.5,2.5,0,0,0-2.03-1.05H14.03V6.565a2.5,2.5,0,0,0-2.5-2.5H4.56a2.507,2.507,0,0,0-2.5,2.5v9.94a1.5,1.5,0,0,0,1.5,1.5H4.78a2.242,2.242,0,0,0,4.44,0h5.56a2.242,2.242,0,0,0,4.44,0h1.22a1.5,1.5,0,0,0,1.5-1.5v-3.87A2.508,2.508,0,0,0,21.47,11.185ZM7,18.935a1.25,1.25,0,1,1,1.25-1.25A1.25,1.25,0,0,1,7,18.935Zm6.03-1.93H9.15a2.257,2.257,0,0,0-4.3,0H3.56a.5.5,0,0,1-.5-.5V6.565a1.5,1.5,0,0,1,1.5-1.5h6.97a1.5,1.5,0,0,1,1.5,1.5ZM17,18.935a1.25,1.25,0,1,1,1.25-1.25A1.25,1.25,0,0,1,17,18.935Zm3.94-2.43a.5.5,0,0,1-.5.5H19.15a2.257,2.257,0,0,0-4.3,0h-.82v-7.3h4.38a1.516,1.516,0,0,1,1.22.63l1.03,1.43a1.527,1.527,0,0,1,.28.87Z"/>
<path d="M18.029,12.205h-2a.5.5,0,0,1,0-1h2a.5.5,0,0,1,0,1Z"/>
</g>`,
},
{
name: 'desktop_mouse_1',
svg: `<path d="M13.435,2.065h-2.87c-3.59,0-6.5,2.91-6.5,6.5v6.87c0,3.59,2.91,6.5,6.5,6.5h2.87
c3.59,0,6.5-2.91,6.5-6.5v-6.87C19.935,4.975,17.025,2.065,13.435,2.065z M5.065,8.565c0-3.03,2.47-5.5,5.5-5.5h0.94v6.44h-6.44
V8.565z M18.935,15.435c0,3.04-2.46,5.5-5.5,5.5h-2.87c-3.03,0-5.5-2.46-5.5-5.5v-4.93h13.87V15.435z M18.935,9.505h-6.43v-6.44
h0.93c3.04,0,5.5,2.47,5.5,5.5V9.505z"/>`,
},
{
name: 'desktop_mouse_2',
svg: `<g>
<path d="M13.437,21.938h-2.875c-3.584,0-6.5-2.916-6.5-6.5V8.562c0-3.584,2.916-6.5,6.5-6.5h2.875
c3.584,0,6.5,2.916,6.5,6.5v6.876C19.937,19.022,17.021,21.938,13.437,21.938z M10.563,3.062c-3.033,0-5.5,2.468-5.5,5.5v6.876
c0,3.032,2.467,5.5,5.5,5.5h2.875c3.033,0,5.5-2.468,5.5-5.5V8.562c0-3.032-2.467-5.5-5.5-5.5H10.563z"/>
<path d="M11.5,6.541c0,1.168,0,2.336,0,3.504c0,0.165,0,0.33,0,0.496c0,0.643,1,0.645,1,0
c0-1.168,0-2.336,0-3.504c0-0.165,0-0.33,0-0.496C12.5,5.898,11.5,5.897,11.5,6.541L11.5,6.541z"/>
</g>`,
},
{
name: 'desktop',
svg: `<path d="M18.435,3.065H5.565c-1.38,0-2.5,1.12-2.5,2.5v8.87c0,1.38,1.12,2.5,2.5,2.5h2.91l-0.37,3h-1.11
c-0.65,0-0.65,1,0,1h10.01c0.64,0,0.64-1,0-1h-1.11l-0.37-3h2.91c1.38,0,2.5-1.12,2.5-2.5v-8.87
C20.935,4.185,19.815,3.065,18.435,3.065z M9.105,19.935l0.38-3h5.03l0.37,3H9.105z M19.935,14.435c0,0.83-0.67,1.5-1.5,1.5H5.565
c-0.83,0-1.5-0.67-1.5-1.5v-0.5h15.87V14.435z M19.935,12.935H4.065v-7.37c0-0.83,0.67-1.5,1.5-1.5h12.87c0.83,0,1.5,0.67,1.5,1.5
V12.935z"/>`,
},
{
name: 'discount_1',
svg: `<g>
<path d="M21.953,12c0,0.591 -0.346,1.124 -0.839,1.61c-0.295,0.29 -0.639,0.568 -0.942,0.85c-0.242,0.225 -0.46,0.446 -0.562,0.692c-0.107,0.257 -0.114,0.576 -0.105,0.913c0.011,0.416 0.056,0.855 0.059,1.265c0.006,0.691 -0.123,1.304 -0.526,1.708c-0.404,0.403 -1.017,0.532 -1.708,0.526c-0.41,-0.004 -0.849,-0.048 -1.264,-0.059c-0.337,-0.009 -0.657,-0.002 -0.914,0.105c-0.246,0.102 -0.467,0.32 -0.692,0.562c-0.282,0.303 -0.56,0.647 -0.85,0.941c-0.486,0.494 -1.019,0.84 -1.61,0.84c-0.591,-0 -1.124,-0.346 -1.61,-0.84c-0.29,-0.294 -0.568,-0.638 -0.85,-0.941c-0.225,-0.242 -0.447,-0.46 -0.692,-0.562c-0.257,-0.107 -0.577,-0.114 -0.913,-0.105c-0.416,0.011 -0.855,0.055 -1.265,0.059c-0.691,0.006 -1.305,-0.123 -1.708,-0.526c-0.404,-0.404 -0.532,-1.017 -0.526,-1.708c0.003,-0.41 0.048,-0.849 0.059,-1.265c0.009,-0.337 0.002,-0.656 -0.105,-0.914c-0.102,-0.245 -0.32,-0.466 -0.562,-0.691c-0.302,-0.282 -0.646,-0.56 -0.941,-0.85c-0.493,-0.486 -0.84,-1.019 -0.84,-1.61c0,-0.591 0.347,-1.124 0.84,-1.61c0.295,-0.29 0.639,-0.568 0.941,-0.85c0.242,-0.225 0.46,-0.446 0.562,-0.691c0.107,-0.258 0.114,-0.577 0.105,-0.914c-0.011,-0.416 -0.056,-0.855 -0.059,-1.265c-0.006,-0.691 0.122,-1.304 0.526,-1.708c0.403,-0.403 1.017,-0.532 1.708,-0.526c0.41,0.004 0.849,0.048 1.265,0.059c0.336,0.009 0.656,0.002 0.913,-0.105c0.245,-0.102 0.467,-0.32 0.692,-0.562c0.282,-0.303 0.56,-0.647 0.85,-0.941c0.486,-0.494 1.019,-0.84 1.61,-0.84c0.591,0 1.124,0.346 1.61,0.84c0.29,0.294 0.568,0.638 0.85,0.941c0.225,0.242 0.446,0.46 0.692,0.562c0.257,0.107 0.577,0.114 0.914,0.105c0.415,-0.011 0.854,-0.055 1.264,-0.059c0.691,-0.006 1.304,0.123 1.708,0.526c0.403,0.404 0.532,1.017 0.526,1.708c-0.003,0.41 -0.048,0.849 -0.059,1.265c-0.009,0.337 -0.002,0.656 0.105,0.913c0.102,0.246 0.32,0.467 0.562,0.692c0.303,0.282 0.647,0.56 0.942,0.85c0.493,0.486 0.839,1.019 0.839,1.61Zm-1,0c0,-0.188 -0.088,-0.355 -0.206,-0.518c-0.164,-0.226 -0.388,-0.437 -0.622,-0.646c-0.583,-0.521 -1.205,-1.04 -1.439,-1.604c-0.242,-0.585 -0.177,-1.399 -0.136,-2.178c0.017,-0.315 0.027,-0.622 -0.015,-0.895c-0.029,-0.191 -0.08,-0.365 -0.204,-0.489c-0.125,-0.125 -0.299,-0.176 -0.49,-0.205c-0.273,-0.042 -0.58,-0.032 -0.895,-0.015c-0.779,0.041 -1.593,0.106 -2.177,-0.136c-0.565,-0.234 -1.084,-0.855 -1.605,-1.439c-0.209,-0.234 -0.42,-0.458 -0.646,-0.622c-0.163,-0.118 -0.33,-0.206 -0.518,-0.206c-0.187,0 -0.355,0.088 -0.518,0.206c-0.226,0.164 -0.437,0.388 -0.646,0.622c-0.521,0.584 -1.04,1.205 -1.605,1.439c-0.584,0.242 -1.398,0.177 -2.177,0.136c-0.315,-0.017 -0.622,-0.027 -0.895,0.015c-0.192,0.029 -0.365,0.08 -0.49,0.205c-0.125,0.124 -0.175,0.298 -0.204,0.489c-0.042,0.273 -0.032,0.58 -0.016,0.895c0.042,0.779 0.107,1.593 -0.135,2.177c-0.234,0.565 -0.855,1.084 -1.439,1.605c-0.234,0.209 -0.458,0.42 -0.622,0.646c-0.118,0.163 -0.206,0.33 -0.206,0.518c0,0.188 0.088,0.355 0.206,0.518c0.164,0.226 0.388,0.437 0.622,0.646c0.584,0.521 1.205,1.04 1.439,1.605c0.242,0.584 0.177,1.398 0.135,2.177c-0.016,0.315 -0.026,0.622 0.016,0.895c0.029,0.191 0.079,0.365 0.204,0.489c0.125,0.125 0.298,0.176 0.49,0.205c0.273,0.042 0.58,0.032 0.895,0.015c0.779,-0.041 1.593,-0.106 2.177,0.136c0.565,0.234 1.084,0.855 1.605,1.439c0.209,0.234 0.42,0.458 0.646,0.622c0.163,0.118 0.331,0.206 0.518,0.206c0.188,-0 0.355,-0.088 0.518,-0.206c0.226,-0.164 0.437,-0.388 0.646,-0.622c0.521,-0.584 1.04,-1.205 1.605,-1.439c0.584,-0.242 1.398,-0.177 2.177,-0.136c0.315,0.017 0.622,0.027 0.895,-0.015c0.191,-0.029 0.365,-0.08 0.49,-0.205c0.124,-0.124 0.175,-0.298 0.204,-0.489c0.042,-0.273 0.032,-0.58 0.015,-0.895c-0.041,-0.779 -0.106,-1.593 0.136,-2.178c0.234,-0.564 0.856,-1.083 1.439,-1.604c0.234,-0.209 0.458,-0.42 0.622,-0.646c0.118,-0.163 0.206,-0.33 0.206,-0.518Zm-10.531,-1.762c-0.396,0.396 -1.039,0.396 -1.435,-0c-0.396,-0.396 -0.396,-1.04 -0,-1.436c0.396,-0.396 1.039,-0.396 1.435,0c0.396,0.396 0.396,1.04 0,1.436Zm4.471,-1.838c0.195,-0.195 0.512,-0.195 0.707,0c0.195,0.195 0.195,0.512 -0,0.707l-6.493,6.493c-0.195,0.195 -0.512,0.195 -0.707,0c-0.195,-0.195 -0.195,-0.512 -0,-0.707l6.493,-6.493Zm-1.315,5.363c0.396,-0.396 1.039,-0.396 1.435,0c0.396,0.396 0.396,1.04 0,1.436c-0.396,0.396 -1.039,0.396 -1.435,-0c-0.397,-0.396 -0.397,-1.04 -0,-1.436Z"/>
</g>`,
},
{
name: 'dollar',
svg: `<g>
<path d="M12,21.934A9.934,9.934,0,1,1,21.934,12,9.945,9.945,0,0,1,12,21.934ZM12,3.066A8.934,8.934,0,1,0,20.934,12,8.944,8.944,0,0,0,12,3.066Z"/>
<path d="M14.5,13.5a2.006,2.006,0,0,1-2,2v1.01a.5.5,0,0,1-1,0V15.5H10.25a.5.5,0,0,1,0-1H12.5a1,1,0,0,0,0-2h-1a2,2,0,0,1,0-4V7.49a.5.5,0,0,1,1,0V8.5h1.25a.5.5,0,0,1,0,1H11.5a1,1,0,0,0,0,2h1A2.006,2.006,0,0,1,14.5,13.5Z"/>
</g>`,
},
{
name: 'droplet',
svg: `<path d="M12.002,21.936c-1.574,0-3.077-0.496-4.346-1.434c-2.332-1.724-3.187-5.598-1.868-8.46l4.875-9.173
c0.264-0.496,0.777-0.805,1.339-0.805c0,0,0,0,0,0c0.562,0,1.075,0.309,1.338,0.805l4.863,9.147
c1.332,2.889,0.476,6.763-1.855,8.485C15.078,21.439,13.575,21.936,12.002,21.936z M12.002,3.064c-0.194,0-0.365,0.103-0.456,0.273
l-4.863,9.147c-1.102,2.395-0.376,5.776,1.567,7.212c2.191,1.621,5.31,1.621,7.503,0c1.942-1.436,2.668-4.817,1.554-7.237
l-4.851-9.122C12.326,3.091,12.095,3.064,12.002,3.064L12.002,3.064z"/>`,
},
{
name: 'dumbbell',
svg: '<path d="M21.435,11.5h-.38V8.12a1.626,1.626,0,0,0-1.62-1.62h-.63V6.12a1.625,1.625,0,0,0-3.25,0V11.5H8.445V6.12a1.625,1.625,0,0,0-3.25,0V6.5h-.63a1.62,1.62,0,0,0-1.62,1.62V11.5h-.38a.5.5,0,1,0,0,1h.38v3.37a1.622,1.622,0,0,0,1.62,1.63H5.2v.37a1.625,1.625,0,1,0,3.25,0V12.5h7.11v5.37a1.625,1.625,0,1,0,3.25,0V17.5h.63a1.628,1.628,0,0,0,1.62-1.63V12.5h.38a.5.5,0,1,0,0-1ZM5.2,16.5h-.63a.625.625,0,0,1-.62-.63V8.12a.623.623,0,0,1,.62-.62H5.2Zm2.25,1.37a.634.634,0,0,1-.63.63.625.625,0,0,1-.62-.63V6.12a.623.623,0,0,1,.62-.62.632.632,0,0,1,.63.62Zm10.36,0a.625.625,0,1,1-1.25,0V6.12a.625.625,0,0,1,1.25,0Zm2.25-2a.625.625,0,0,1-.62.63h-.63v-9h.63a.623.623,0,0,1,.62.62Z"/>',
},
{
name: 'edit',
svg: `<g>
<path d="M3.548,20.921c4.927,0,9.853,0,14.78,0c0.708,0,1.416,0,2.124,0c0.643,0,0.645-1,0-1
c-4.927,0-9.853,0-14.78,0c-0.708,0-1.416,0-2.124,0C2.905,19.921,2.904,20.921,3.548,20.921L3.548,20.921z"/>
<path d="M9.71,17.164c0.42-0.12,0.81-0.34,1.12-0.65l9.54-9.54c0.68-0.68,0.68-1.79,0-2.47l-0.94-0.93
c-0.66-0.66-1.81-0.66-2.47,0l-9.54,9.53c-0.31,0.31-0.53,0.7-0.64,1.12l-0.74,2.76c-0.07,0.26,0,0.53,0.19,0.72
c0.14,0.14,0.34,0.22,0.53,0.22L9.71,17.164z M10.12,15.804c-0.18,0.19-0.42,0.32-0.67,0.39l-0.97,0.26l-1-1l0.26-0.97
c0.07-0.25,0.2-0.48,0.39-0.67l0.38-0.37l1.99,1.99L10.12,15.804z M11.21,14.724l-1.99-1.99l6.73-6.73l1.99,1.99L11.21,14.724z
M19.66,6.274l-1.01,1.01l-1.99-1.99l1.01-1.02c0.14-0.14,0.33-0.22,0.53-0.22s0.39,0.08,0.53,0.22l0.93,0.94
C19.95,5.504,19.95,5.974,19.66,6.274z"/>
</g>`,
},
{
name: 'eraser',
svg: `<path d="M20.454,19.028h-7.01l6.62-6.63c0.56-0.56,0.87-1.3,0.87-2.09c0-0.77-0.31-1.51-0.87-2.05
l-3.42-3.44c-1.15-1.13-3-1.13-4.13,0.01l-8.58,8.57c-0.55,0.55-0.85,1.29-0.85,2.07c0,0.78,0.3,1.52,0.85,2.07l1.48,1.49h-1.86
c-0.65,0-0.65,1,0,1h16.9C21.094,20.028,21.094,19.028,20.454,19.028z M13.214,5.528c0.75-0.74,1.97-0.74,2.73,0l3.42,3.44
c0.37,0.36,0.57,0.84,0.57,1.35c0,0.51-0.2,1-0.57,1.37l-5.64,5.64l-6.15-6.16L13.214,5.528z M12.024,19.028h-5.2l-2.18-2.2
c-0.36-0.36-0.56-0.85-0.56-1.36c0-0.52,0.2-1,0.56-1.36l2.23-2.23l6.15,6.15L12.024,19.028z"/>`,
},
{
name: 'export',
svg: `<g>
<path d="M5.552,20.968c-1.541-0.056-2.496-1.249-2.504-2.729c-0.012-2.153,0-4.307,0-6.46
c0-0.645,1-0.643,1,0c0,2.199-0.032,4.401,0,6.6c0.016,1.107,0.848,1.589,1.838,1.589h12.467c0.643-0.021,1.237-0.337,1.472-0.97
c0.125-0.337,0.095-0.708,0.095-1.061c0-2.053,0-4.106,0-6.159l0,0c0-0.645,1-0.643,1,0c0,2.224,0.086,4.465,0,6.688
c-0.058,1.498-1.209,2.489-2.67,2.502H5.552z"/>
<path d="M12.337,3.176c-0.097-0.097-0.205-0.133-0.311-0.138c-0.014-0.002-0.028-0.005-0.042-0.006
c-0.014,0.001-0.027,0.004-0.041,0.006c-0.107,0.005-0.215,0.041-0.312,0.138L7.961,6.845C7.506,7.301,8.212,8.008,8.668,7.552
c0.938-0.938,1.877-1.877,2.815-2.815v10.742c0,0.643,1,0.644,1,0V4.737l2.815,2.815c0.456,0.456,1.163-0.251,0.707-0.707
L12.337,3.176z"/>
</g>`,
},
{
name: 'face_frown',
svg: `<g>
<path d="M12,21.942c-5.482,0-9.942-4.46-9.942-9.942S6.518,2.058,12,2.058c5.481,0,9.941,4.46,9.941,9.942
S17.482,21.942,12,21.942z M12,3.058C7.07,3.058,3.058,7.069,3.058,12S7.07,20.942,12,20.942s8.941-4.011,8.941-8.942
S16.931,3.058,12,3.058z"/>
<path d="M17.206,16.481c-1.1-1.824-3.065-2.982-5.206-2.984c-2.14-0.002-4.108,1.163-5.206,2.984
c-0.333,0.552,0.531,1.056,0.863,0.505c0.919-1.524,2.553-2.489,4.343-2.489c1.79,0,3.423,0.965,4.343,2.489
C16.674,17.536,17.539,17.034,17.206,16.481L17.206,16.481z"/>
<circle cx="9" cy="9.011" r="1.25"/>
<circle cx="15" cy="9.011" r="1.25"/>
</g>`,
},
{
name: 'face_meh',
svg: `<g>
<path d="M12,21.942c-5.482,0-9.942-4.46-9.942-9.942S6.518,2.058,12,2.058s9.942,4.46,9.942,9.942
S17.482,21.942,12,21.942z M12,3.058c-4.931,0-8.942,4.011-8.942,8.942S7.069,20.942,12,20.942s8.942-4.011,8.942-8.942
S16.931,3.058,12,3.058z"/>
<circle cx="9.001" cy="8.99" r="1.25"/>
<circle cx="15.001" cy="8.99" r="1.25"/>
<path d="M8.438,15.939c2.081,0,4.162,0,6.243,0c0.294,0,0.589,0,0.883,0c0.643,0,0.645-1,0-1
c-2.081,0-4.162,0-6.243,0c-0.294,0-0.589,0-0.883,0C7.794,14.939,7.793,15.939,8.438,15.939L8.438,15.939z"/>
</g>`,
},
{
name: 'face_smile',
svg: `<g>
<path d="M12,21.942c-5.481,0-9.941-4.46-9.941-9.942S6.518,2.058,12,2.058c5.482,0,9.942,4.46,9.942,9.942
S17.482,21.942,12,21.942z M12,3.058c-4.931,0-8.941,4.011-8.941,8.942S7.069,20.942,12,20.942s8.942-4.011,8.942-8.942
S16.93,3.058,12,3.058z"/>
<path d="M16.693,13.744c-0.803,1.902-2.604,3.198-4.694,3.2c-2.088,0.002-3.892-1.301-4.694-3.2
c-0.249-0.591-1.111-0.082-0.863,0.505c0.933,2.211,3.15,3.699,5.557,3.695c2.408-0.003,4.622-1.48,5.557-3.695
C17.804,13.663,16.943,13.153,16.693,13.744L16.693,13.744z"/>
<circle cx="9" cy="9.011" r="1.25"/>
<circle cx="15" cy="9.011" r="1.25"/>
</g>`,
},
{
name: 'facebook',
svg: '<path d="M19.02,4.975A9.93,9.93,0,0,0,2.07,12,9.935,9.935,0,0,0,12,21.935a9.98,9.98,0,0,0,3.8-.75,10.189,10.189,0,0,0,3.22-2.16,9.934,9.934,0,0,0,0-14.05Zm-.7,13.34A8.921,8.921,0,0,1,13,20.885v-6.56h1.88a1,1,0,0,0,0-2H13V9.585a1,1,0,0,1,1-1h1.2a1,1,0,0,0,0-2H13.5a2.5,2.5,0,0,0-2.5,2.5v3.24H9.13a1,1,0,1,0,0,2H11v6.56a8.919,8.919,0,1,1,9.26-5.47A9.061,9.061,0,0,1,18.32,18.315Z"/>',
},
{
name: 'file_off',
svg: `<g>
<path d="M4,3.308a.5.5,0,0,0-.7.71l.76.76v14.67a2.5,2.5,0,0,0,2.5,2.5H17.44a2.476,2.476,0,0,0,2.28-1.51l.28.28c.45.45,1.16-.26.7-.71Zm14.92,16.33a1.492,1.492,0,0,1-1.48,1.31H6.56a1.5,1.5,0,0,1-1.5-1.5V5.778Z"/>
<path d="M13.38,3.088v2.92a2.5,2.5,0,0,0,2.5,2.5h3.07l-.01,6.7a.5.5,0,0,0,1,0V8.538a2.057,2.057,0,0,0-.75-1.47c-1.3-1.26-2.59-2.53-3.89-3.8a3.924,3.924,0,0,0-1.41-1.13,6.523,6.523,0,0,0-1.71-.06H6.81a.5.5,0,0,0,0,1Zm4.83,4.42H15.88a1.5,1.5,0,0,1-1.5-1.5V3.768Z"/>
</g>`,
},
{
name: 'file_on',
svg: '<path d="M19.485,7.35l-4.97-4.86a1.466,1.466,0,0,0-1.05-.43h-6.9a2.5,2.5,0,0,0-2.5,2.5V19.44a2.507,2.507,0,0,0,2.5,2.5h10.87a2.507,2.507,0,0,0,2.5-2.5V8.42A1.49,1.49,0,0,0,19.485,7.35Zm-1.27.15h-2.34a1.5,1.5,0,0,1-1.5-1.5V3.75Zm.72,11.94a1.5,1.5,0,0,1-1.5,1.5H6.565a1.5,1.5,0,0,1-1.5-1.5V4.56a1.5,1.5,0,0,1,1.5-1.5h6.81V6a2.5,2.5,0,0,0,2.5,2.5h3.06Z"/>',
},
{
name: 'filter',
svg: '<path d="M14.037,20.937a1.015,1.015,0,0,1-.518-.145l-3.334-2a2.551,2.551,0,0,1-1.233-2.176V12.091a1.526,1.526,0,0,0-.284-.891L4.013,4.658a1.01,1.01,0,0,1,.822-1.6h14.33a1.009,1.009,0,0,1,.822,1.6h0L15.332,11.2a1.527,1.527,0,0,0-.285.891v7.834a1.013,1.013,0,0,1-1.01,1.012ZM4.835,4.063,9.482,10.62a2.515,2.515,0,0,1,.47,1.471v4.524a1.543,1.543,0,0,0,.747,1.318l3.334,2,.014-7.843a2.516,2.516,0,0,1,.471-1.471l4.654-6.542,0,0Z"/>',
},
{
name: 'flag_1',
svg: '<path d="M20.565,3.18a.809.809,0,0,0-.81-.02l-1.13.56c-1.63.87-3.82.83-6.5-.13a9.141,9.141,0,0,0-7.3.52l-.76.41V3.56a.5.5,0,0,0-1,0V20.44a.5.5,0,0,0,1,0V15.9a.836.836,0,0,0,.2-.08l1.03-.55a8.163,8.163,0,0,1,6.5-.46c2.95,1.06,5.41,1.08,7.3.07l1.44-.72a.759.759,0,0,0,.4-.66V3.82A.751.751,0,0,0,20.565,3.18Zm-.63,10.16-1.31.66c-1.63.87-3.82.83-6.5-.13a9.141,9.141,0,0,0-7.3.52l-.76.4V5.65L5.3,4.99a8.122,8.122,0,0,1,6.5-.46c2.95,1.06,5.41,1.08,7.29.08l.85-.43Z"/>',
},
{
name: 'floppy_disk',
svg: '<path d="M20.015,7.015l-4.15-3.39a2.54,2.54,0,0,0-1.58-.56H4.565a1.5,1.5,0,0,0-1.5,1.5v14.87a1.5,1.5,0,0,0,1.5,1.5h14.87a1.5,1.5,0,0,0,1.5-1.5V8.955A2.507,2.507,0,0,0,20.015,7.015ZM6.565,4.065h5.75v1.37a.5.5,0,0,1-.5.5H7.065a.5.5,0,0,1-.5-.5Zm0,15.87v-5.93a1.5,1.5,0,0,1,1.5-1.5h7.87a1.5,1.5,0,0,1,1.5,1.5v5.93Zm13.37-.5a.5.5,0,0,1-.5.5h-1v-5.93a2.507,2.507,0,0,0-2.5-2.5H8.065a2.5,2.5,0,0,0-2.5,2.5v5.93h-1a.5.5,0,0,1-.5-.5V4.565a.5.5,0,0,1,.5-.5h1v1.37a1.5,1.5,0,0,0,1.5,1.5h4.75a1.5,1.5,0,0,0,1.5-1.5V4.065h.97a1.514,1.514,0,0,1,.95.34l4.14,3.38a1.483,1.483,0,0,1,.56,1.17Z"/>',
},
{
name: 'folder_off',
svg: `<g>
<path d="M4.013,3.3a.5.5,0,0,0-.711.71l.25.25A2.438,2.438,0,0,0,2.062,6.5v11a2.453,2.453,0,0,0,2.451,2.44h14.72l.759.76c.461.46,1.171-.25.711-.7Zm.5,15.64A1.45,1.45,0,0,1,3.062,17.5V6.5a1.444,1.444,0,0,1,1.31-1.43C5.893,6.6,7.432,8.14,8.963,9.66q4.485,4.485,8.96,8.97l.31.31Z"/>
<path d="M21.438,17.693a.5.5,0,0,1-.5-.5V9.175a1.445,1.445,0,0,0-1.445-1.444H12.827a1.5,1.5,0,0,1-1.474-1.225l-.05-.267a1.445,1.445,0,0,0-1.42-1.178H8.8a.5.5,0,0,1,0-1H9.883a2.446,2.446,0,0,1,2.4,1.994l.05.268a.5.5,0,0,0,.491.408h6.666a2.448,2.448,0,0,1,2.445,2.444v8.018A.5.5,0,0,1,21.438,17.693Z"/>
</g>`,
},
{
name: 'folder_on',
svg: '<path d="M19.435,19.94H4.565a2.5,2.5,0,0,1-2.5-2.5V6.56a2.5,2.5,0,0,1,2.5-2.5h5.27A2.5,2.5,0,0,1,12.292,6.1l.042.222a.5.5,0,0,0,.491.408h6.61a2.5,2.5,0,0,1,2.5,2.5v8.21A2.5,2.5,0,0,1,19.435,19.94ZM4.565,5.06a1.5,1.5,0,0,0-1.5,1.5V17.44a1.5,1.5,0,0,0,1.5,1.5h14.87a1.5,1.5,0,0,0,1.5-1.5V9.23a1.5,1.5,0,0,0-1.5-1.5h-6.61a1.5,1.5,0,0,1-1.474-1.225l-.042-.221A1.5,1.5,0,0,0,9.835,5.06Z"/>',
},
{
name: 'football',
svg: `<g>
<path d="M20.278,4.757a1.64,1.64,0,0,0-1.03-1.04,12.248,12.248,0,0,0-15.53,15.53,1.64,1.64,0,0,0,1.04,1.03,12.306,12.306,0,0,0,3.95.66,12.262,12.262,0,0,0,11.57-16.18Zm-15.2,14.58a.725.725,0,0,1-.42-.42,11.379,11.379,0,0,1-.58-4.26l5.26,5.26A11.352,11.352,0,0,1,5.078,19.337Zm11.56-2.71a11.179,11.179,0,0,1-6.03,3.14l-6.38-6.38a11.083,11.083,0,0,1,3.14-6.02,11.193,11.193,0,0,1,6.03-3.15l6.38,6.38A11.245,11.245,0,0,1,16.638,16.627Zm3.29-7.3-5.26-5.26c.21,0,.41-.01.62-.01a11.154,11.154,0,0,1,3.63.61.682.682,0,0,1,.42.41A11.543,11.543,0,0,1,19.928,9.327Z"/>
<path d="M10.4,15.257a.5.5,0,0,0,.35.15.508.508,0,0,0,.36-.15.5.5,0,0,0,0-.7l-.48-.48L12,12.707l.48.48a.518.518,0,0,0,.35.14.543.543,0,0,0,.36-.14.513.513,0,0,0,0-.71l-.48-.48,1.37-1.37.48.48a.5.5,0,0,0,.7-.71L13.6,8.737a.5.5,0,0,0-.71,0,.5.5,0,0,0,0,.7l.49.49L12,11.3l-.48-.48a.495.495,0,1,0-.7.7l.48.48-1.37,1.38-.49-.49a.5.5,0,0,0-.7,0,.5.5,0,0,0,0,.71Z"/>
</g>`,
},
{
name: 'fork_&_knife',
svg: `<g>
<path d="M18.83,2.25a6.469,6.469,0,0,0-4.37,6.12v3.15a1.784,1.784,0,0,0,1.78,1.78h2.7v8.14a.5.5,0,0,0,.5.5.508.508,0,0,0,.5-.5V2.56a.508.508,0,0,0-.5-.5.467.467,0,0,0-.17.03ZM16.24,12.3a.781.781,0,0,1-.78-.78V8.37a5.482,5.482,0,0,1,3.48-5.1V12.3Z"/>
<path d="M11.44,2.07a.5.5,0,0,0-.5.5V7.55H8.5V2.57a.5.5,0,0,0-.5-.5.5.5,0,0,0-.5.5V7.55H5.06V2.57a.5.5,0,0,0-.5-.5.5.5,0,0,0-.5.5V9.05a2.507,2.507,0,0,0,2.5,2.5H7.5v9.89a.508.508,0,0,0,.5.5.5.5,0,0,0,.5-.5V11.55h.94a2.5,2.5,0,0,0,2.5-2.5V2.57A.5.5,0,0,0,11.44,2.07Zm-.5,6.98a1.5,1.5,0,0,1-1.5,1.5H6.56a1.511,1.511,0,0,1-1.5-1.5v-.5h5.88Z"/>
</g>`,
},
{
name: 'fries',
svg: '<path d="M19.51,9.535a1.091,1.091,0,0,0-.81-.36H17.67a.5.5,0,0,0-.17.02V4.815a1.5,1.5,0,0,0-1.5-1.5h-.5a1.3,1.3,0,0,0-.52.1,1.474,1.474,0,0,0-1.48-1.35H13a1.5,1.5,0,0,0-1.5,1.5v1.59a1.386,1.386,0,0,0-.5-.09h-.5a1.348,1.348,0,0,0-.5.09v-.34a1.5,1.5,0,0,0-1.5-1.5H8a1.5,1.5,0,0,0-1.5,1.5V9.2a.5.5,0,0,0-.17-.02H5.3a1.1,1.1,0,0,0-1.08,1.2l.85,8.98a2.84,2.84,0,0,0,2.84,2.58h8.18a2.84,2.84,0,0,0,2.84-2.58l.85-8.98A1.112,1.112,0,0,0,19.51,9.535ZM15,4.815a.5.5,0,0,1,.5-.5H16a.5.5,0,0,1,.5.5v6.14h.01A2.915,2.915,0,0,1,15,13.015Zm-2.5,8.53V3.565a.5.5,0,0,1,.5-.5h.5a.5.5,0,0,1,.5.5v9.76Zm-2.5-.02V6.565a.5.5,0,0,1,.5-.5H11a.5.5,0,0,1,.5.5v6.78ZM7.5,4.815a.5.5,0,0,1,.5-.5h.5a.5.5,0,0,1,.5.5v8.2a2.877,2.877,0,0,1-1.5-2.06Zm11.29,5.391-.85,9.049a1.85,1.85,0,0,1-1.85,1.68H7.91a1.84,1.84,0,0,1-1.84-1.68l-.86-9.08H6.33a.1.1,0,0,1,.09.08l.05.56a3.891,3.891,0,0,0,3.88,3.53h3.3a3.884,3.884,0,0,0,3.88-3.53l.05-.56a.106.106,0,0,1,.09-.08Z"/>',
},
{
name: 'gift',
svg: '<path d="M19.435,5.568h-2.38a1.979,1.979,0,0,0-.51-1.92,2.022,2.022,0,0,0-2.83,0L12,5.367l-1.71-1.719a2,2,0,0,0-2.83,0,1.979,1.979,0,0,0-.51,1.92H4.565a1.5,1.5,0,0,0-1.5,1.5v1A1.487,1.487,0,0,0,4,9.448v8.99a2.507,2.507,0,0,0,2.5,2.5h11a2.5,2.5,0,0,0,2.5-2.5V9.458a1.509,1.509,0,0,0,.94-1.39v-1A1.5,1.5,0,0,0,19.435,5.568ZM8.165,4.357a1,1,0,0,1,1.41,0l1.21,1.211H8.015A.989.989,0,0,1,8.165,4.357ZM11,19.938H6.5a1.5,1.5,0,0,1-1.5-1.5V9.568h6Zm0-11.37H4.565a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5H11Zm3.43-4.211A1,1,0,0,1,16,5.568h-2.78ZM19,18.438a1.5,1.5,0,0,1-1.5,1.5H13V9.568h6Zm.94-10.37a.5.5,0,0,1-.5.5H13v-2h6.44a.5.5,0,0,1,.5.5Z"/>',
},
{
name: 'glass',
svg: '<path d="M18.279,2.54a1.475,1.475,0,0,0-1.1-.48H6.819a1.47,1.47,0,0,0-1.09.48,1.5,1.5,0,0,0-.41,1.12L6.379,19.6a2.51,2.51,0,0,0,2.49,2.34h6.26a2.519,2.519,0,0,0,2.5-2.34l1.05-15.94A1.5,1.5,0,0,0,18.279,2.54Zm-1.65,16.99a1.508,1.508,0,0,1-1.5,1.41H8.869a1.506,1.506,0,0,1-1.49-1.41l-.64-9.62a2.981,2.981,0,0,0,1.17-.49,1.828,1.828,0,0,1,1.18-.39,1.858,1.858,0,0,1,1.19.39,3.025,3.025,0,0,0,3.45,0,1.879,1.879,0,0,1,1.19-.39,1.828,1.828,0,0,1,1.18.39,3,3,0,0,0,1.16.49Zm.7-10.62a2.317,2.317,0,0,1-.69-.33,2.98,2.98,0,0,0-3.45,0,1.885,1.885,0,0,1-1.18.38,1.939,1.939,0,0,1-1.19-.38,2.818,2.818,0,0,0-1.73-.55,2.809,2.809,0,0,0-1.72.55,2.374,2.374,0,0,1-.7.33l-.35-5.32a.468.468,0,0,1,.14-.37.484.484,0,0,1,.36-.16h10.36a.523.523,0,0,1,.37.16.46.46,0,0,1,.13.37Z"/>',
},
{
name: 'globe',
svg: '<path d="M14.645,2.428a8.1,8.1,0,0,0-1.61-.3,9.332,9.332,0,0,0-3.6.28l-.07.02a9.928,9.928,0,0,0,.01,19.15,9.091,9.091,0,0,0,2.36.34,1.274,1.274,0,0,0,.27.02,9.65,9.65,0,0,0,2.63-.36,9.931,9.931,0,0,0,.01-19.15Zm-.27.96a8.943,8.943,0,0,1,5.84,5.11h-4.26a13.778,13.778,0,0,0-2.74-5.35A8.254,8.254,0,0,1,14.375,3.388Zm-2.37-.09a12.78,12.78,0,0,1,2.91,5.2H9.075A12.545,12.545,0,0,1,12.005,3.3Zm3.16,6.2a13.193,13.193,0,0,1,0,5.01H8.845a12.185,12.185,0,0,1-.25-2.5,12.353,12.353,0,0,1,.25-2.51Zm-5.6-6.09.07-.02a9.152,9.152,0,0,1,1.16-.23A13.618,13.618,0,0,0,8.045,8.5H3.8A9,9,0,0,1,9.565,3.408Zm-6.5,8.6a8.71,8.71,0,0,1,.37-2.51h4.39a13.95,13.95,0,0,0-.23,2.51,13.757,13.757,0,0,0,.23,2.5H3.435A8.591,8.591,0,0,1,3.065,12.008Zm6.57,8.61a8.9,8.9,0,0,1-5.84-5.11h4.24a13.632,13.632,0,0,0,2.77,5.35A8.1,8.1,0,0,1,9.635,20.618Zm-.56-5.11h5.84a12.638,12.638,0,0,1-2.91,5.21A12.872,12.872,0,0,1,9.075,15.508Zm5.3,5.11a11.551,11.551,0,0,1-1.17.24,13.8,13.8,0,0,0,2.75-5.35h4.26A8.924,8.924,0,0,1,14.375,20.618Zm1.8-6.11a13.611,13.611,0,0,0,0-5.01h4.39a8.379,8.379,0,0,1,.37,2.51,8.687,8.687,0,0,1-.36,2.5Z"/>',
},
{
name: 'gps',
svg: `<g>
<path d="M12,14.5A2.5,2.5,0,1,1,14.5,12,2.5,2.5,0,0,1,12,14.5Zm0-4A1.5,1.5,0,1,0,13.5,12,1.5,1.5,0,0,0,12,10.5Z"/>
<path d="M21.435,11.505h-1.46a7.98,7.98,0,0,0-7.48-7.48V2.565a.508.508,0,0,0-.5-.5.515.515,0,0,0-.5.5v1.46a8,8,0,0,0-7.48,7.48H2.565a.5.5,0,1,0,0,1h1.45a8.012,8.012,0,0,0,7.48,7.48v1.45a.508.508,0,0,0,.5.5.5.5,0,0,0,.5-.5v-1.45a8,8,0,0,0,7.48-7.48h1.46a.5.5,0,0,0,0-1ZM12,19.005a7,7,0,1,1,7-7A7.021,7.021,0,0,1,12,19.005Z"/>
</g>`,
},
{
name: 'grid_4-1',
svg: `<g>
<path d="M8.498,11H5.564c-1.379,0-2.5-1.122-2.5-2.5V5.564c0-1.378,1.121-2.5,2.5-2.5h2.934
c1.379,0,2.5,1.122,2.5,2.5V8.5C10.998,9.878,9.876,11,8.498,11z M5.564,4.064c-0.827,0-1.5,0.673-1.5,1.5V8.5
c0,0.827,0.673,1.5,1.5,1.5h2.934c0.827,0,1.5-0.673,1.5-1.5V5.564c0-0.827-0.673-1.5-1.5-1.5H5.564z"/>
<path d="M18.436,11h-2.934c-1.379,0-2.5-1.122-2.5-2.5V5.564c0-1.378,1.121-2.5,2.5-2.5h2.934
c1.379,0,2.5,1.122,2.5,2.5V8.5C20.936,9.878,19.815,11,18.436,11z M15.502,4.064c-0.827,0-1.5,0.673-1.5,1.5V8.5
c0,0.827,0.673,1.5,1.5,1.5h2.934c0.827,0,1.5-0.673,1.5-1.5V5.564c0-0.827-0.673-1.5-1.5-1.5H15.502z"/>
<path d="M8.499,20.936H5.565c-1.379,0-2.5-1.122-2.5-2.5V15.5c0-1.378,1.121-2.5,2.5-2.5h2.934
c1.379,0,2.5,1.122,2.5,2.5v2.936C10.999,19.814,9.877,20.936,8.499,20.936z M5.565,14c-0.827,0-1.5,0.673-1.5,1.5v2.936
c0,0.827,0.673,1.5,1.5,1.5h2.934c0.827,0,1.5-0.673,1.5-1.5V15.5c0-0.827-0.673-1.5-1.5-1.5H5.565z"/>
<path d="M18.436,20.936h-2.934c-1.379,0-2.5-1.122-2.5-2.5V15.5c0-1.378,1.121-2.5,2.5-2.5h2.934
c1.379,0,2.5,1.122,2.5,2.5v2.936C20.936,19.814,19.815,20.936,18.436,20.936z M15.502,14c-0.827,0-1.5,0.673-1.5,1.5v2.936
c0,0.827,0.673,1.5,1.5,1.5h2.934c0.827,0,1.5-0.673,1.5-1.5V15.5c0-0.827-0.673-1.5-1.5-1.5H15.502z"/>
</g>`,
},
{
name: 'grid_4-2',
svg: `<g>
<g>
<path d="M7.82,14.049H4.886c-1.379,0-2.5-1.122-2.5-2.5v-5.87c0-1.378,1.121-2.5,2.5-2.5H7.82
c1.379,0,2.5,1.122,2.5,2.5v5.87C10.32,12.927,9.198,14.049,7.82,14.049z M4.886,4.179c-0.827,0-1.5,0.673-1.5,1.5v5.87
c0,0.827,0.673,1.5,1.5,1.5H7.82c0.827,0,1.5-0.673,1.5-1.5v-5.87c0-0.827-0.673-1.5-1.5-1.5H4.886z"/>
<path d="M7.821,21.051H4.887c-1.379,0-2.5-1.122-2.5-2.5s1.121-2.5,2.5-2.5h2.934
c1.379,0,2.5,1.122,2.5,2.5S9.199,21.051,7.821,21.051z M4.887,17.051c-0.827,0-1.5,0.673-1.5,1.5s0.673,1.5,1.5,1.5h2.934
c0.827,0,1.5-0.673,1.5-1.5s-0.673-1.5-1.5-1.5H4.887z"/>
</g>
<g>
<path d="M17.758,21.051h-2.934c-1.379,0-2.5-1.122-2.5-2.5v-5.87c0-1.378,1.121-2.5,2.5-2.5h2.934
c1.379,0,2.5,1.122,2.5,2.5v5.87C20.258,19.929,19.137,21.051,17.758,21.051z M14.824,11.181c-0.827,0-1.5,0.673-1.5,1.5v5.87
c0,0.827,0.673,1.5,1.5,1.5h2.934c0.827,0,1.5-0.673,1.5-1.5v-5.87c0-0.827-0.673-1.5-1.5-1.5H14.824z"/>
<path d="M17.758,8.179h-2.934c-1.379,0-2.5-1.122-2.5-2.5s1.121-2.5,2.5-2.5h2.934
c1.379,0,2.5,1.122,2.5,2.5S19.137,8.179,17.758,8.179z M14.824,4.179c-0.827,0-1.5,0.673-1.5,1.5s0.673,1.5,1.5,1.5h2.934
c0.827,0,1.5-0.673,1.5-1.5s-0.673-1.5-1.5-1.5H14.824z"/>
</g>
</g>`,
},
{
name: 'grid_3-1',
svg: `<g>
<g>
<path d="M11.435,20.936h-5.87c-1.379,0-2.5-1.122-2.5-2.5v-2.933c0-1.378,1.121-2.5,2.5-2.5h5.87
c1.379,0,2.5,1.122,2.5,2.5v2.933C13.935,19.814,12.813,20.936,11.435,20.936z M5.564,14.003c-0.827,0-1.5,0.673-1.5,1.5v2.933
c0,0.827,0.673,1.5,1.5,1.5h5.87c0.827,0,1.5-0.673,1.5-1.5v-2.933c0-0.827-0.673-1.5-1.5-1.5H5.564z"/>
<path d="M18.436,20.935c-1.379,0-2.5-1.122-2.5-2.5v-2.933c0-1.378,1.121-2.5,2.5-2.5s2.5,1.122,2.5,2.5
v2.933C20.936,19.814,19.814,20.935,18.436,20.935z M18.436,14.002c-0.827,0-1.5,0.673-1.5,1.5v2.933c0,0.827,0.673,1.5,1.5,1.5
s1.5-0.673,1.5-1.5v-2.933C19.936,14.675,19.263,14.002,18.436,14.002z"/>
</g>
<path d="M18.436,10.997H5.564c-1.379,0-2.5-1.122-2.5-2.5V5.564c0-1.378,1.121-2.5,2.5-2.5h12.871
c1.379,0,2.5,1.122,2.5,2.5v2.933C20.936,9.876,19.814,10.997,18.436,10.997z M5.564,4.064c-0.827,0-1.5,0.673-1.5,1.5v2.933
c0,0.827,0.673,1.5,1.5,1.5h12.871c0.827,0,1.5-0.673,1.5-1.5V5.564c0-0.827-0.673-1.5-1.5-1.5H5.564z"/>
</g>`,
},
{
name: 'grid_3-2',
svg: `<g>
<g>
<path d="M18.436,10.997h-5.87c-1.379,0-2.5-1.122-2.5-2.5V5.564c0-1.378,1.121-2.5,2.5-2.5h5.87
c1.379,0,2.5,1.122,2.5,2.5v2.933C20.936,9.876,19.814,10.997,18.436,10.997z M12.565,4.064c-0.827,0-1.5,0.673-1.5,1.5v2.933
c0,0.827,0.673,1.5,1.5,1.5h5.87c0.827,0,1.5-0.673,1.5-1.5V5.564c0-0.827-0.673-1.5-1.5-1.5H12.565z"/>
<path d="M5.564,10.998c-1.379,0-2.5-1.122-2.5-2.5V5.565c0-1.378,1.121-2.5,2.5-2.5s2.5,1.122,2.5,2.5
v2.933C8.064,9.876,6.943,10.998,5.564,10.998z M5.564,4.065c-0.827,0-1.5,0.673-1.5,1.5v2.933c0,0.827,0.673,1.5,1.5,1.5
s1.5-0.673,1.5-1.5V5.565C7.064,4.738,6.392,4.065,5.564,4.065z"/>
</g>
<path d="M18.436,20.936H5.564c-1.379,0-2.5-1.122-2.5-2.5v-2.933c0-1.378,1.121-2.5,2.5-2.5h12.871
c1.379,0,2.5,1.122,2.5,2.5v2.933C20.936,19.814,19.814,20.936,18.436,20.936z M5.564,14.003c-0.827,0-1.5,0.673-1.5,1.5v2.933
c0,0.827,0.673,1.5,1.5,1.5h12.871c0.827,0,1.5-0.673,1.5-1.5v-2.933c0-0.827-0.673-1.5-1.5-1.5H5.564z"/>
</g>`,
},
{
name: 'grid_2-h',
svg: `<g>
<path d="M18.436,10.997H5.564c-1.378,0-2.5-1.122-2.5-2.5V5.564c0-1.378,1.122-2.5,2.5-2.5h12.871
c1.378,0,2.5,1.122,2.5,2.5v2.933C20.936,9.876,19.814,10.997,18.436,10.997z M5.564,4.064c-0.827,0-1.5,0.673-1.5,1.5v2.933
c0,0.827,0.673,1.5,1.5,1.5h12.871c0.827,0,1.5-0.673,1.5-1.5V5.564c0-0.827-0.673-1.5-1.5-1.5H5.564z"/>
<path d="M18.436,20.936H5.564c-1.378,0-2.5-1.122-2.5-2.5v-2.933c0-1.378,1.122-2.5,2.5-2.5h12.871
c1.378,0,2.5,1.122,2.5,2.5v2.933C20.936,19.814,19.814,20.936,18.436,20.936z M5.564,14.003c-0.827,0-1.5,0.673-1.5,1.5v2.933
c0,0.827,0.673,1.5,1.5,1.5h12.871c0.827,0,1.5-0.673,1.5-1.5v-2.933c0-0.827-0.673-1.5-1.5-1.5H5.564z"/>
</g>`,
},
{
name: 'grid_2-v',
svg: `<g>
<path d="M18.436,20.936h-2.933c-1.378,0-2.5-1.122-2.5-2.5V5.564c0-1.378,1.122-2.5,2.5-2.5h2.933
c1.378,0,2.5,1.122,2.5,2.5v12.871C20.936,19.814,19.814,20.936,18.436,20.936z M15.503,4.064c-0.827,0-1.5,0.673-1.5,1.5v12.871
c0,0.827,0.673,1.5,1.5,1.5h2.933c0.827,0,1.5-0.673,1.5-1.5V5.564c0-0.827-0.673-1.5-1.5-1.5H15.503z"/>
<path d="M8.497,20.936H5.564c-1.378,0-2.5-1.122-2.5-2.5V5.564c0-1.378,1.122-2.5,2.5-2.5h2.933
c1.378,0,2.5,1.122,2.5,2.5v12.871C10.997,19.814,9.876,20.936,8.497,20.936z M5.564,4.064c-0.827,0-1.5,0.673-1.5,1.5v12.871
c0,0.827,0.673,1.5,1.5,1.5h2.933c0.827,0,1.5-0.673,1.5-1.5V5.564c0-0.827-0.673-1.5-1.5-1.5H5.564z"/>
</g>`,
},
{
name: 'hard_drive',
svg: `<g>
<path d="M20.905,14.325l-1.83-10.04a1.507,1.507,0,0,0-1.47-1.22H6.405A1.493,1.493,0,0,0,4.925,4.3l-1.84,10.03a2.452,2.452,0,0,0-.02.27v4.84a1.5,1.5,0,0,0,1.5,1.5h14.87a1.511,1.511,0,0,0,1.5-1.5V14.6A1.241,1.241,0,0,0,20.905,14.325Zm-15-9.85a.5.5,0,0,1,.5-.41h11.2a.511.511,0,0,1,.49.4l1.74,9.54H4.165Zm14.03,14.96a.5.5,0,0,1-.5.5H4.565a.5.5,0,0,1-.5-.5l.01-4.43h15.86Z"/>
<circle cx="5.561" cy="17.47" r="0.5"/>
<circle cx="7.561" cy="17.47" r="0.5"/>
<path d="M18.45,17.97a.5.5,0,0,0,0-1h-5a.5.5,0,0,0,0,1Z"/>
</g>`,
},
{
name: 'hashtag',
svg: '<path d="M20.435,15.506H16.2l.61-7h3.63a.5.5,0,0,0,.5-.5.5.5,0,0,0-.5-.5H16.9l.34-3.87a.509.509,0,0,0-.46-.54.5.5,0,0,0-.54.46l-.35,3.95H8.9l.34-3.87a.509.509,0,0,0-.46-.54.491.491,0,0,0-.54.46l-.35,3.95H3.565a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5h4.24l-.62,7H3.565a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5h3.54l-.34,3.86a.508.508,0,0,0,.45.54h.05a.516.516,0,0,0,.5-.46l.34-3.94h7l-.34,3.86a.508.508,0,0,0,.45.54h.05a.516.516,0,0,0,.5-.46l.34-3.94h4.33a.5.5,0,0,0,.5-.5A.5.5,0,0,0,20.435,15.506Zm-5.25,0H8.2l.61-7h7Z"/>',
},
{
name: 'headphones',
svg: `<path d="M12.23,3.065h-0.46c-4.52,0-8.2,3.68-8.2,8.2v6.25c0,0.85,0.31,1.67,0.89,2.3
c0.64,0.71,1.57,1.12,2.53,1.12h0.53c0.67,0,1.22-0.55,1.22-1.22v-4.4c0-0.67-0.55-1.22-1.22-1.22H7.11c-0.98,0-1.89,0.4-2.54,1.05
v-3.88c0-3.97,3.23-7.2,7.2-7.2h0.46c3.97,0,7.2,3.23,7.2,7.2v3.88c-0.65-0.65-1.56-1.05-2.54-1.05h-0.41
c-0.67,0-1.22,0.55-1.22,1.22v4.4c0,0.67,0.55,1.22,1.22,1.22h0.53c0.96,0,1.89-0.41,2.53-1.12c0.58-0.63,0.89-1.45,0.89-2.3v-6.25
C20.43,6.745,16.75,3.065,12.23,3.065z M4.58,17.275c0.12-1.22,1.23-2.18,2.53-2.18h0.41c0.12,0,0.22,0.1,0.22,0.22v4.4
c0,0.12-0.1,0.22-0.22,0.22H6.99c-0.68,0-1.34-0.29-1.79-0.79c-0.42-0.45-0.64-1.03-0.63-1.63C4.57,17.435,4.57,17.355,4.58,17.275
z M18.8,19.145c-0.45,0.5-1.11,0.79-1.79,0.79h-0.53c-0.12,0-0.22-0.1-0.22-0.22v-4.4c0-0.12,0.1-0.22,0.22-0.22h0.41
c1.3,0,2.41,0.96,2.53,2.18c0.01,0.08,0.01,0.16,0.01,0.24C19.44,18.115,19.22,18.695,18.8,19.145z"/>`,
},
{
name: 'heart',
svg: `<path d="M11.785,20.377c-0.251,0-0.503-0.096-0.695-0.288l-6.675-6.676c-1.198-1.198-1.758-2.914-1.497-4.591
c0.266-1.707,1.33-3.156,2.92-3.976c1.924-0.994,4.285-0.646,5.947,0.857c1.662-1.501,4.022-1.851,5.947-0.857
c1.59,0.82,2.654,2.269,2.92,3.976c0.261,1.677-0.298,3.393-1.497,4.591l-6.676,6.676C12.289,20.281,12.037,20.377,11.785,20.377z
M8.141,5.297c-0.638,0-1.271,0.143-1.844,0.439c-1.302,0.672-2.173,1.854-2.39,3.241c-0.212,1.362,0.242,2.756,1.215,3.729
l6.675,6.676l6.651-6.676c0.973-0.973,1.428-2.368,1.215-3.729c-0.216-1.388-1.087-2.569-2.39-3.241
c-1.588-0.819-3.63-0.469-4.968,0.852l0,0c-0.287,0.284-0.755,0.284-1.042,0C10.41,5.744,9.269,5.297,8.141,5.297z"/>`,
},
{
name: 'home',
svg: `<path d="M19.37,10.22l-6.2-7.6C12.88,2.27,12.46,2.06,12,2.06c-0.45,0-0.87,0.2-1.16,0.55l-6.21,7.61
c-0.37,0.45-0.57,1.01-0.57,1.59v7.63c0,1.37,1.12,2.5,2.5,2.5h10.88c1.38,0,2.5-1.13,2.5-2.5v-7.63
C19.94,11.23,19.74,10.67,19.37,10.22z M10,20.94v-5.5c0-0.83,0.67-1.5,1.5-1.5h1c0.83,0,1.5,0.67,1.5,1.5v5.5H10z M18.94,19.44
c0,0.82-0.68,1.5-1.5,1.5H15v-5.5c0-1.38-1.12-2.5-2.5-2.5h-1c-1.38,0-2.5,1.12-2.5,2.5v5.5H6.56c-0.82,0-1.5-0.68-1.5-1.5v-7.63
c0-0.35,0.12-0.69,0.34-0.95l6.22-7.61c0.09-0.12,0.23-0.19,0.38-0.19c0.16,0,0.3,0.07,0.39,0.19l6.21,7.61
c0.22,0.26,0.34,0.6,0.34,0.95V19.44z"/>`,
},
{
name: 'hospital_1',
svg: ` <g>
<path d="M18.435,7.5h-1.93V5.56a2.5,2.5,0,0,0-2.5-2.5h-4a2.5,2.5,0,0,0-2.5,2.5V7.5H5.565a2.5,2.5,0,0,0-2.5,2.5v9.44a1.511,1.511,0,0,0,1.5,1.5h14.87a1.5,1.5,0,0,0,1.5-1.5V10A2.5,2.5,0,0,0,18.435,7.5ZM7.505,19.94H4.565a.508.508,0,0,1-.5-.5V10a1.5,1.5,0,0,1,1.5-1.5h1.94Zm8,0h-1.5v-2.5a2.038,2.038,0,0,0-.59-1.42,2,2,0,0,0-3.41,1.42v2.5h-1.5V5.56a1.5,1.5,0,0,1,1.5-1.5h4a1.5,1.5,0,0,1,1.5,1.5Zm4.43-.5a.5.5,0,0,1-.5.5h-2.93V8.5h1.93a1.5,1.5,0,0,1,1.5,1.5Z"/>
<path d="M14.505,8.56a.5.5,0,0,1-.5.5h-1.5v1.5a.5.5,0,0,1-.5.5.5.5,0,0,1-.5-.5V9.06h-1.5a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5h1.5V6.56a.5.5,0,0,1,.5-.5.508.508,0,0,1,.5.5v1.5h1.5A.508.508,0,0,1,14.505,8.56Z"/>
<g>
<path d="M5.786,13.217a.5.5,0,0,1-.5-.5v-1.5a.5.5,0,0,1,1,0v1.5A.5.5,0,0,1,5.786,13.217Z"/>
<path d="M5.786,17.717a.5.5,0,0,1-.5-.5v-1.5a.5.5,0,0,1,1,0v1.5A.5.5,0,0,1,5.786,17.717Z"/>
</g>
<g>
<path d="M18.221,13.217a.5.5,0,0,1-.5-.5v-1.5a.5.5,0,0,1,1,0v1.5A.5.5,0,0,1,18.221,13.217Z"/>
<path d="M18.221,17.717a.5.5,0,0,1-.5-.5v-1.5a.5.5,0,0,1,1,0v1.5A.5.5,0,0,1,18.221,17.717Z"/>
</g>
</g>`,
},
{
name: 'hotdog',
svg: `<g>
<path d="M19.1,9.349l-9.74,9.74.01.01,9.74-9.74Z"/>
<path d="M20.276,9.119l-.47-.47a3.157,3.157,0,0,0-.03-4.43,3.212,3.212,0,0,0-4.42-.03l-.48-.48a2.3,2.3,0,0,0-3.18,0l-7.98,7.98a2.263,2.263,0,0,0,0,3.18l.48.48a3.145,3.145,0,0,0,.03,4.42,3.089,3.089,0,0,0,2.23.92,3.126,3.126,0,0,0,2.2-.89l.47.47a2.245,2.245,0,0,0,3.18,0l7.97-7.97A2.245,2.245,0,0,0,20.276,9.119Zm-15.85,3.27,7.97-7.97a1.243,1.243,0,0,1,1.77,0l.47.47L4.9,14.629l-.47-.47A1.249,1.249,0,0,1,4.426,12.389Zm3.52,6.7a2.2,2.2,0,0,1-3.02-.03,2.149,2.149,0,0,1-.03-3.01l11.16-11.16a2.163,2.163,0,0,1,1.49-.6,2.155,2.155,0,0,1,1.55,3.65Zm11.63-7.49-7.98,7.97a1.275,1.275,0,0,1-1.76,0l-.47-.47-.01-.01,9.74-9.74.01.01.47.47A1.268,1.268,0,0,1,19.576,11.6Z"/>
<path d="M6.57,17.569a.5.5,0,0,1-.354-.854,4.533,4.533,0,0,1,1.357-.967,3.491,3.491,0,0,0,1.1-.778,3.514,3.514,0,0,0,.779-1.1,5.034,5.034,0,0,1,2.324-2.324,3.517,3.517,0,0,0,1.1-.78,3.536,3.536,0,0,0,.78-1.1,4.534,4.534,0,0,1,.97-1.359,4.54,4.54,0,0,1,1.359-.97,3.53,3.53,0,0,0,1.1-.78.5.5,0,1,1,.707.707,4.516,4.516,0,0,1-1.36.969,3.506,3.506,0,0,0-1.1.781,3.535,3.535,0,0,0-.781,1.1,4.516,4.516,0,0,1-.969,1.36,4.5,4.5,0,0,1-1.359.969,4.029,4.029,0,0,0-1.874,1.874,4.5,4.5,0,0,1-.967,1.357,4.524,4.524,0,0,1-1.358.968,3.51,3.51,0,0,0-1.1.777A.5.5,0,0,1,6.57,17.569Z"/>
</g>`,
},
{
name: 'ice_cream',
svg: '<path d="M16.54,5.94a4.594,4.594,0,0,0-9.08,0,3.065,3.065,0,0,0-.76,5.85l3.92,9.25a1.5,1.5,0,0,0,2.76,0l3.92-9.26a3.058,3.058,0,0,0-.76-5.84ZM12.46,20.65a.5.5,0,0,1-.92,0L7.89,12.03h8.22Zm3.64-9.62H7.9a2.06,2.06,0,1,1,.01-4.12.5.5,0,0,0,.5-.48,3.6,3.6,0,0,1,7.18,0,.506.506,0,0,0,.51.48,2.06,2.06,0,0,1,0,4.12Z"/>',
},
{
name: 'image_off',
svg: `<g>
<path d="M19.937,14.218l0,-8.654c0,-0.829 -0.672,-1.5 -1.5,-1.5l-10.628,-0c-0.276,-0 -0.5,-0.225 -0.5,-0.5c0,-0.276 0.224,-0.5 0.5,-0.5l10.628,-0c1.38,-0 2.5,1.118 2.5,2.5l0,10.624c0,0.276 -0.224,0.5 -0.5,0.501c-0.276,-0 -0.5,-0.225 -0.5,-0.5l0,-0.556l-4.583,-4.584c-0.456,-0.456 0.251,-1.163 0.707,-0.707c0.162,0.162 2.37,2.37 3.876,3.876Zm-0.121,6.304c-0.395,0.262 -0.869,0.415 -1.379,0.415l-12.874,-0c-1.381,-0 -2.5,-1.119 -2.5,-2.5l0,-12.873c0,-0.51 0.153,-0.984 0.414,-1.38l-0.263,-0.263c-0.456,-0.456 0.251,-1.163 0.707,-0.707c0.088,0.088 0.176,0.176 0.263,0.263c0.245,0.245 16.095,16.094 16.339,16.338l0.263,0.263c0.455,0.456 -0.252,1.163 -0.707,0.707c-0.088,-0.087 -0.175,-0.175 -0.263,-0.263Zm-11.104,-11.103l-2.001,-2.001c-0.094,0.196 -0.146,0.415 -0.146,0.647c-0,0.829 0.672,1.5 1.5,1.5c0.232,-0 0.451,-0.052 0.647,-0.146Zm-2.733,-2.733l-1.77,-1.77c-0.093,0.196 -0.146,0.416 -0.146,0.648l0,10.717l1.926,-1.926c0.587,-0.586 1.536,-0.586 2.122,-0l0.555,0.554c0.195,0.196 0.511,0.196 0.706,0l2.415,-2.415l-2.343,-2.343c-0.395,0.262 -0.869,0.414 -1.379,0.414c-1.38,-0 -2.5,-1.119 -2.5,-2.5c-0,-0.509 0.152,-0.983 0.414,-1.379Zm-1.916,11.009l0,0.741c0,0.829 0.671,1.5 1.5,1.5l12.874,0c0.232,0 0.451,-0.052 0.647,-0.145c-0.165,-0.165 -3.264,-3.263 -6.59,-6.59l-2.414,2.415c-0.585,0.586 -1.537,0.586 -2.122,0l-0.554,-0.554c-0.195,-0.196 -0.512,-0.196 -0.708,0l-2.633,2.633Z"/>
</g>`,
},
{
name: 'image_on',
svg: `<g>
<path d="M18.435,3.06H5.565c-1.38,0-2.5,1.12-2.5,2.5v12.88c0,1.37,1.12,2.5,2.5,2.5h12.87
c1.38,0,2.5-1.13,2.5-2.5V5.56C20.935,4.18,19.815,3.06,18.435,3.06z M4.065,5.56c0-0.82,0.67-1.5,1.5-1.5h12.87
c0.83,0,1.5,0.68,1.5,1.5v8.66l-3.88-3.88c-0.58-0.58-1.53-0.58-2.12,0l-4.56,4.57c-0.2,0.19-0.52,0.19-0.71,0l-0.56-0.56
c-0.28-0.28-0.66-0.43-1.06-0.43c-0.4,0-0.78,0.15-1.06,0.43l-1.92,1.92V5.56z M19.935,18.44c0,0.82-0.67,1.5-1.5,1.5H5.565
c-0.83,0-1.5-0.68-1.5-1.5v-0.75l2.63-2.63c0.09-0.09,0.22-0.14,0.35-0.14c0.14,0,0.26,0.05,0.36,0.14l0.55,0.56
c0.59,0.58,1.54,0.58,2.12,0l4.57-4.57c0.19-0.2,0.51-0.2,0.71,0l4.58,4.58V18.44z"/>
<path d="M8.062,10.565c-1.379,0-2.5-1.121-2.5-2.5s1.121-2.5,2.5-2.5s2.5,1.121,2.5,2.5
S9.441,10.565,8.062,10.565z M8.062,6.565c-0.827,0-1.5,0.673-1.5,1.5s0.673,1.5,1.5,1.5s1.5-0.673,1.5-1.5S8.89,6.565,8.062,6.565
z"/>
</g>`,
},
{
name: 'import',
svg: `<g>
<path d="M5.552,20.968c-1.541-0.056-2.496-1.249-2.504-2.729c-0.012-2.153,0-4.307,0-6.46
c0-0.645,1-0.643,1,0c0,2.199-0.032,4.401,0,6.6c0.016,1.107,0.848,1.589,1.838,1.589h12.467c0.643-0.021,1.237-0.337,1.472-0.97
c0.125-0.337,0.095-0.708,0.095-1.061c0-2.053,0-4.106,0-6.159l0,0c0-0.645,1-0.643,1,0c0,2.224,0.086,4.465,0,6.688
c-0.058,1.498-1.209,2.489-2.67,2.502H5.552z"/>
<path d="M11.63,15.818c0.097,0.097,0.205,0.133,0.311,0.138c0.014,0.002,0.028,0.005,0.042,0.006
c0.014-0.001,0.027-0.004,0.041-0.006c0.107-0.005,0.215-0.041,0.312-0.138l3.669-3.669c0.456-0.456-0.251-1.163-0.707-0.707
c-0.938,0.938-1.877,1.877-2.815,2.815V3.515c0-0.643-1-0.644-1,0v10.742l-2.815-2.815c-0.456-0.456-1.163,0.251-0.707,0.707
L11.63,15.818z"/>
</g>`,
},
{
name: 'inbox_in',
svg: `<g>
<path d="M11.499,9.361v-4.83c0-0.64,1-0.64,1,0v4.82c0.42-0.42,0.85-0.85,1.27-1.27
c0.2-0.19,0.51-0.18,0.71,0c0.2,0.19,0.18,0.53,0,0.71l-2.13,2.12c-0.18,0.2-0.52,0.19-0.7,0l-2.12-2.12
c-0.2-0.2-0.19-0.51,0-0.71c0.18-0.19,0.52-0.18,0.7,0L11.499,9.361z"/>
<path d="M20.488,19.949H3.512c-0.799,0-1.45-0.65-1.45-1.449v-5.639c0-0.799,0.65-1.45,1.45-1.45h4.104
c0.55,0,1.046,0.305,1.294,0.796l1.373,2.726c0.077,0.152,0.231,0.247,0.402,0.247h2.629c0.171,0,0.325-0.095,0.402-0.248
l1.373-2.724c0.248-0.492,0.744-0.797,1.294-0.797h4.103c0.8,0,1.45,0.65,1.45,1.45V18.5
C21.938,19.299,21.287,19.949,20.488,19.949z M3.512,12.412c-0.248,0-0.45,0.202-0.45,0.45V18.5c0,0.248,0.202,0.449,0.45,0.449
h16.976c0.248,0,0.45-0.201,0.45-0.449v-5.639c0-0.248-0.202-0.45-0.45-0.45h-4.103c-0.171,0-0.325,0.095-0.402,0.247l-1.373,2.725
c-0.248,0.491-0.744,0.797-1.294,0.797h-2.629c-0.551,0-1.047-0.306-1.295-0.798l-1.373-2.724
c-0.077-0.152-0.231-0.247-0.402-0.247H3.512z"/>
</g>`,
},
{
name: 'inbox_out',
svg: `<g>
<path d="M20.488,19.944H3.512c-0.799,0-1.45-0.65-1.45-1.449v-5.639c0-0.799,0.65-1.45,1.45-1.45h4.104
c0.55,0,1.046,0.305,1.294,0.797l1.373,2.725c0.077,0.152,0.231,0.247,0.402,0.247h2.629c0.171,0,0.325-0.095,0.402-0.248
l1.373-2.724c0.248-0.492,0.744-0.797,1.294-0.797h4.104c0.799,0,1.45,0.65,1.45,1.45v5.639
C21.938,19.293,21.287,19.944,20.488,19.944z M3.512,12.406c-0.248,0-0.45,0.202-0.45,0.45v5.639c0,0.248,0.202,0.449,0.45,0.449
h16.976c0.248,0,0.45-0.201,0.45-0.449v-5.639c0-0.248-0.202-0.45-0.45-0.45h-4.104c-0.171,0-0.325,0.095-0.402,0.247l-1.373,2.725
c-0.248,0.491-0.744,0.797-1.294,0.797h-2.629c-0.55,0-1.046-0.306-1.294-0.797l-1.373-2.725c-0.077-0.152-0.231-0.247-0.402-0.247
H3.512z"/>
<path d="M12.503,5.753v4.83c0,0.64-1,0.64-1,0v-4.82c-0.42,0.42-0.85,0.85-1.27,1.27
c-0.2,0.19-0.51,0.18-0.71,0c-0.2-0.19-0.18-0.53,0-0.71l2.13-2.12c0.18-0.2,0.52-0.19,0.7,0l2.12,2.12c0.2,0.2,0.19,0.51,0,0.71
c-0.18,0.19-0.52,0.18-0.7,0L12.503,5.753z"/>
</g>`,
},
{
name: 'indent',
svg: `<g>
<path d="M20.437,4.064H3.563a.5.5,0,0,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,9.688h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,15.312h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,20.936H3.563a.5.5,0,1,1,0-1H20.437a.5.5,0,1,1,0,1Z"/>
<path d="M7.91,11.65a.492.492,0,0,1,0,.7l-2,2a.495.495,0,0,1-.7-.7L6.36,12.5H3.54a.5.5,0,0,1,0-1H6.35c-.38-.38-.76-.76-1.14-1.15a.495.495,0,0,1,.7-.7Z"/>
</g>`,
},
{
name: 'instagram',
svg: `<g>
<path d="M18.437,20.937H5.563a2.5,2.5,0,0,1-2.5-2.5V5.563a2.5,2.5,0,0,1,2.5-2.5H18.437a2.5,2.5,0,0,1,2.5,2.5V18.437A2.5,2.5,0,0,1,18.437,20.937ZM5.563,4.063a1.5,1.5,0,0,0-1.5,1.5V18.437a1.5,1.5,0,0,0,1.5,1.5H18.437a1.5,1.5,0,0,0,1.5-1.5V5.563a1.5,1.5,0,0,0-1.5-1.5Z"/>
<path d="M12,16.594A4.595,4.595,0,1,1,16.6,12,4.6,4.6,0,0,1,12,16.594ZM12,8.4A3.595,3.595,0,1,0,15.6,12,3.6,3.6,0,0,0,12,8.4Z"/>
<circle cx="17.2" cy="6.83" r="1.075"/>
</g>`,
},
{
name: 'keyboard',
svg: `<g>
<path d="M19.437,18.5H4.562c-1.379,0-2.5-1.121-2.5-2.5V8c0-1.379,1.121-2.5,2.5-2.5h14.875
c1.379,0,2.5,1.121,2.5,2.5v8C21.937,17.379,20.816,18.5,19.437,18.5z M4.562,6.5c-0.827,0-1.5,0.673-1.5,1.5v8
c0,0.827,0.673,1.5,1.5,1.5h14.875c0.827,0,1.5-0.673,1.5-1.5V8c0-0.827-0.673-1.5-1.5-1.5H4.562z"/>
<path d="M5.548,16.5c3.772,0,7.543,0,11.315,0c0.53,0,1.06,0,1.59,0c0.643,0,0.645-1,0-1
c-3.772,0-7.543,0-11.315,0c-0.53,0-1.06,0-1.59,0C4.904,15.5,4.903,16.5,5.548,16.5L5.548,16.5z"/>
<g>
<circle cx="5.82" cy="9.248" r="0.75"/>
<circle cx="9.94" cy="9.248" r="0.75"/>
<circle cx="14.06" cy="9.248" r="0.75"/>
<circle cx="18.18" cy="9.248" r="0.75"/>
</g>
<g>
<circle cx="5.82" cy="12.998" r="0.75"/>
<circle cx="9.94" cy="12.998" r="0.75"/>
<circle cx="14.06" cy="12.998" r="0.75"/>
<circle cx="18.18" cy="12.998" r="0.75"/>
</g>
</g>`,
},
{
name: 'laptop',
svg: `<path d="M21.485,16.155c-0.19-0.23-0.47-0.36-0.77-0.36h-0.33v-9.23c0-1.38-1.12-2.5-2.5-2.5H6.115
c-1.38,0-2.5,1.12-2.5,2.5v9.23h-0.34c-0.29,0-0.57,0.13-0.76,0.36c-0.19,0.22-0.27,0.52-0.22,0.81l0.3,1.73
c0.13,0.72,0.75,1.24,1.48,1.24h15.85c0.73,0,1.35-0.52,1.48-1.24l0.3-1.73C21.755,16.675,21.675,16.375,21.485,16.155z
M4.615,6.565c0-0.82,0.67-1.5,1.5-1.5h11.77c0.83,0,1.5,0.68,1.5,1.5v9.23H4.615V6.565z M20.415,18.525
c-0.04,0.24-0.25,0.41-0.49,0.41H4.075c-0.24,0-0.45-0.17-0.49-0.41l-0.31-1.73h17.44L20.415,18.525z"/>`,
},
{
name: 'lemon',
svg: `<g>
<path d="M6,20.924a2.172,2.172,0,0,1-1.545-.642l-.734-.733a2.207,2.207,0,0,1-.16-2.947,1.18,1.18,0,0,0,.272-1.117A9.105,9.105,0,0,1,6.205,6.208a9.1,9.1,0,0,1,9.277-2.371,1.149,1.149,0,0,0,1.062-.229l.055-.044a2.205,2.205,0,0,1,2.946.161l.734.733a2.207,2.207,0,0,1,.16,2.947,1.179,1.179,0,0,0-.272,1.116A9.11,9.11,0,0,1,17.8,17.8,9.109,9.109,0,0,1,8.518,20.17a1.14,1.14,0,0,0-1.062.229A2.324,2.324,0,0,1,6,20.924ZM12.812,4.4a8.427,8.427,0,0,0-5.9,2.519,8.1,8.1,0,0,0-2.133,8.246,2.149,2.149,0,0,1-.395,2.014,1.227,1.227,0,0,0,.044,1.667l.734.733a1.209,1.209,0,0,0,1.613.088,2.175,2.175,0,0,1,2.067-.438,8.1,8.1,0,0,0,8.246-2.133,8.1,8.1,0,0,0,2.133-8.246,2.144,2.144,0,0,1,.395-2.013,1.229,1.229,0,0,0-.044-1.668l-.734-.733a1.206,1.206,0,0,0-1.612-.089l-.052.042a2.148,2.148,0,0,1-2.016.4A7.213,7.213,0,0,0,12.812,4.4Z"/>
<path d="M6.457,12.286a.523.523,0,0,1-.178-.032.5.5,0,0,1-.29-.646,9.841,9.841,0,0,1,5.338-5.5.5.5,0,1,1,.386.921,8.845,8.845,0,0,0-4.789,4.939A.5.5,0,0,1,6.457,12.286Z"/>
</g>`,
},
{
name: 'light',
svg: `<g>
<g>
<path d="M12,18.09A6.09,6.09,0,1,1,18.09,12,6.1,6.1,0,0,1,12,18.09ZM12,6.91A5.09,5.09,0,1,0,17.09,12,5.1,5.1,0,0,0,12,6.91Z"/>
<path d="M11.5,2.568v1.6a.5.5,0,1,0,1,0v-1.6a.5.5,0,1,0-1,0Z"/>
<path d="M12.5,21.432v-1.6a.5.5,0,0,0-1,0v1.6a.5.5,0,1,0,1,0Z"/>
<path d="M21.432,11.5h-1.6a.5.5,0,0,0,0,1h1.6a.5.5,0,1,0,0-1Z"/>
<path d="M2.568,12.5h1.6a.5.5,0,1,0,0-1h-1.6a.5.5,0,1,0,0,1Z"/>
<path d="M18.316,4.977l-.992.992-.141.141a.514.514,0,0,0-.146.353.508.508,0,0,0,.146.354.5.5,0,0,0,.354.146.515.515,0,0,0,.353-.146l.992-.992.141-.141a.515.515,0,0,0,.147-.354.508.508,0,0,0-.147-.353.5.5,0,0,0-.353-.147.522.522,0,0,0-.354.147Z"/>
<path d="M5.684,19.023l.992-.992.141-.141a.514.514,0,0,0,.146-.353.508.508,0,0,0-.146-.354.5.5,0,0,0-.354-.146.515.515,0,0,0-.353.146l-.992.992-.141.141a.515.515,0,0,0-.147.354.508.508,0,0,0,.147.353.5.5,0,0,0,.353.147.522.522,0,0,0,.354-.147Z"/>
<path d="M19.023,18.316l-.992-.992-.141-.141a.514.514,0,0,0-.353-.146.508.508,0,0,0-.354.146.5.5,0,0,0-.146.354.515.515,0,0,0,.146.353l.992.992.141.141a.515.515,0,0,0,.354.147.508.508,0,0,0,.353-.147.5.5,0,0,0,.147-.353.522.522,0,0,0-.147-.354Z"/>
<path d="M4.977,5.684l.992.992.141.141a.514.514,0,0,0,.353.146.508.508,0,0,0,.354-.146.5.5,0,0,0,.146-.354.515.515,0,0,0-.146-.353l-.992-.992-.141-.141A.515.515,0,0,0,5.33,4.83a.508.508,0,0,0-.353.147.5.5,0,0,0-.147.353.522.522,0,0,0,.147.354Z"/>
</g>
</g>`,
},
{
name: 'line_height',
svg: `<g>
<path d="M20.439,4.062h-9a.5.5,0,1,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.439,9.686h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.439,15.31h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.439,20.934h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M3.208,18.8a.5.5,0,0,1,.71-.71l1.14,1.14V4.775l-1.14,1.14a.513.513,0,0,1-.71,0,.5.5,0,0,1,0-.71l2-2a.494.494,0,0,1,.34-.14.549.549,0,0,1,.37.14l2,2a.524.524,0,0,1,0,.71.5.5,0,0,1-.71,0l-1.15-1.15v14.47l1.15-1.15a.5.5,0,1,1,.71.71l-2,2a.513.513,0,0,1-.71,0Z"/>
</g>`,
},
{
name: 'link',
svg: `<g>
<path d="M10.9,8a4.055,4.055,0,0,1,1.352.135,2.511,2.511,0,0,1-.7,4.863.5.5,0,0,0,0,1,3.508,3.508,0,0,0,2.944-5.2A3.557,3.557,0,0,0,11.434,7H5.59A3.5,3.5,0,0,0,5.4,14c.724.041,1.458,0,2.183,0a.5.5,0,0,0,0-1h0c-1.323,0-2.915.262-3.891-.843A2.522,2.522,0,0,1,5.59,8Z"/>
<path d="M18.41,17a3.5,3.5,0,0,0,.192-6.994c-.724-.041-1.458,0-2.183,0a.5.5,0,0,0,0,1h0c1.323,0,2.915-.262,3.891.843A2.522,2.522,0,0,1,18.41,16H13.1a4.055,4.055,0,0,1-1.352-.135,2.511,2.511,0,0,1,.7-4.863.5.5,0,0,0,0-1,3.508,3.508,0,0,0-2.944,5.2A3.557,3.557,0,0,0,12.566,17Z"/>
</g>`,
},
{
name: 'linkedin',
svg: `<g>
<path d="M18.44,3.06H5.56a2.507,2.507,0,0,0-2.5,2.5V18.44a2.507,2.507,0,0,0,2.5,2.5H18.44a2.5,2.5,0,0,0,2.5-2.5V5.56A2.5,2.5,0,0,0,18.44,3.06Zm1.5,15.38a1.511,1.511,0,0,1-1.5,1.5H5.56a1.511,1.511,0,0,1-1.5-1.5V5.56a1.511,1.511,0,0,1,1.5-1.5H18.44a1.511,1.511,0,0,1,1.5,1.5Z"/>
<g>
<path d="M6.376,10.748a1,1,0,1,1,2,0v6.5h0a1,1,0,0,1-2,0Z"/>
<circle cx="7.376" cy="6.744" r="1"/>
<path d="M17.62,13.37v3.88a1,1,0,1,1-2,0V13.37a1.615,1.615,0,1,0-3.23,0v3.88a1,1,0,0,1-2,0v-6.5a1.016,1.016,0,0,1,1-1,.94.94,0,0,1,.84.47,3.609,3.609,0,0,1,5.39,3.15Z"/>
</g>
</g>`,
},
{
name: 'location_arrow_1',
svg: '<path d="M14.472,20.937a1.438,1.438,0,0,1-1.3-.812L10.3,14.343a1.418,1.418,0,0,0-.642-.641L3.874,10.831A1.462,1.462,0,0,1,4.06,8.136l14.952-5a1.46,1.46,0,0,1,1.849,1.847l-5,14.952a1.439,1.439,0,0,1-1.284.994C14.543,20.936,14.507,20.937,14.472,20.937ZM19.479,4.063a.488.488,0,0,0-.149.024h0l-14.952,5a.46.46,0,0,0-.058.849L10.1,12.805A2.444,2.444,0,0,1,11.2,13.9l2.87,5.782a.443.443,0,0,0,.445.255.45.45,0,0,0,.4-.312l5-14.953a.462.462,0,0,0-.433-.607Z"/>',
},
{
name: 'location_off',
svg: `<g>
<path d="M18.2,14.462a.5.5,0,0,1-.417-.775A6.791,6.791,0,0,0,18.831,9.06a6.909,6.909,0,0,0-6.022-5.946A6.834,6.834,0,0,0,8.252,4.175a.5.5,0,1,1-.545-.838,7.882,7.882,0,0,1,10.909,10.9A.5.5,0,0,1,18.2,14.462Z"/>
<path d="M4,3.3a.5.5,0,0,0-.7.7l1.92,1.92a7.784,7.784,0,0,0-1.11,4.03A7.879,7.879,0,0,0,5.55,14.5l5.06,6.74a1.724,1.724,0,0,0,1.39.69,1.705,1.705,0,0,0,1.38-.69l3.06-4.09c.5.49.99.99,1.48,1.48.7.69,1.39,1.38,2.08,2.07.45.46,1.16-.25.7-.71Zm8.58,17.34a.734.734,0,0,1-.58.29.754.754,0,0,1-.59-.29l-5.05-6.73a6.9,6.9,0,0,1-.41-7.26q1.5,1.515,3.01,3.01,3.39,3.39,6.77,6.78Z"/>
</g>`,
},
{
name: 'location_on',
svg: `<g>
<path d="M12,21.933a1.715,1.715,0,0,1-1.384-.691L5.555,14.5a7.894,7.894,0,1,1,12.885-.009L13.385,21.24A1.717,1.717,0,0,1,12,21.933ZM11.992,3.066A6.81,6.81,0,0,0,7.414,4.815a6.891,6.891,0,0,0-1.05,9.1l5.051,6.727a.725.725,0,0,0,.584.292h0a.732.732,0,0,0,.586-.292l5.044-6.734A6.874,6.874,0,0,0,12.81,3.113,7.277,7.277,0,0,0,11.992,3.066Z"/>
<path d="M12,12.5A2.5,2.5,0,1,1,14.5,10,2.5,2.5,0,0,1,12,12.5Zm0-4A1.5,1.5,0,1,0,13.5,10,1.5,1.5,0,0,0,12,8.5Z"/>
</g>`,
},
{
name: 'lock',
svg: `<g>
<path d="M17.44,9.33h-1.1V6.4c0-2.39-1.95-4.34-4.34-4.34S7.66,4.01,7.66,6.4v2.93h-1.1
c-1.38,0-2.5,1.12-2.5,2.5v7.61c0,1.37,1.12,2.5,2.5,2.5h10.88c1.38,0,2.5-1.13,2.5-2.5v-7.61C19.94,10.45,18.82,9.33,17.44,9.33z
M8.66,6.4c0-1.84,1.5-3.34,3.34-3.34s3.34,1.5,3.34,3.34v2.93H8.66V6.4z M18.94,19.44c0,0.82-0.68,1.5-1.5,1.5H6.56
c-0.82,0-1.5-0.68-1.5-1.5v-7.61c0-0.83,0.68-1.5,1.5-1.5h10.88c0.82,0,1.5,0.67,1.5,1.5V19.44z"/>
<path d="M13,14.95c0,0.37-0.2,0.69-0.5,0.86v1.5c0,0.28-0.23,0.49-0.5,0.5s-0.5-0.24-0.5-0.5v-1.5
c-0.3-0.17-0.5-0.49-0.5-0.86c0-0.55,0.45-1,1-1S13,14.4,13,14.95z"/>
</g>`,
},
{
name: 'login',
svg: `<g>
<path d="M20.968,18.448c-0.056,1.541-1.249,2.496-2.729,2.504c-2.153,0.012-4.307,0-6.46,0
c-0.645,0-0.643-1,0-1c2.199,0,4.401,0.032,6.6,0c1.107-0.016,1.589-0.848,1.589-1.838V5.647c-0.021-0.643-0.337-1.237-0.97-1.472
C18.662,4.05,18.291,4.08,17.937,4.08c-2.053,0-4.106,0-6.159,0l0,0c-0.645,0-0.643-1,0-1c2.224,0,4.465-0.086,6.688,0
c1.498,0.058,2.489,1.209,2.502,2.67V18.448z"/>
<path d="M15.818,12.37c0.097-0.097,0.133-0.205,0.138-0.311c0.002-0.014,0.005-0.028,0.006-0.042
c-0.001-0.014-0.004-0.027-0.006-0.041c-0.005-0.107-0.041-0.215-0.138-0.312l-3.669-3.669c-0.456-0.456-1.163,0.251-0.707,0.707
c0.938,0.938,1.877,1.877,2.815,2.815H3.515c-0.643,0-0.644,1,0,1h10.742l-2.815,2.815c-0.456,0.456,0.251,1.163,0.707,0.707
L15.818,12.37z"/>
</g>`,
},
{
name: 'logout',
svg: `<g>
<path d="M20.968,18.448c-0.056,1.541-1.249,2.496-2.729,2.504c-2.153,0.012-4.307,0-6.46,0
c-0.645,0-0.643-1,0-1c2.199,0,4.401,0.032,6.6,0c1.107-0.016,1.589-0.848,1.589-1.838V5.647c-0.021-0.643-0.337-1.237-0.97-1.472
C18.662,4.05,18.291,4.08,17.937,4.08c-2.053,0-4.106,0-6.159,0l0,0c-0.645,0-0.643-1,0-1c2.224,0,4.465-0.086,6.688,0
c1.498,0.058,2.489,1.209,2.502,2.67V18.448z"/>
<path d="M3.176,11.663c-0.097,0.097-0.133,0.205-0.138,0.311c-0.002,0.014-0.005,0.028-0.006,0.042
c0.001,0.014,0.004,0.027,0.006,0.041c0.005,0.107,0.041,0.215,0.138,0.312l3.669,3.669c0.456,0.456,1.163-0.251,0.707-0.707
c-0.938-0.938-1.877-1.877-2.815-2.815h10.742c0.643,0,0.644-1,0-1H4.737l2.815-2.815c0.456-0.456-0.251-1.163-0.707-0.707
L3.176,11.663z"/>
</g>`,
},
{
name: 'lolipop',
svg: '<path d="M18,6.565h-.19a6,6,0,0,0-11.62,0H6a1.5,1.5,0,1,0,0,3h.19a5.992,5.992,0,0,0,5.31,4.48v7.39a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-7.39a6.013,6.013,0,0,0,5.31-4.48H18a1.5,1.5,0,1,0,0-3Zm-6-3.5a4.991,4.991,0,0,1,4.77,3.5H7.23A4.991,4.991,0,0,1,12,3.065Zm0,10a4.991,4.991,0,0,1-4.77-3.5h9.54A4.991,4.991,0,0,1,12,13.065Zm6-4.5H6a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5H18a.5.5,0,0,1,.5.5A.508.508,0,0,1,18,8.565Z"/>',
},
{
name: 'mail',
svg: `<path d="M19.435,4.065H4.565c-1.38,0-2.5,1.12-2.5,2.5v10.87c0,1.38,1.12,2.5,2.5,2.5h14.87
c1.38,0,2.5-1.12,2.5-2.5V6.565C21.935,5.185,20.815,4.065,19.435,4.065z M4.565,5.065h14.87c0.79,0,1.44,0.61,1.49,1.39
c-2.47,1.32-4.95,2.63-7.43,3.95c-0.34,0.18-0.69,0.42-1.06,0.53c-0.64,0.2-1.14-0.11-1.67-0.39c-1.42-0.75-2.84-1.51-4.25-2.26
c-1.14-0.6-2.3-1.21-3.44-1.82C3.125,5.685,3.765,5.065,4.565,5.065z M20.935,17.435c0,0.83-0.67,1.5-1.5,1.5H4.565
c-0.83,0-1.5-0.67-1.5-1.5v-9.84c2.36,1.24,4.71,2.5,7.07,3.75c0.43,0.22,0.87,0.5,1.35,0.6c0.72,0.15,1.38-0.07,2-0.41
c1.45-0.76,2.89-1.53,4.34-2.29c1.04-0.56,2.07-1.1,3.11-1.65V17.435z"/>`,
},
{
name: 'map_pin',
svg: '<path d="M12,2.06a5.5,5.5,0,0,0-.5,10.97v8.41a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5V13.03A5.5,5.5,0,0,0,12,2.06Zm0,10a4.5,4.5,0,1,1,4.5-4.5A4.5,4.5,0,0,1,12,12.06Z"/>',
},
{
name: 'map',
svg: '<path d="M20.21,4.576a1.906,1.906,0,0,0-1.63-.35l-3.53.89a1.086,1.086,0,0,1-.44,0L9.63,3.876a2.041,2.041,0,0,0-.92,0L4.5,4.936a1.893,1.893,0,0,0-1.44,1.84v11.15a1.871,1.871,0,0,0,.73,1.5,1.906,1.906,0,0,0,1.63.35l3.53-.89a1.086,1.086,0,0,1,.44,0l4.98,1.24a2.315,2.315,0,0,0,.46.05,2.4,2.4,0,0,0,.46-.05l4.21-1.06a1.893,1.893,0,0,0,1.44-1.84V6.076A1.871,1.871,0,0,0,20.21,4.576ZM8.67,17.926l-3.49.87a.89.89,0,0,1-1.12-.87V6.776a.9.9,0,0,1,.68-.87l3.93-.99Zm5.66,1.16-4.66-1.16V4.916l4.66,1.16Zm5.61-1.86a.9.9,0,0,1-.68.87l-3.93.99V6.076l3.49-.87a.908.908,0,0,1,.78.16.886.886,0,0,1,.34.71Z"/>',
},
{
name: 'maximize_1',
svg: `<g>
<path d="M3.065,16.16c0-0.65,1-0.65,1,0v3.07l0.01-0.01c2.02-2.02,4.05-4.05,6.07-6.07
c0.46-0.45,1.16,0.25,0.71,0.71c-0.29,0.29-0.58,0.57-0.87,0.86c-1.74,1.74-3.47,3.48-5.21,5.22h3.07c0.65,0,0.64,1,0,1h-4.28
c-0.15,0-0.26-0.05-0.34-0.14c-0.01-0.01-0.02-0.01-0.02-0.02c-0.07-0.06-0.12-0.15-0.13-0.26
C3.066,20.442,3.065,16.16,3.065,16.16z"/>
<path d="M20.935,3.56v4.28c0,0.65-1,0.65-1,0V4.77l-0.01,0.01c-2.03,2.02-4.05,4.05-6.07,6.07
c-0.46,0.45-1.16-0.25-0.71-0.71c0.29-0.29,0.58-0.57,0.86-0.86c1.75-1.74,3.48-3.48,5.22-5.22h-3.07c-0.65,0-0.65-1,0-1h4.28
c0.15,0,0.26,0.05,0.34,0.14c0.01,0.01,0.02,0.01,0.02,0.02C20.885,3.3,20.935,3.41,20.935,3.56z"/>
</g>`,
},
{
name: 'maximize_2',
svg: `<g>
<path d="M10.513,3.066c-1.861,0-3.722,0-5.583,0c-0.402,0-0.79-0.002-1.15,0.22
C3.266,3.604,3.063,4.144,3.063,4.723c0,0.997,0,1.994,0,2.991c0,0.934,0,1.868,0,2.802c0,0.643,1,0.645,1,0
c0-1.803,0-3.606,0-5.409c0-0.212-0.042-0.482,0.022-0.689C4.2,4.045,4.554,4.066,4.862,4.066c1.019,0,2.037,0,3.056,0
c0.865,0,1.73,0,2.595,0C11.157,4.066,11.158,3.066,10.513,3.066L10.513,3.066z"/>
<path d="M3.063,13.488c0,1.861,0,3.722,0,5.583c0,0.402-0.002,0.79,0.22,1.15
c0.318,0.515,0.858,0.717,1.437,0.717c0.997,0,1.994,0,2.991,0c0.934,0,1.868,0,2.802,0c0.643,0,0.645-1,0-1
c-1.803,0-3.606,0-5.409,0c-0.212,0-0.482,0.042-0.689-0.022c-0.373-0.115-0.352-0.469-0.352-0.777c0-1.019,0-2.037,0-3.056
c0-0.865,0-1.73,0-2.595C4.063,12.844,3.063,12.843,3.063,13.488L3.063,13.488z"/>
<path d="M13.487,20.934c1.861,0,3.722,0,5.583,0c0.402,0,0.79,0.002,1.15-0.22
c0.515-0.318,0.717-0.858,0.717-1.437c0-0.997,0-1.994,0-2.991c0-0.934,0-1.868,0-2.802c0-0.643-1-0.645-1,0
c0,1.803,0,3.606,0,5.409c0,0.212,0.042,0.482-0.022,0.689c-0.115,0.373-0.469,0.352-0.777,0.352c-1.019,0-2.037,0-3.056,0
c-0.865,0-1.73,0-2.595,0C12.843,19.934,12.842,20.934,13.487,20.934L13.487,20.934z"/>
<path d="M20.937,10.512c0-1.861,0-3.722,0-5.583c0-0.402,0.002-0.79-0.22-1.15
c-0.318-0.515-0.858-0.717-1.437-0.717c-0.997,0-1.994,0-2.991,0c-0.934,0-1.868,0-2.802,0c-0.643,0-0.645,1,0,1
c1.803,0,3.606,0,5.409,0c0.212,0,0.482-0.042,0.689,0.022c0.373,0.115,0.352,0.469,0.352,0.777c0,1.019,0,2.037,0,3.056
c0,0.865,0,1.73,0,2.595C19.937,11.156,20.937,11.157,20.937,10.512L20.937,10.512z"/>
</g>`,
},
{
name: 'medal',
svg: `<g>
<path d="M20.692,3.755a1.519,1.519,0,0,0-1.27-.69h-4.41a1.487,1.487,0,0,0-1.36.87L12,7.485l-1.66-3.55a1.487,1.487,0,0,0-1.36-.87H4.572a1.5,1.5,0,0,0-1.35,2.14l3.73,8.02a5.638,5.638,0,0,0-.46,2.21,5.5,5.5,0,0,0,11,0,5.419,5.419,0,0,0-.46-2.2l3.75-8.03A1.525,1.525,0,0,0,20.692,3.755ZM4.122,4.785a.527.527,0,0,1,.03-.49.494.494,0,0,1,.42-.23h4.41a.507.507,0,0,1,.46.29l2.61,5.58h-.06a5.505,5.505,0,0,0-4.43,2.25Zm7.87,15.15a4.5,4.5,0,1,1,4.5-4.5A4.5,4.5,0,0,1,11.992,19.935Zm7.89-15.15-3.46,7.4a5.454,5.454,0,0,0-3.21-2.11l-.66-1.42,2-4.3a.507.507,0,0,1,.46-.29h4.41a.482.482,0,0,1,.42.23A.505.505,0,0,1,19.882,4.785Z"/>
<path d="M12.077,16.88l1.024.538a.174.174,0,0,0,.253-.184l-.2-1.14a.174.174,0,0,1,.051-.154l.828-.807a.175.175,0,0,0-.1-.3L12.8,14.669a.177.177,0,0,1-.132-.1l-.512-1.037a.174.174,0,0,0-.313,0l-.512,1.037a.174.174,0,0,1-.131.1l-1.145.166a.175.175,0,0,0-.1.3l.828.807a.174.174,0,0,1,.05.154l-.2,1.14a.174.174,0,0,0,.253.184l1.024-.538A.172.172,0,0,1,12.077,16.88Z"/>
</g>`,
},
{
name: 'medical_case',
svg: `<g>
<path d="M18.435,6.465h-1.43v-.9a2.5,2.5,0,0,0-2.5-2.5h-5a2.5,2.5,0,0,0-2.5,2.5v.9H5.565a2.5,2.5,0,0,0-2.5,2.5v9.47a2.5,2.5,0,0,0,2.5,2.5h12.87a2.5,2.5,0,0,0,2.5-2.5V8.965A2.5,2.5,0,0,0,18.435,6.465Zm-10.43-.9a1.5,1.5,0,0,1,1.5-1.5h5a1.5,1.5,0,0,1,1.5,1.5v.9h-8Zm11.93,12.87a1.5,1.5,0,0,1-1.5,1.5H5.565a1.5,1.5,0,0,1-1.5-1.5V8.965a1.5,1.5,0,0,1,1.5-1.5h12.87a1.5,1.5,0,0,1,1.5,1.5Z"/>
<path d="M14.505,13.675a.5.5,0,0,1-.5.5h-1.5v1.5a.5.5,0,0,1-.5.5.5.5,0,0,1-.5-.5v-1.5h-1.5a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5h1.5v-1.5a.5.5,0,0,1,.5-.5.508.508,0,0,1,.5.5v1.5h1.5A.508.508,0,0,1,14.505,13.675Z"/>
</g>`,
},
{
name: 'medical_clipboard',
svg: `<g>
<path d="M17.44,3.5H15.75V2.97a.949.949,0,0,0-1-.91H9.25a.949.949,0,0,0-1,.91V3.5H6.56A2.5,2.5,0,0,0,4.06,6V19.44a2.5,2.5,0,0,0,2.5,2.5H17.44a2.5,2.5,0,0,0,2.5-2.5V6A2.5,2.5,0,0,0,17.44,3.5ZM9.25,3.06l5.5.01V4.19c0,.61-.69,1.12-1.5,1.12h-2.5c-.82,0-1.5-.51-1.5-1.12Zm9.69,16.38a1.511,1.511,0,0,1-1.5,1.5H6.56a1.5,1.5,0,0,1-1.5-1.5V6a1.5,1.5,0,0,1,1.5-1.5H8.28a2.4,2.4,0,0,0,2.47,1.81h2.5A2.4,2.4,0,0,0,15.72,4.5h1.72A1.5,1.5,0,0,1,18.94,6Z"/>
<path d="M14.5,12.71a.5.5,0,0,1-.5.5H12.5v1.5a.5.5,0,0,1-.5.5.5.5,0,0,1-.5-.5v-1.5H10a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5h1.5v-1.5a.5.5,0,0,1,.5-.5.508.508,0,0,1,.5.5v1.5H14A.508.508,0,0,1,14.5,12.71Z"/>
</g>`,
},
{
name: 'medical_cross',
svg: '<path d="M12.943,20.93H11.057a2.388,2.388,0,0,1-2.386-2.386V15.3l-3.215.029a2.39,2.39,0,0,1-2.387-2.386V11.057A2.39,2.39,0,0,1,5.456,8.67H8.7L8.671,5.456A2.388,2.388,0,0,1,11.057,3.07h1.886a2.388,2.388,0,0,1,2.386,2.386V8.7l3.215-.03a2.39,2.39,0,0,1,2.387,2.387v1.886a2.39,2.39,0,0,1-2.387,2.386H15.3l.028,3.215A2.388,2.388,0,0,1,12.943,20.93ZM5.456,9.67a1.388,1.388,0,0,0-1.387,1.387v1.886a1.388,1.388,0,0,0,1.387,1.386H8.7a.972.972,0,0,1,.972.971v3.244a1.388,1.388,0,0,0,1.386,1.386h1.886a1.388,1.388,0,0,0,1.386-1.386V15.3a.972.972,0,0,1,.972-.971h3.243a1.388,1.388,0,0,0,1.387-1.386V11.057A1.388,1.388,0,0,0,18.544,9.67H15.3a.972.972,0,0,1-.972-.97V5.456A1.388,1.388,0,0,0,12.943,4.07H11.057A1.388,1.388,0,0,0,9.671,5.456V8.7a.972.972,0,0,1-.972.97Z"/>',
},
{
name: 'medical_mask',
svg: `<g>
<path d="M21.435,12.53H19.5V9.17h1.94a.5.5,0,0,0,.5-.5.5.5,0,0,0-.5-.5H19.5V7.23A2.5,2.5,0,0,0,17,4.73H7a2.507,2.507,0,0,0-2.5,2.5v.94H2.565a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5H4.5v3.36H2.565a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5H4.5v.33a4.283,4.283,0,0,0,2.43,3.84l1.74.82a7.79,7.79,0,0,0,6.67,0l1.73-.82h.01a4.274,4.274,0,0,0,2.42-3.84v-.33h1.94a.5.5,0,0,0,.5-.5A.5.5,0,0,0,21.435,12.53ZM18.5,13.86a3.238,3.238,0,0,1-1.85,2.93l-1.73.82a6.767,6.767,0,0,1-5.83,0l-1.73-.82A3.248,3.248,0,0,1,5.5,13.86V7.23A1.5,1.5,0,0,1,7,5.73H17a1.5,1.5,0,0,1,1.5,1.5Z"/>
<path d="M14.5,14.534h-5a.5.5,0,0,1,0-1h5a.5.5,0,0,1,0,1Z"/>
<path d="M16,10.168H8a.5.5,0,1,1,0-1h8a.5.5,0,0,1,0,1Z"/>
</g>`,
},
{
name: 'memo_pad',
svg: `<g>
<path d="M17.44,2.065H6.56a2.507,2.507,0,0,0-2.5,2.5v14.87a2.507,2.507,0,0,0,2.5,2.5H17.44a2.5,2.5,0,0,0,2.5-2.5V4.565A2.5,2.5,0,0,0,17.44,2.065Zm1.5,17.37a1.5,1.5,0,0,1-1.5,1.5H6.56a1.5,1.5,0,0,1-1.5-1.5V6.505H18.94Z"/>
<g>
<path d="M7.549,9.506h0a.5.5,0,0,1,0-1h8.909a.5.5,0,0,1,0,1Z"/>
<path d="M7.549,12.506h0a.5.5,0,0,1,0-1h6.5a.5.5,0,0,1,0,1Z"/>
<path d="M7.566,18.374h0a.5.5,0,1,1,0-1h3.251a.5.5,0,0,1,0,1Z"/>
</g>
</g>`,
},
{
name: 'menu_burger',
svg: `<g id="Menu_Burger">
<path d="M3.563,4.063c-0.276,-0 -0.5,-0.224 -0.5,-0.5c-0,-0.276 0.224,-0.5 0.5,-0.5l16.874,-0.001c0.276,-0 0.5,0.224 0.5,0.5c0,0.276 -0.224,0.5 -0.5,0.5l-16.874,0.001Z"/>
<path d="M3.563,12.501c-0.276,-0 -0.5,-0.224 -0.5,-0.5c-0,-0.276 0.224,-0.5 0.5,-0.5l16.874,-0.002c0.276,0 0.5,0.224 0.5,0.5c0,0.276 -0.224,0.5 -0.5,0.5l-16.874,0.002Z"/>
<path d="M3.563,20.939c-0.276,-0 -0.5,-0.224 -0.5,-0.5c-0,-0.276 0.224,-0.5 0.5,-0.5l16.874,-0.002c0.276,0 0.5,0.224 0.5,0.5c0,0.276 -0.224,0.5 -0.5,0.5l-16.874,0.002Z"/>
</g>`,
},
{
name: 'menu_fries',
svg: `<g id="Menu_Fries">
<path d="M20.437,19.937c0.276,0 0.5,0.224 0.5,0.5c0,0.276 -0.224,0.5 -0.5,0.5l-16.874,0.002c-0.276,-0 -0.5,-0.224 -0.5,-0.5c-0,-0.276 0.224,-0.5 0.5,-0.5l16.874,-0.002Z"/>
<path d="M20.437,11.5c0.276,-0 0.5,0.224 0.5,0.5c0,0.276 -0.224,0.5 -0.5,0.5l-10,0.001c-0.276,-0 -0.5,-0.224 -0.5,-0.5c-0,-0.276 0.224,-0.5 0.5,-0.5l10,-0.001Z"/>
<path d="M20.437,3.062c0.276,-0 0.5,0.224 0.5,0.5c0,0.276 -0.224,0.5 -0.5,0.5l-16.874,0.001c-0.276,-0 -0.5,-0.224 -0.5,-0.5c-0,-0.276 0.224,-0.5 0.5,-0.5l16.874,-0.001Z"/>
</g>`,
},
{
name: 'menu_kebab',
svg: `<g id="Menu_Kebab">
<path d="M14.5,12c0,1.38 -1.12,2.5 -2.5,2.5c-1.38,-0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5c1.38,-0 2.5,1.12 2.5,2.5Zm-1,-0c0,-0.828 -0.672,-1.5 -1.5,-1.5c-0.828,-0 -1.5,0.672 -1.5,1.5c0,0.828 0.672,1.5 1.5,1.5c0.828,-0 1.5,-0.672 1.5,-1.5Z"/>
<path d="M14.5,4.563c0,1.38 -1.12,2.5 -2.5,2.5c-1.38,-0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5c1.38,-0 2.5,1.12 2.5,2.5Zm-1,-0c0,-0.828 -0.672,-1.5 -1.5,-1.5c-0.828,-0 -1.5,0.672 -1.5,1.5c0,0.828 0.672,1.5 1.5,1.5c0.828,-0 1.5,-0.672 1.5,-1.5Z"/>
<path d="M14.5,19.437c0,1.38 -1.12,2.5 -2.5,2.5c-1.38,0 -2.5,-1.12 -2.5,-2.5c0,-1.38 1.12,-2.5 2.5,-2.5c1.38,0 2.5,1.12 2.5,2.5Zm-1,0c0,-0.828 -0.672,-1.5 -1.5,-1.5c-0.828,0 -1.5,0.672 -1.5,1.5c0,0.828 0.672,1.5 1.5,1.5c0.828,0 1.5,-0.672 1.5,-1.5Z"/>
</g>`,
},
{
name: 'microchip',
svg: `<g>
<path d="M13,14.499h-2c-0.827,0-1.5-0.673-1.5-1.5v-2c0-0.827,0.673-1.5,1.5-1.5h2
c0.827,0,1.5,0.673,1.5,1.5v2C14.5,13.826,13.827,14.499,13,14.499z M11,10.499c-0.275,0-0.5,0.225-0.5,0.5v2
c0,0.275,0.225,0.5,0.5,0.5h2c0.275,0,0.5-0.225,0.5-0.5v-2c0-0.275-0.225-0.5-0.5-0.5H11z"/>
<path d="M20.435,14.495h-1.93v-5h1.93c0.26,0,0.51-0.23,0.5-0.5c-0.01-0.27-0.22-0.5-0.5-0.5h-1.93v-0.5
c0-1.38-1.13-2.5-2.5-2.5h-0.5v-1.93c0-0.26-0.23-0.51-0.5-0.5c-0.28,0.01-0.5,0.22-0.5,0.5v1.93h-5v-1.93
c0-0.26-0.23-0.51-0.5-0.5c-0.28,0.01-0.5,0.22-0.5,0.5v1.93h-0.5c-1.38,0-2.5,1.12-2.5,2.5v0.5h-1.94c-0.26,0-0.51,0.23-0.5,0.5
c0.01,0.27,0.22,0.5,0.5,0.5h1.94v5h-1.94c-0.26,0-0.51,0.23-0.5,0.5c0.01,0.27,0.22,0.5,0.5,0.5h1.94v0.5c0,1.38,1.12,2.5,2.5,2.5
h0.5v1.94c0,0.26,0.23,0.51,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5v-1.94h5v1.94c0,0.26,0.23,0.51,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5
v-1.94h0.5c1.37,0,2.5-1.12,2.5-2.5v-0.5h1.93c0.26,0,0.51-0.23,0.5-0.5C20.925,14.725,20.715,14.495,20.435,14.495z
M17.505,15.995c0,0.83-0.68,1.5-1.5,1.5h-8c-0.83,0-1.5-0.67-1.5-1.5v-8c0-0.82,0.67-1.5,1.5-1.5h8c0.82,0,1.5,0.68,1.5,1.5
V15.995z"/>
</g>`,
},
{
name: 'microphone_off',
svg: `<g>
<path d="M16.5,7.046v2.4c0,0.01,0,0.01,0,0.02v2.3c0,0.64-1,0.64-1,0v-1.82H14c-0.28,0-0.49-0.23-0.5-0.5
c-0.01-0.27,0.24-0.5,0.5-0.5h1.5v-2h-1.93c-0.28,0-0.49-0.23-0.5-0.5c-0.01-0.27,0.24-0.5,0.5-0.5h1.87
c-0.04-0.24-0.1-0.48-0.2-0.72c-1.06-2.58-4.63-2.86-6.16-0.59c-0.36,0.53-1.23,0.03-0.87-0.5c0.95-1.42,2.59-2.25,4.3-2.04
c1.42,0.17,2.7,1,3.41,2.25C16.4,5.186,16.5,6.096,16.5,7.046z"/>
<path d="M20.14,19.436c-1.75-1.76-3.51-3.52-5.27-5.28c-2.79-2.78-5.57-5.57-8.36-8.36
c-0.65-0.64-1.3-1.29-1.94-1.94c-0.46-0.46-1.17,0.25-0.71,0.71c1.22,1.21,2.43,2.42,3.64,3.64v3.92c0,2.17,1.39,4.17,3.59,4.61
c1.4,0.27,2.83-0.12,3.9-1.04c0.24,0.24,0.48,0.47,0.71,0.71c-1.76,1.74-4.52,2.08-6.62,0.67c-0.97-0.65-1.71-1.65-2.05-2.76
c-0.24-0.77-0.24-1.53-0.24-2.33v-2.2c0-0.64-1-0.64-1,0c0,1.62-0.2,3.43,0.34,4.99c0.81,2.32,2.94,3.97,5.37,4.17v1.99H8
c-0.64,0-0.64,1,0,1h8c0.64,0,0.65-1,0-1h-3.5v-2c1.48-0.11,2.87-0.76,3.91-1.82c0.36,0.36,0.72,0.72,1.08,1.08
c0.65,0.65,1.3,1.3,1.95,1.94C19.89,20.596,20.6,19.886,20.14,19.436z M8.94,14.016c-0.36-0.64-0.44-1.32-0.44-2.03v-2.78
l5.77,5.77C12.61,16.356,10.03,15.976,8.94,14.016z"/>
</g>`,
},
{
name: 'microphone_on',
svg: `<g>
<path d="M11.989,2.065c-2.48,0-4.5,2.02-4.5,4.5v5.76c0,2.49,2.02,4.5,4.5,4.5s4.5-2.01,4.5-4.5v-2.86
c0-0.01,0-0.01,0-0.02v-2.88C16.489,4.085,14.469,2.065,11.989,2.065z M11.989,15.825c-1.93,0-3.5-1.57-3.5-3.5v-5.76
c0-1.93,1.57-3.5,3.5-3.5c1.72,0,3.15,1.24,3.44,2.88h-1.87c-0.27,0-0.52,0.23-0.5,0.5c0.01,0.28,0.22,0.5,0.5,0.5h1.93v2h-1.93
c-0.27,0-0.52,0.23-0.5,0.5c0.01,0.27,0.22,0.5,0.5,0.5h1.93v2h-1.94c-0.26,0-0.51,0.23-0.5,0.5c0.02,0.27,0.22,0.5,0.5,0.5h1.88
C15.139,14.585,13.709,15.825,11.989,15.825z"/>
<path d="M12.489,18.925v2.01h3.5c0.64,0,0.64,1,0,1h-8c-0.64,0-0.64-1,0-1h3.5v-1.99
c-0.94-0.07-1.88-0.35-2.74-0.88c-1.78-1.1-2.91-3.05-2.97-5.14c-0.03-1.04,0-2.09,0-3.13c0-0.65,1-0.65,1,0
c0,1.04-0.03,2.09,0,3.13c0.06,1.9,1.18,3.63,2.87,4.49c1.67,0.86,3.71,0.7,5.26-0.34c1.47-0.98,2.27-2.63,2.29-4.38
c0.01-0.96,0-1.93,0-2.9c0-0.65,1-0.65,1,0c0,1.3,0.12,2.67-0.08,3.97C17.659,16.685,15.189,18.675,12.489,18.925z"/>
</g>`,
},
{
name: 'minimize_1',
svg: `<g>
<path d="M11,17.78c0,0.65-1,0.65-1,0v-3.07l-6.08,6.08c-0.45,0.45-1.16-0.25-0.71-0.71
c0.29-0.29,0.58-0.57,0.87-0.86C5.82,17.48,7.55,15.74,9.3,14H6.22c-0.64,0-0.64-1,0-1h4.28c0.15,0,0.26,0.05,0.34,0.14
c0.01,0.01,0.02,0.01,0.02,0.02c0.07,0.06,0.12,0.15,0.13,0.26L11,17.78z"/>
<path d="M14.7,10h3.08c0.64,0,0.64,1,0,1H13.5c-0.15,0-0.26-0.05-0.34-0.14c-0.01-0.01-0.02-0.01-0.02-0.02
c-0.07-0.06-0.12-0.15-0.13-0.26L13,6.22c0-0.65,1-0.65,1,0v3.07l0.01-0.01c2.02-2.02,4.05-4.05,6.07-6.07
c0.45-0.45,1.16,0.25,0.71,0.71L14.7,10z"/>
</g>`,
},
{
name: 'minimize_2',
svg: `<g>
<path d="M3.563,11.016c1.861,0,3.722,0,5.583,0c0.402,0,0.79,0.002,1.15-0.22
c0.515-0.318,0.717-0.858,0.717-1.437c0-0.997,0-1.994,0-2.991c0-0.934,0-1.868,0-2.802c0-0.643-1-0.645-1,0
c0,1.803,0,3.606,0,5.409c0,0.212,0.042,0.482-0.022,0.689c-0.115,0.373-0.469,0.352-0.777,0.352c-1.019,0-2.037,0-3.056,0
c-0.865,0-1.73,0-2.595,0C2.92,10.016,2.919,11.016,3.563,11.016L3.563,11.016z"/>
<path d="M11.013,20.438c0-1.861,0-3.722,0-5.583c0-0.402,0.002-0.79-0.22-1.15
c-0.318-0.515-0.858-0.717-1.437-0.717c-0.997,0-1.994,0-2.991,0c-0.934,0-1.868,0-2.802,0c-0.643,0-0.645,1,0,1
c1.803,0,3.606,0,5.409,0c0.212,0,0.482-0.042,0.689,0.022c0.373,0.115,0.352,0.469,0.352,0.777c0,1.019,0,2.037,0,3.056
c0,0.865,0,1.73,0,2.595C10.013,21.081,11.013,21.082,11.013,20.438L11.013,20.438z"/>
<path d="M20.437,12.984c-1.861,0-3.722,0-5.583,0c-0.402,0-0.79-0.002-1.15,0.22
c-0.515,0.318-0.717,0.858-0.717,1.437c0,0.997,0,1.994,0,2.991c0,0.934,0,1.868,0,2.802c0,0.643,1,0.645,1,0
c0-1.803,0-3.606,0-5.409c0-0.212-0.042-0.482,0.022-0.689c0.115-0.373,0.469-0.352,0.777-0.352c1.019,0,2.037,0,3.056,0
c0.865,0,1.73,0,2.595,0C21.08,13.984,21.081,12.984,20.437,12.984L20.437,12.984z"/>
<path d="M12.987,3.562c0,1.861,0,3.722,0,5.583c0,0.402-0.002,0.79,0.22,1.15
c0.318,0.515,0.858,0.717,1.437,0.717c0.997,0,1.994,0,2.991,0c0.934,0,1.868,0,2.802,0c0.643,0,0.645-1,0-1
c-1.803,0-3.606,0-5.409,0c-0.212,0-0.482,0.042-0.689-0.022c-0.373-0.115-0.352-0.469-0.352-0.777c0-1.019,0-2.037,0-3.056
c0-0.865,0-1.73,0-2.595C13.987,2.919,12.987,2.918,12.987,3.562L12.987,3.562z"/>
</g>`,
},
{
name: 'mobile_1',
svg: `<g>
<path d="M10,18.933c1.168,0,2.336,0,3.504,0c0.165,0,0.33,0,0.496,0c0.643,0,0.645-1,0-1
c-1.168,0-2.336,0-3.504,0c-0.165,0-0.33,0-0.496,0C9.357,17.933,9.356,18.933,10,18.933L10,18.933z"/>
<path d="M16.727,21.937H7.273c-1.234,0-2.239-1.121-2.239-2.5V4.563c0-1.379,1.004-2.5,2.239-2.5h9.454
c1.234,0,2.239,1.121,2.239,2.5v14.873C18.966,20.815,17.961,21.937,16.727,21.937z M7.273,3.063c-0.683,0-1.239,0.673-1.239,1.5
v14.873c0,0.827,0.556,1.5,1.239,1.5h9.454c0.683,0,1.239-0.673,1.239-1.5V4.563c0-0.827-0.556-1.5-1.239-1.5H7.273z"/>
</g>`,
},
{
name: 'mobile_2',
svg: `<g>
<circle cx="12" cy="17.937" r="1"/>
<path d="M16.727,21.937H7.273c-1.234,0-2.239-1.121-2.239-2.5V4.563c0-1.379,1.004-2.5,2.239-2.5h9.454
c1.234,0,2.239,1.121,2.239,2.5v14.873C18.966,20.815,17.961,21.937,16.727,21.937z M7.273,3.063c-0.683,0-1.239,0.673-1.239,1.5
v14.873c0,0.827,0.556,1.5,1.239,1.5h9.454c0.683,0,1.239-0.673,1.239-1.5V4.563c0-0.827-0.556-1.5-1.239-1.5H7.273z"/>
</g>`,
},
{
name: 'mobile_3',
svg: `<g>
<path d="M16.73,2.065H7.27c-1.23,0-2.24,1.12-2.24,2.5v14.87c0,1.38,1.01,2.5,2.24,2.5h9.46
c1.23,0,2.24-1.12,2.24-2.5V4.565C18.97,3.185,17.96,2.065,16.73,2.065z M17.97,19.435c0,0.83-0.56,1.5-1.24,1.5H7.27
c-0.68,0-1.24-0.67-1.24-1.5V4.565c0-0.83,0.56-1.5,1.24-1.5H8.8v0.51c0,0.56,0.45,1,1,1h4.4c0.55,0,1-0.44,1-1v-0.51h1.53
c0.68,0,1.24,0.67,1.24,1.5V19.435z"/>
<path d="M10,18.934c1.168,0,2.336,0,3.504,0c0.165,0,0.33,0,0.496,0c0.643,0,0.645-1,0-1
c-1.168,0-2.336,0-3.504,0c-0.165,0-0.33,0-0.496,0C9.357,17.934,9.356,18.934,10,18.934L10,18.934z"/>
</g>`,
},
{
name: 'mobile_4',
svg: `<g>
<circle cx="12.003" cy="18.937" r="1"/>
<path d="M16.725,2.065h-9.45c-1.23,0-2.24,1.12-2.24,2.5v14.87c0,1.38,1.01,2.5,2.24,2.5h9.45
c1.24,0,2.24-1.12,2.24-2.5V4.565C18.965,3.185,17.965,2.065,16.725,2.065z M17.965,19.435c0,0.83-0.55,1.5-1.24,1.5h-9.45
c-0.68,0-1.24-0.67-1.24-1.5v-2.5h11.93V19.435z M17.965,15.935H6.035V4.565c0-0.83,0.56-1.5,1.24-1.5h9.45
c0.69,0,1.24,0.67,1.24,1.5V15.935z"/>
</g>`,
},
{
name: 'money_bill',
svg: `<g>
<path d="M19.44,5.78H4.56a2.507,2.507,0,0,0-2.5,2.5v7.44a2.514,2.514,0,0,0,2.5,2.5H19.44a2.507,2.507,0,0,0,2.5-2.5V8.28A2.5,2.5,0,0,0,19.44,5.78ZM3.06,8.28a1.5,1.5,0,0,1,1.5-1.5H6.04A3.521,3.521,0,0,1,3.06,9.76Zm1.5,8.94a1.511,1.511,0,0,1-1.5-1.5V14.24a3.521,3.521,0,0,1,2.98,2.98Zm16.38-1.5a1.5,1.5,0,0,1-1.5,1.5H17.96a3.521,3.521,0,0,1,2.98-2.98Zm0-2.49a4.528,4.528,0,0,0-3.99,3.99H7.05a4.528,4.528,0,0,0-3.99-3.99V10.77A4.528,4.528,0,0,0,7.05,6.78h9.9a4.528,4.528,0,0,0,3.99,3.99Zm0-3.47a3.521,3.521,0,0,1-2.98-2.98h1.48a1.5,1.5,0,0,1,1.5,1.5Z"/>
<circle cx="12.002" cy="11.998" r="2"/>
</g>`,
},
{
name: 'money_check_1',
svg: `<g>
<path d="M19.437,18.218H4.563a2.5,2.5,0,0,1-2.5-2.5V8.282a2.5,2.5,0,0,1,2.5-2.5H19.437a2.5,2.5,0,0,1,2.5,2.5v7.436A2.5,2.5,0,0,1,19.437,18.218ZM4.563,6.782a1.5,1.5,0,0,0-1.5,1.5v7.436a1.5,1.5,0,0,0,1.5,1.5H19.437a1.5,1.5,0,0,0,1.5-1.5V8.282a1.5,1.5,0,0,0-1.5-1.5Z"/>
<path d="M12,12.786H5.064a.5.5,0,0,1,0-1H12a.5.5,0,0,1,0,1Z"/>
<path d="M14,15.714H5.064a.5.5,0,1,1,0-1H14a.5.5,0,0,1,0,1Z"/>
<rect x="15.436" y="8.283" width="4" height="2" rx="0.5"/>
</g>`,
},
{
name: 'monitor',
svg: `<path d="M18.435,3.06H5.565c-1.38,0-2.5,1.12-2.5,2.5v8.88c0,1.37,1.12,2.5,2.5,2.5h2.91l-0.37,3h-1.11
c-0.64,0-0.65,1,0,1h10.01c0.65,0,0.65-1,0-1h-1.11l-0.37-3h2.91c1.38,0,2.5-1.13,2.5-2.5V5.56C20.935,4.18,19.815,3.06,18.435,3.06
z M14.895,19.94h-5.78l0.37-3h5.03L14.895,19.94z M19.935,14.44c0,0.82-0.67,1.5-1.5,1.5H5.565c-0.83,0-1.5-0.68-1.5-1.5V5.56
c0-0.82,0.67-1.5,1.5-1.5h12.87c0.83,0,1.5,0.68,1.5,1.5V14.44z"/>`,
},
{
name: 'mountain_1',
svg: '<path d="M20.857,19.525l-6.57-14.96a2.5,2.5,0,0,0-4.58-.01l-6.56,14.96a1,1,0,0,0,.07.96.985.985,0,0,0,.84.46h15.89a1,1,0,0,0,.91-1.41ZM10.627,4.965a1.5,1.5,0,0,1,2.75,0l2.43,5.53-1.45,1.45a.5.5,0,0,1-.71,0l-2.04-2.03a1.5,1.5,0,0,0-1.06-.44h-1.9Zm-6.57,14.96,4.15-9.45h2.34a.491.491,0,0,1,.36.15l2.03,2.03A1.508,1.508,0,0,0,14,13.1a1.491,1.491,0,0,0,1.06-.44l1.18-1.17,3.71,8.45Z"/>',
},
{
name: 'mug_1',
svg: '<path d="M18.115,5.91V4.97a1.2,1.2,0,0,0-1.2-1.2H4.265a1.2,1.2,0,0,0-1.2,1.2v9.14a11.321,11.321,0,0,0,.8,4.17A3.3,3.3,0,0,0,7,20.23h7.19a3.312,3.312,0,0,0,3.14-1.95,10.989,10.989,0,0,0,.74-3.13l1.04-.52a3.319,3.319,0,0,0,1.83-2.97V9.19A3.326,3.326,0,0,0,18.115,5.91Zm-1.73,12.01a2.3,2.3,0,0,1-2.2,1.31H7a2.312,2.312,0,0,1-2.2-1.31,10.238,10.238,0,0,1-.73-3.81V4.97a.2.2,0,0,1,.2-.2h12.65a.2.2,0,0,1,.2.2v9.14A10.238,10.238,0,0,1,16.385,17.92Zm3.55-6.26a2.287,2.287,0,0,1-1.28,2.07l-.54.27V6.93a2.316,2.316,0,0,1,1.82,2.26Z"/>',
},
{
name: 'music_note_1',
svg: '<path d="M20.05,3.657a2.487,2.487,0,0,0-2.03-.56l-7.88,1.33a2.483,2.483,0,0,0-2.08,2.46v8.82a3,3,0,1,0,1,2.23V9.387l10.88-1.83v6.22a2.936,2.936,0,0,0-2-.77,3,3,0,1,0,3,3V5.567A2.513,2.513,0,0,0,20.05,3.657ZM6.06,19.937a2,2,0,1,1,2-2A1.993,1.993,0,0,1,6.06,19.937Zm11.88-1.93a2,2,0,1,1,2-2A2,2,0,0,1,17.94,18.007Zm2-11.46L9.06,8.377V6.887a1.483,1.483,0,0,1,1.25-1.47l7.88-1.33a1.493,1.493,0,0,1,1.75,1.48Z"/>',
},
{
name: 'no_waiting_sign',
svg: '<path d="M12,2.07a9.93,9.93,0,1,0,7.03,16.95.374.374,0,0,0,.06-.07A9.837,9.837,0,0,0,21.935,12,9.944,9.944,0,0,0,12,2.07Zm0,18.86A8.945,8.945,0,0,1,3.065,12a8.84,8.84,0,0,1,2.28-5.95l12.61,12.61A8.925,8.925,0,0,1,12,20.93Zm6.67-2.98L6.045,5.34a8.934,8.934,0,0,1,12.62,12.61Z"/>',
},
{
name: 'palette',
svg: `<g>
<path d="M19.31,20.93c0.9,0,1.62-0.73,1.62-1.62v-3.38c0-0.89-0.72-1.62-1.62-1.62h-4.94l4.66-4.66
c0.3-0.31,0.47-0.72,0.47-1.15s-0.17-0.84-0.47-1.15l-2.39-2.39c-0.63-0.63-1.66-0.63-2.3,0L9.69,9.62V4.56
c0-0.83-0.67-1.5-1.5-1.5H4.57c-0.83,0-1.5,0.67-1.5,1.5v13.88c0,1.37,1.12,2.5,2.5,2.5L19.31,20.93z M9.69,11.04l5.36-5.37
c0.24-0.24,0.64-0.24,0.88,0l2.39,2.39c0.12,0.12,0.18,0.27,0.18,0.44c0,0.17-0.06,0.32-0.18,0.44l-8.63,8.63V11.04z M4.07,4.56
c0-0.28,0.22-0.5,0.5-0.5h3.62c0.28,0,0.5,0.22,0.5,0.5v3.92H4.07V4.56z M4.07,9.48h4.62v4.43H4.07V9.48z M7.29,19.93l-1.72,0.01
c-0.83,0-1.5-0.68-1.5-1.5v-3.53h4.62v3.53C8.69,19.23,8.07,19.88,7.29,19.93 M19.93,19.31c0,0.34-0.28,0.62-0.62,0.62H9.19
c0.19-0.25,0.34-0.54,0.42-0.86l3.76-3.76h5.94c0.34,0,0.62,0.28,0.62,0.62V19.31z"/>
<path d="M7.29,19.93"/>
<path d="M6.37,19.94"/>
<circle cx="6.382" cy="17.419" r="0.844"/>
</g>`,
},
{
name: 'paperplane',
svg: `<path d="M21.061,11.077l-17.32-6.92c-0.42-0.17-0.9-0.04-1.17,0.32c-0.28,0.37-0.28,0.85-0.01,1.22l4.49,6
c0.13,0.18,0.13,0.44-0.01,0.62l-4.53,5.98c-0.27,0.37-0.27,0.86,0,1.22c0.2,0.26,0.49,0.4,0.8,0.4c0.13,0,0.25-0.02,0.38-0.07
l17.36-6.9c0.39-0.15,0.64-0.52,0.64-0.94C21.691,11.597,21.441,11.227,21.061,11.077z M3.371,5.087l16.06,6.42H8.061
c-0.04-0.15-0.12-0.28-0.21-0.41L3.371,5.087z M3.311,18.907l4.53-5.98c0.1-0.13,0.18-0.27,0.22-0.42h11.38L3.311,18.907z"/>`,
},
{
name: 'parking_1',
svg: `<g>
<path d="M12,21.933A9.933,9.933,0,1,1,21.933,12,9.944,9.944,0,0,1,12,21.933ZM12,3.067A8.933,8.933,0,1,0,20.933,12,8.943,8.943,0,0,0,12,3.067Z"/>
<path d="M12.569,8.5h-1.75a.749.749,0,0,0-.75.75v5.74a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5V13.5h1.5a2.5,2.5,0,0,0,0-5Zm0,4h-1.5v-3h1.5a1.5,1.5,0,0,1,0,3Z"/>
</g>`,
},
{
name: 'passport_1',
svg: `<g>
<path d="M16.5,21.936h-9a2.5,2.5,0,0,1-2.5-2.5V4.564a2.5,2.5,0,0,1,2.5-2.5h9a2.5,2.5,0,0,1,2.5,2.5V19.436A2.5,2.5,0,0,1,16.5,21.936ZM7.5,3.064A1.5,1.5,0,0,0,6,4.564V19.436a1.5,1.5,0,0,0,1.5,1.5h9a1.5,1.5,0,0,0,1.5-1.5V4.564a1.5,1.5,0,0,0-1.5-1.5Z"/>
<path d="M12,12.563a3.5,3.5,0,1,1,3.5-3.5A3.5,3.5,0,0,1,12,12.563Zm0-6a2.5,2.5,0,1,0,2.5,2.5A2.5,2.5,0,0,0,12,6.563Z"/>
<path d="M15,18.438H9a.5.5,0,0,1,0-1h6a.5.5,0,1,1,0,1Z"/>
</g>`,
},
{
name: 'pause_1',
svg: `<g>
<path d="M8.25,21.937H6.564a2.5,2.5,0,0,1-2.5-2.5V4.563a2.5,2.5,0,0,1,2.5-2.5H8.25a2.5,2.5,0,0,1,2.5,2.5V19.437A2.5,2.5,0,0,1,8.25,21.937ZM6.564,3.063a1.5,1.5,0,0,0-1.5,1.5V19.437a1.5,1.5,0,0,0,1.5,1.5H8.25a1.5,1.5,0,0,0,1.5-1.5V4.563a1.5,1.5,0,0,0-1.5-1.5Z"/>
<path d="M17.436,21.937H15.75a2.5,2.5,0,0,1-2.5-2.5V4.563a2.5,2.5,0,0,1,2.5-2.5h1.686a2.5,2.5,0,0,1,2.5,2.5V19.437A2.5,2.5,0,0,1,17.436,21.937ZM15.75,3.063a1.5,1.5,0,0,0-1.5,1.5V19.437a1.5,1.5,0,0,0,1.5,1.5h1.686a1.5,1.5,0,0,0,1.5-1.5V4.563a1.5,1.5,0,0,0-1.5-1.5Z"/>
</g>`,
},
{
name: 'pen',
svg: `<g>
<path d="M20.235,11.284c-0.8-0.8-2.15-0.85-3.01-0.15l-1.78-5.39c-0.3-0.93-1.13-1.6-2.1-1.7l-8.58-0.93
c-0.45-0.05-0.89,0.11-1.22,0.43c-0.32,0.32-0.48,0.77-0.43,1.22l0.93,8.58c0.1,0.97,0.77,1.8,1.7,2.1l5.39,1.77
c-0.33,0.4-0.51,0.91-0.51,1.43c0,0.6,0.23,1.16,0.66,1.59c0.42,0.42,0.99,0.66,1.59,0.66c0.6,0,1.16-0.24,1.59-0.66l5.77-5.77
c0.43-0.43,0.66-0.99,0.66-1.59S20.665,11.705,20.235,11.284z M6.055,14.494c-0.55-0.18-0.96-0.68-1.02-1.26l-0.9-8.39l4.01,4.01
c-0.14,0.41-0.05,0.89,0.28,1.22c0.45,0.45,1.19,0.45,1.65,0c0.45-0.46,0.45-1.2,0-1.65c-0.33-0.33-0.8-0.42-1.21-0.27l-4.02-4.02
l8.39,0.9c0.59,0.06,1.08,0.46,1.26,1.02l1.93,5.86l-4.51,4.51L6.055,14.494z M17.764,11.984c0.23-0.23,0.55-0.36,0.88-0.36
s0.65,0.13,0.88,0.36c0.24,0.24,0.37,0.55,0.37,0.89c0,0.33-0.13,0.64-0.37,0.88l-5.77,5.77c-0.47,0.48-1.29,0.47-1.77,0
c-0.23-0.23-0.36-0.55-0.36-0.88c0-0.33,0.13-0.65,0.36-0.88L17.764,11.984z"/>
</g>`,
},
{
name: 'penpot',
svg: '<path d="M4.415,7.22a.755.755,0,0,0-.35.64v9.67a1.536,1.536,0,0,0,.88,1.38l5.96,2.82a2.618,2.618,0,0,0,2.19,0l5.96-2.82a1.536,1.536,0,0,0,.88-1.38V7.86a.742.742,0,0,0-.36-.64l-2.23-1.15v-1a.98.98,0,0,0-.15-.52l-1.33-2.16a.749.749,0,0,0-1.28,0L13.3,4.5l-.66-1.07A.755.755,0,0,0,12,3.08a.791.791,0,0,0-.64.36l-.65,1.06L9.4,2.39a.749.749,0,0,0-1.28,0L6.805,4.55a.98.98,0,0,0-.15.52v1Zm12.93-.01.7.35-.7.33Zm-2.44-3.43h.64l.5.81h-1.64Zm1.44,1.81V8.36l-.61.29V5.59Zm-2.23,0h.62V9.12l-.62.3ZM8.445,3.78h.64l.5.81H7.945Zm1.44,1.81V9.41l-.61-.29V5.59Zm-2.23,0h.62V8.65l-.62-.29Zm-1,1.62v.68l-.7-.33ZM5.365,18a.52.52,0,0,1-.3-.47V8.24l6.43,3.04v9.59Zm6.13-7.83-.61-.29V6.64h.61Zm-.32-4.53.51-.82h.62l.51.82Zm1.94,1V9.89l-.62.29V6.64ZM12.5,20.88V11.29l6.44-3.05v9.29a.512.512,0,0,1-.31.47Z"/>',
},
{
name: 'percent',
svg: `<g>
<path d="M12,21.934A9.934,9.934,0,1,1,21.933,12,9.945,9.945,0,0,1,12,21.934ZM12,3.066A8.934,8.934,0,1,0,20.933,12,8.944,8.944,0,0,0,12,3.066Z"/>
<path d="M9,10.258a1.5,1.5,0,1,1,1.061-.439h0A1.5,1.5,0,0,1,9,10.258Zm0-2a.5.5,0,1,0,.353.146A.5.5,0,0,0,9,8.259Z"/>
<path d="M7.758,16.743A.5.5,0,0,1,7.4,15.89L15.889,7.4a.5.5,0,0,1,.707.707L8.111,16.6A.5.5,0,0,1,7.758,16.743Z"/>
<path d="M15,16.742a1.5,1.5,0,1,1,1.061-.438A1.493,1.493,0,0,1,15,16.742Zm0-2a.5.5,0,0,0-.354.147h0a.5.5,0,0,0-.146.352.5.5,0,1,0,1,0,.5.5,0,0,0-.5-.5Z"/>
</g>`,
},
{
name: 'phone',
svg: `<path d="M14.436,20.938c-6.268,0-11.367-5.105-11.367-11.379c0-1.996,0.521-3.953,1.504-5.659
c0.262-0.454,0.714-0.753,1.24-0.822c0.541-0.073,1.07,0.108,1.454,0.493l3.14,3.139c0.324,0.324,0.503,0.755,0.503,1.214
s-0.179,0.89-0.503,1.214l-0.296,0.296c-0.754,0.755-0.754,1.981,0,2.735l1.721,1.721c0.73,0.73,2.005,0.73,2.735,0l0.29-0.29
c0.671-0.67,1.76-0.669,2.429,0l3.139,3.139c0.384,0.384,0.563,0.915,0.492,1.455c-0.069,0.526-0.369,0.978-0.822,1.239
C18.388,20.418,16.431,20.938,14.436,20.938z M6.042,4.063c-0.033,0-0.066,0.002-0.099,0.006C5.728,4.097,5.544,4.218,5.44,4.4
C4.542,5.954,4.069,7.738,4.069,9.559c0,5.723,4.65,10.379,10.367,10.379c1.82,0,3.604-0.474,5.158-1.371
c0.183-0.105,0.303-0.289,0.331-0.503c0.03-0.23-0.046-0.455-0.208-0.618l-3.139-3.139c-0.279-0.28-0.735-0.278-1.015,0l-0.29,0.29
c-1.108,1.109-3.041,1.107-4.149,0l-1.721-1.721c-1.144-1.144-1.144-3.005,0-4.149l0.296-0.296c0.136-0.136,0.21-0.316,0.21-0.507
s-0.074-0.371-0.21-0.507l-3.14-3.14C6.421,4.138,6.236,4.063,6.042,4.063z"/>`,
},
{
name: 'picker_empty',
svg: `<path d="M20.94,5.876c0-0.76-0.3-1.48-0.84-2.01c-1.06-1.07-2.91-1.07-3.97,0l-2.21,2.21l-0.75-0.75
c-0.15-0.15-0.35-0.22-0.55-0.22s-0.4,0.07-0.55,0.22c-0.3,0.31-0.3,0.8,0,1.1l0.75,0.75l-8.77,8.76
c-0.55,0.56-0.88,1.31-0.92,2.13l-0.07,1.52c-0.01,0.36,0.12,0.71,0.38,0.97c0.25,0.24,0.58,0.38,0.91,0.38h0.06l1.52-0.07
c0.82-0.04,1.57-0.37,2.13-0.92l8.76-8.77l0.75,0.75c0.15,0.15,0.35,0.22,0.55,0.22s0.4-0.07,0.55-0.22c0.3-0.31,0.3-0.8,0-1.1
l-0.75-0.75l2.18-2.18C20.64,7.356,20.94,6.646,20.94,5.876z M7.35,19.236c-0.38,0.38-0.9,0.6-1.46,0.63l-1.53,0.07
c-0.09,0.01-0.15-0.03-0.21-0.09s-0.09-0.14-0.09-0.21l0.07-1.53c0.03-0.56,0.25-1.08,0.63-1.46l8.77-8.76l2.59,2.59L7.35,19.236z
M19.4,7.196l-2.18,2.18l-2.59-2.59l2.21-2.22c0.34-0.34,0.81-0.51,1.28-0.51c0.46,0,0.94,0.17,1.28,0.51
c0.35,0.35,0.54,0.82,0.54,1.31C19.94,6.376,19.75,6.836,19.4,7.196z"/>`,
},
{
name: 'picker_half',
svg: `<path d="M20.936,5.889c0-0.76-0.3-1.48-0.84-2.02c-1.09-1.09-2.87-1.09-3.97,0l-2.21,2.22l-0.75-0.75
c-0.15-0.15-0.35-0.22-0.55-0.22c-0.19,0-0.39,0.07-0.55,0.22c-0.3,0.3-0.3,0.8,0,1.1l0.75,0.75l-8.76,8.76
c-0.56,0.56-0.89,1.31-0.92,2.13l-0.07,1.52c-0.02,0.35,0.12,0.7,0.38,0.96c0.24,0.25,0.57,0.39,0.9,0.39h0.06l1.52-0.07
c0.82-0.04,1.57-0.37,2.13-0.93l8.76-8.76l0.75,0.75c0.15,0.15,0.35,0.22,0.55,0.22c0.2,0,0.4-0.07,0.55-0.22
c0.3-0.31,0.3-0.8,0-1.1l-0.75-0.75l2.18-2.18C20.636,7.369,20.936,6.649,20.936,5.889z M12.376,14.219h-5.18l6.33-6.32l2.59,2.59
L12.376,14.219z M19.396,7.199l-2.18,2.19l-2.59-2.59l2.21-2.22c0.7-0.7,1.85-0.7,2.56,0c0.35,0.35,0.54,0.82,0.54,1.31
C19.936,6.389,19.746,6.849,19.396,7.199z"/>`,
},
{
name: 'pill',
svg: '<path d="M19.31,4.691a5.5,5.5,0,0,0-7.78,0l-6.84,6.84a5.5,5.5,0,0,0,3.89,9.39,5.524,5.524,0,0,0,3.89-1.61l6.84-6.84a5.5,5.5,0,0,0,0-7.78Zm-.71,7.07-3.42,3.42L8.82,8.821,12.24,5.4a4.5,4.5,0,0,1,7.68,3.17A4.429,4.429,0,0,1,18.6,11.761Z"/>',
},
{
name: 'pizza',
svg: `<g>
<path d="M20.807,13.437l-.01-.04a19.05,19.05,0,0,0-10.23-10.21,1.574,1.574,0,0,0-2.08.93l-5.32,14.69a1.58,1.58,0,0,0,1.48,2.12,1.654,1.654,0,0,0,.54-.09l14.7-5.32a1.585,1.585,0,0,0,.91-.85A1.547,1.547,0,0,0,20.807,13.437Zm-6.98,2.98a1,1,0,0,0,.2.16L4.847,19.9a.582.582,0,0,1-.6-.14.556.556,0,0,1-.14-.61l2.39-6.6a1,1,0,0,0,.16.2,1.81,1.81,0,0,0,2.56-2.56,1.782,1.782,0,0,0-1.7-.47l1.09-2.98a17.346,17.346,0,0,1,6.82,5.57,2.447,2.447,0,0,0-1.6.71A2.4,2.4,0,0,0,13.827,16.417Zm6.05-2.15a.592.592,0,0,1-.33.31l-1.32.47c-.11-.23-.22-.45-.33-.67-.12-.24-.25-.48-.38-.71-.31-.55-.65-1.08-1-1.58a18.655,18.655,0,0,0-7.57-6.3l.48-1.33a.561.561,0,0,1,.31-.33.456.456,0,0,1,.23-.05.793.793,0,0,1,.25.05,18.013,18.013,0,0,1,9.67,9.68v.02A.561.561,0,0,1,19.877,14.267Z"/>
<circle cx="7.835" cy="16.489" r="1.075"/>
</g>`,
},
{
name: 'plane',
svg: '<path d="M11.9,20.936H10.85a.911.911,0,0,1-.9-1.023l.693-5.548H7.3l-.513.9a1.329,1.329,0,0,1-.992.657L5.1,16a.9.9,0,0,1-.8-.31.912.912,0,0,1-.185-.839l.774-2.769a.318.318,0,0,0,0-.173L4.114,9.145A.909.909,0,0,1,5.1,8l.695.083a1.331,1.331,0,0,1,.992.656l.513.9h3.34L9.946,4.088a.911.911,0,0,1,.9-1.024H11.9a1.327,1.327,0,0,1,1.236.857l2.144,5.714h1.046a8.5,8.5,0,0,1,1.758.184,2.166,2.166,0,0,1,1.429.9,2.209,2.209,0,0,1,.365,1.7A2.288,2.288,0,0,1,17.95,14.2l-.16.024a10.926,10.926,0,0,1-1.721.137h-.787l-2.144,5.714A1.327,1.327,0,0,1,11.9,20.936Zm-.951-1H11.9a.323.323,0,0,0,.3-.209l2.214-5.905a.71.71,0,0,1,.661-.457h.991a9.946,9.946,0,0,0,1.567-.125l.16-.025a1.3,1.3,0,0,0,1.1-.979,1.227,1.227,0,0,0-.2-.937,1.2,1.2,0,0,0-.793-.5,7.647,7.647,0,0,0-1.577-.167h-1.25a.711.711,0,0,1-.661-.456L12.2,4.273a.323.323,0,0,0-.3-.209h-.951l.722,5.778a.7.7,0,0,1-.7.793H7.127a.7.7,0,0,1-.614-.359l-.6-1.045a.32.32,0,0,0-.241-.16L5.113,9l.738,2.64a1.34,1.34,0,0,1,0,.711L5.113,15l.562-.067a.32.32,0,0,0,.241-.16l.6-1.049a.7.7,0,0,1,.612-.355h3.846a.7.7,0,0,1,.7.794ZM7.386,14.212l0,.005Zm3.295-.179v0Zm0-4.067v0Zm-3.3-.186,0,0Z"/>',
},
{
name: 'play_1',
svg: '<path d="M6.562,21.94a2.5,2.5,0,0,1-2.5-2.5V4.56A2.5,2.5,0,0,1,7.978,2.5L18.855,9.939a2.5,2.5,0,0,1,0,4.12L7.977,21.5A2.5,2.5,0,0,1,6.562,21.94Zm0-18.884a1.494,1.494,0,0,0-.7.177,1.477,1.477,0,0,0-.8,1.327V19.439a1.5,1.5,0,0,0,2.35,1.235l10.877-7.44a1.5,1.5,0,0,0,0-2.471L7.413,3.326A1.491,1.491,0,0,0,6.564,3.056Z"/>',
},
{
name: 'plug_1',
svg: `<path d="M17.305,5.755h-1.81v-3.21c0-0.64-1-0.64-1,0v3.21h-5v-3.21c0-0.64-1-0.64-1,0v3.21h-1.8
c-0.87,0-1.57,0.7-1.57,1.57v4.28c0,3.73,2.82,6.86,6.37,7.11v2.72c0,0.26,0.23,0.51,0.5,0.5s0.5-0.22,0.5-0.5v-2.7
c1.61-0.11,3.11-0.79,4.29-1.92c1.35-1.31,2.09-3.06,2.09-4.94v-4.55C18.875,6.455,18.165,5.755,17.305,5.755z M17.875,11.875
c0,1.6-0.64,3.1-1.79,4.22c-1.15,1.11-2.65,1.7-4.27,1.65c-3.14-0.09-5.69-2.85-5.69-6.14v-4.28c0-0.32,0.25-0.57,0.57-0.57h10.61
c0.31,0,0.57,0.25,0.57,0.57V11.875z"/>`,
},
{
name: 'power',
svg: `<g>
<path d="M6.638,5.209a8.782,8.782,0,1,0,13.917,8.96,8.871,8.871,0,0,0-3.189-8.96c-.5-.39-1.214.312-.707.707a7.93,7.93,0,0,1,3.082,7.113,7.787,7.787,0,0,1-15.308.956A7.9,7.9,0,0,1,7.345,5.916c.507-.394-.205-1.1-.707-.707Z"/>
<path d="M12.5,12.519a.5.5,0,0,1-1,0V3.548h0a.5.5,0,0,1,1,0Z"/>
</g>`,
},
{
name: 'pills_bottle_1',
svg: '<path d="M17.435,2.06H6.565a2.5,2.5,0,0,0-2.5,2.5v2a1.492,1.492,0,0,0,1.22,1.47V19.44a2.5,2.5,0,0,0,2.5,2.5h8.43a2.5,2.5,0,0,0,2.5-2.5V8.03a1.492,1.492,0,0,0,1.22-1.47v-2A2.5,2.5,0,0,0,17.435,2.06Zm.28,17.38a1.5,1.5,0,0,1-1.5,1.5H7.785a1.5,1.5,0,0,1-1.5-1.5v-.88h3.52a.491.491,0,0,0,.48-.5.485.485,0,0,0-.48-.5H6.285V15h2.57a.5.5,0,0,0,0-1H6.285V11.45h3.52a.491.491,0,0,0,.48-.5.485.485,0,0,0-.48-.5H6.285V8.06h11.43Zm1.22-12.88a.5.5,0,0,1-.5.5H5.565a.5.5,0,0,1-.5-.5v-2a1.5,1.5,0,0,1,1.5-1.5h10.87a1.5,1.5,0,0,1,1.5,1.5Z"/>',
},
{
name: 'rainbow',
svg: `<g>
<path d="M3.089,16.71C3.123,13.003,5.45,9.582,8.97,8.326c3.511-1.253,7.483-0.17,9.879,2.681
c1.341,1.596,2.042,3.627,2.061,5.703c0.006,0.643,1.006,0.645,1,0c-0.037-4.118-2.597-7.836-6.46-9.291
c-3.874-1.46-8.424-0.243-11.06,2.944c-1.483,1.794-2.281,4.023-2.302,6.348C2.083,17.354,3.083,17.355,3.089,16.71L3.089,16.71z"
/>
<path d="M5.985,16.71c0.043-3.279,2.703-6.015,6.015-6.015c3.312,0,5.972,2.736,6.015,6.015
c0.008,0.643,1.008,0.645,1,0c-0.038-2.923-1.833-5.537-4.575-6.577c-2.74-1.039-5.976-0.165-7.834,2.095
c-1.046,1.272-1.6,2.838-1.621,4.482C4.976,17.354,5.976,17.354,5.985,16.71L5.985,16.71z"/>
<path d="M8.88,16.71c0.023-1.7,1.4-3.122,3.12-3.12c1.72,0.002,3.096,1.416,3.12,3.12
c0.009,0.643,1.009,0.645,1,0c-0.024-1.72-1.079-3.249-2.689-3.862c-1.584-0.603-3.481-0.111-4.566,1.192
c-0.631,0.758-0.971,1.683-0.984,2.67C7.872,17.354,8.872,17.354,8.88,16.71L8.88,16.71z"/>
</g>`,
},
{
name: 'read',
svg: `<g>
<path d="M12,18.883c-4.131,0-7.929-2.249-9.675-5.728c-0.361-0.724-0.361-1.587,0-2.31
C4.071,7.365,7.869,5.117,12,5.117s7.929,2.249,9.675,5.728v0c0.361,0.723,0.361,1.586,0,2.31
C19.929,16.635,16.131,18.883,12,18.883z M12,6.117c-3.756,0-7.203,2.032-8.78,5.176c-0.222,0.442-0.222,0.972,0,1.415
c1.577,3.144,5.024,5.176,8.78,5.176s7.203-2.032,8.78-5.176c0.222-0.442,0.222-0.971,0-1.414l0,0
C19.203,8.148,15.756,6.117,12,6.117z"/>
<path d="M12,16.049c-2.232,0-4.049-1.816-4.049-4.049S9.768,7.951,12,7.951S16.049,9.767,16.049,12
S14.232,16.049,12,16.049z M12,8.951c-1.681,0-3.049,1.368-3.049,3.049s1.368,3.049,3.049,3.049s3.049-1.368,3.049-3.049
S13.681,8.951,12,8.951z"/>
<circle cx="12" cy="12" r="2.028"/>
</g>`,
},
{
name: 'receipt',
svg: `<g>
<path d="M12,21.919a1.454,1.454,0,0,1-.791-.232L9.645,20.666a.47.47,0,0,0-.439-.028l-1.776.829a1.466,1.466,0,0,1-1.4-.087,1.214,1.214,0,0,1-.581-1.02V3.641A1.217,1.217,0,0,1,6.033,2.62a1.469,1.469,0,0,1,1.4-.087l1.775.829a.469.469,0,0,0,.439-.026L11.21,2.313a1.464,1.464,0,0,1,1.581,0l1.564,1.022a.469.469,0,0,0,.44.026l1.775-.829a1.461,1.461,0,0,1,1.4.087,1.217,1.217,0,0,1,.581,1.021V20.36a1.216,1.216,0,0,1-.581,1.02,1.46,1.46,0,0,1-1.4.087L14.8,20.639a.474.474,0,0,0-.441.027l-1.564,1.021A1.448,1.448,0,0,1,12,21.919ZM9.4,19.6a1.44,1.44,0,0,1,.79.234l1.564,1.02a.464.464,0,0,0,.487,0l1.565-1.021a1.462,1.462,0,0,1,1.41-.095l1.774.828a.463.463,0,0,0,.437-.024.221.221,0,0,0,.118-.177V3.641a.219.219,0,0,0-.118-.177.461.461,0,0,0-.437-.025l-1.775.829a1.458,1.458,0,0,1-1.409-.095L12.243,3.151a.467.467,0,0,0-.486,0L10.192,4.172a1.467,1.467,0,0,1-1.41.1L7.007,3.439a.461.461,0,0,0-.437.025.219.219,0,0,0-.118.177V20.36a.221.221,0,0,0,.118.177.468.468,0,0,0,.437.024l1.776-.829A1.461,1.461,0,0,1,9.4,19.6Z"/>
<path d="M15.046,7.4H8.954a.5.5,0,0,1,0-1h6.092a.5.5,0,0,1,0,1Z"/>
<path d="M15.046,10.953H8.954a.5.5,0,0,1,0-1h6.092a.5.5,0,0,1,0,1Z"/>
<path d="M12,14.5H8.954a.5.5,0,0,1,0-1H12a.5.5,0,0,1,0,1Z"/>
</g>`,
},
{
name: 'redo',
svg: `<path d="M4.061,13.67c0.26,2.74,1.92,5.23,4.4,6.45c2.45,1.2,5.43,1.07,7.74-0.38
c2.34-1.46,3.74-4.02,3.77-6.77c0-0.64-1-0.64-1,0c-0.03,2.74-1.62,5.25-4.13,6.37c-2.23,1-4.88,0.73-6.87-0.67
c-2.03-1.44-3.15-3.92-2.91-6.4c0.24-2.39,1.76-4.51,3.91-5.57c1.48-0.72,3.05-0.7,4.64-0.69v1.45c0,0.41,0.48,0.65,0.81,0.39
l2.47-1.95c0.26-0.21,0.25-0.59,0-0.79l-2.49-1.94c-0.33-0.25-0.81-0.02-0.8,0.4v1.44c-0.71-0.01-1.43-0.03-2.13,0.02
c-1.54,0.11-3.03,0.65-4.26,1.59C5.041,8.26,3.811,10.96,4.061,13.67z"/>`,
},
{
name: 'repeat',
svg: `<g>
<path d="M2.078,17.562c-0.01,-0.039 -0.016,-0.08 -0.016,-0.123c0,-0.138 0.056,-0.263 0.147,-0.353c0.008,-0.009 1.416,-1.417 2,-2c0.198,-0.198 0.507,-0.183 0.707,-0c0.199,0.183 0.185,0.522 -0,0.707l-1.147,1.146l15.669,0c0.828,0 1.5,-0.671 1.5,-1.5l0,-3.439c0,-0.276 0.224,-0.5 0.5,-0.5c0.276,0 0.5,0.224 0.5,0.5l0,3.439c0,1.381 -1.12,2.5 -2.5,2.5l-15.669,0l1.147,1.147c0.198,0.198 0.183,0.507 -0,0.707c-0.183,0.199 -0.522,0.185 -0.707,-0l-2,-2c-0.066,-0.063 -0.11,-0.143 -0.131,-0.231Zm19.845,-11.105c0.01,0.039 0.015,0.08 0.015,0.122c0,0.138 -0.056,0.263 -0.147,0.354c-0.008,0.008 -1.416,1.417 -2,2c-0.197,0.198 -0.507,0.183 -0.707,-0c-0.199,-0.183 -0.185,-0.522 0,-0.707l1.147,-1.147l-15.669,0c-0.828,0 -1.5,0.672 -1.5,1.5l0,3.439c-0,0.276 -0.224,0.5 -0.5,0.5c-0.276,0 -0.5,-0.224 -0.5,-0.5l0,-3.439c0,-1.381 1.12,-2.5 2.5,-2.5l15.669,0l-1.146,-1.146c-0.198,-0.198 -0.183,-0.507 -0,-0.707c0.183,-0.199 0.522,-0.185 0.707,-0l2,2c0.065,0.063 0.11,0.143 0.131,0.231Z"/>
</g>`,
},
{
name: 'rolling_suitcase',
svg: '<path d="M16.25,7.49H15V3.56a1.5,1.5,0,0,0-1.5-1.5h-3A1.511,1.511,0,0,0,9,3.56V7.49H7.75a2.5,2.5,0,0,0-2.5,2.5v8.44a2.5,2.5,0,0,0,2.5,2.5h.5v.01a1,1,0,0,0,2,0v-.01h3.5v.01a1,1,0,0,0,2,0v-.01h.5a2.5,2.5,0,0,0,2.5-2.5V9.99A2.5,2.5,0,0,0,16.25,7.49ZM10,3.56a.508.508,0,0,1,.5-.5h3a.5.5,0,0,1,.5.5V7.5H10Zm7.75,14.87a1.5,1.5,0,0,1-1.5,1.5H7.75a1.5,1.5,0,0,1-1.5-1.5V9.99a1.511,1.511,0,0,1,1.5-1.5h8.5a1.5,1.5,0,0,1,1.5,1.5Z"/>',
},
{
name: 'route',
svg: '<path d="M21.792,17.086c-.58-.58-1.16-1.17-1.75-1.75-.08-.08-.16-.17-.25-.25a.492.492,0,0,0-.7,0,.5.5,0,0,0,0,.71l1.14,1.14H9.282a2.22,2.22,0,0,1,0-4.44h3a3.215,3.215,0,1,0,0-6.43H7.012a2.5,2.5,0,1,0,0,1h5.27a2.215,2.215,0,1,1,0,4.43h-3a3.22,3.22,0,1,0,0,6.44h10.96l-.9.9c-.09.08-.17.17-.25.25a.5.5,0,0,0,0,.71.511.511,0,0,0,.7,0l1.75-1.75.25-.25A.5.5,0,0,0,21.792,17.086ZM4.562,8.066a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,4.562,8.066Z"/>',
},
{
name: 'router',
svg: `<g>
<path d="M19.44,10.94h-1.51v-6.4c0-0.64-1-0.64-1,0v6.4H7.06V7c0-0.64-1-0.65-1,0v3.94h-1.5
c-1.37,0-2.5,1.12-2.5,2.5v4c0,1.37,1.13,2.5,2.5,2.5h14.88c1.38,0,2.5-1.13,2.5-2.5v-4C21.94,12.06,20.82,10.94,19.44,10.94z
M20.94,17.44c0,0.82-0.67,1.5-1.5,1.5H4.56c-0.82,0-1.5-0.68-1.5-1.5v-4c0-0.83,0.68-1.5,1.5-1.5h14.88c0.83,0,1.5,0.67,1.5,1.5
V17.44z"/>
<circle cx="4.75" cy="15.436" r="0.75"/>
<circle cx="8.25" cy="15.436" r="0.75"/>
<path d="M18.5,16.936h-4.999c-0.827,0-1.5-0.673-1.5-1.5s0.673-1.5,1.5-1.5H18.5c0.827,0,1.5,0.673,1.5,1.5
S19.328,16.936,18.5,16.936z M13.501,14.936c-0.276,0-0.5,0.225-0.5,0.5s0.224,0.5,0.5,0.5H18.5c0.276,0,0.5-0.225,0.5-0.5
s-0.224-0.5-0.5-0.5H13.501z"/>
</g>`,
},
{
name: 'ruler',
svg: `<g>
<path d="M9.479,3.5c-0.28-0.29-0.66-0.44-1.06-0.44c-0.4,0-0.78,0.15-1.06,0.44l-3.86,3.85
c-0.28,0.29-0.44,0.66-0.44,1.06c0,0.4,0.16,0.78,0.44,1.06l11.02,11.03c0.3,0.29,0.68,0.44,1.07,0.44c0.38,0,0.76-0.15,1.06-0.44
l3.85-3.86c0.59-0.58,0.59-1.54,0-2.12L9.479,3.5z M8.359,7.08c-0.19,0.18-0.2,0.52,0,0.71c0.2,0.18,0.51,0.19,0.71,0
c0.55-0.56,1.09-1.1,1.65-1.64l1.25,1.25l-0.9,0.9c-0.09,0.09-0.15,0.22-0.15,0.35c0,0.12,0.06,0.27,0.15,0.35
c0.2,0.19,0.51,0.2,0.71,0c0.29-0.3,0.6-0.6,0.9-0.89l1.25,1.25l-1.64,1.65c-0.19,0.18-0.2,0.52,0,0.7c0.2,0.19,0.51,0.2,0.7,0
c0.56-0.55,1.1-1.09,1.65-1.64l1.25,1.25l-0.9,0.9c-0.09,0.09-0.14,0.23-0.14,0.36c0,0.12,0.05,0.27,0.14,0.35
c0.2,0.18,0.51,0.2,0.71,0c0.3-0.3,0.6-0.6,0.9-0.9l1.26,1.26l-1.65,1.64c-0.18,0.19-0.2,0.53,0,0.71s0.51,0.2,0.71,0
c0.55-0.56,1.09-1.1,1.65-1.64l1.23,1.23c0.19,0.19,0.19,0.51,0,0.7l-3.86,3.86c-0.2,0.2-0.51,0.2-0.71,0L4.209,8.77
c-0.1-0.1-0.15-0.22-0.15-0.36c0-0.13,0.05-0.25,0.15-0.35l3.86-3.86c0.09-0.09,0.22-0.14,0.35-0.14s0.26,0.05,0.35,0.14l1.24,1.24
L8.359,7.08z"/>
<path d="M18.939,12.96l-0.04-0.04c0.01,0,0.01,0,0.02,0.01C18.929,12.94,18.939,12.95,18.939,12.96z"/>
</g>`,
},
{
name: 'satellite_1',
svg: '<path d="M17.135,12.37a5.447,5.447,0,0,0,3.42-1.2.982.982,0,0,0,.37-.72,1.04,1.04,0,0,0-.31-.8l-2.78-2.78c.39-.39.8-.8,1.19-1.2.08-.07.15-.14.23-.22a.511.511,0,0,0,0-.7.5.5,0,0,0-.71,0c-.48.47-.94.94-1.42,1.41l-2.78-2.78a1.077,1.077,0,0,0-.8-.31,1,1,0,0,0-.72.37,5.454,5.454,0,0,0-1.19,3.67l-1.45,1.46L7.855,6.24a.978.978,0,0,0-1.41,0L3.365,9.32a1,1,0,0,0,0,1.41L5.7,13.06l-.41.4a2.65,2.65,0,0,0,0,3.74L6.8,18.71a2.632,2.632,0,0,0,3.74,0l.4-.4,2.33,2.33a1,1,0,0,0,1.41,0l3.08-3.09a1,1,0,0,0,0-1.41l-2.32-2.32,1.45-1.46A2.09,2.09,0,0,0,17.135,12.37ZM4.065,10.03l3.09-3.09,2.32,2.33L6.4,12.35Zm12.99,6.82-3.08,3.08-2.33-2.33,3.08-3.08Zm-5.23-8.51a5.482,5.482,0,0,0,3.84,3.83l-5.84,5.84a1.642,1.642,0,0,1-2.32,0l-1.52-1.52a1.642,1.642,0,0,1,0-2.32Zm2.12,1.71a4.417,4.417,0,0,1-.3-5.96l3.13,3.13,3.14,3.14.02.03A4.5,4.5,0,0,1,13.945,10.05Z"/>',
},
{
name: 'save_down_1',
svg: `<g>
<path d="M17.617,6.383a7.944,7.944,0,0,1-1.748,12.568A8.028,8.028,0,0,1,4.283,13.908,8.028,8.028,0,0,1,6.378,6.391c.451-.46-.256-1.168-.707-.707A8.946,8.946,0,0,0,15.427,20.27a8.946,8.946,0,0,0,2.9-14.594c-.451-.461-1.158.247-.707.707Z"/>
<path d="M15.355,10.6l-3,3a.5.5,0,0,1-.35.15.508.508,0,0,1-.36-.15l-3-3a.5.5,0,0,1,.71-.71l2.14,2.14V3.555a.508.508,0,0,1,.5-.5.5.5,0,0,1,.5.5v8.49l2.15-2.16a.5.5,0,0,1,.71.71Z"/>
</g>`,
},
{
name: 'save_down_2',
svg: `<g>
<path d="M18.437,20.948H5.563a2.372,2.372,0,0,1-2.5-2.21v-11a2.372,2.372,0,0,1,2.5-2.211h.462a.5.5,0,0,1,0,1H5.563a1.38,1.38,0,0,0-1.5,1.211v11a1.38,1.38,0,0,0,1.5,1.21H18.437a1.38,1.38,0,0,0,1.5-1.21v-11a1.38,1.38,0,0,0-1.5-1.211h-.462a.5.5,0,0,1,0-1h.462a2.372,2.372,0,0,1,2.5,2.211v11A2.372,2.372,0,0,1,18.437,20.948Z"/>
<path d="M15.355,10.592l-3,3a.5.5,0,0,1-.35.15.508.508,0,0,1-.36-.15l-3-3a.5.5,0,0,1,.71-.71l2.14,2.139V3.552a.508.508,0,0,1,.5-.5.5.5,0,0,1,.5.5v8.49l2.15-2.16a.5.5,0,0,1,.71.71Z"/>
</g>`,
},
{
name: 'save_up_1',
svg: `<g>
<path d="M17.617,6.374a7.946,7.946,0,0,1-1.748,12.569A8.028,8.028,0,0,1,4.283,13.9,8.029,8.029,0,0,1,6.378,6.382c.451-.46-.256-1.168-.707-.707a8.946,8.946,0,0,0,9.756,14.587,8.946,8.946,0,0,0,2.9-14.595c-.451-.46-1.158.247-.707.707Z"/>
<path d="M8.645,6.213l3-3a.5.5,0,0,1,.35-.15.508.508,0,0,1,.36.15l3,3a.5.5,0,0,1-.71.71l-2.14-2.14v8.47a.508.508,0,0,1-.5.5.5.5,0,0,1-.5-.5V4.763l-2.15,2.16a.5.5,0,0,1-.71-.71Z"/>
</g>`,
},
{
name: 'save_up_2',
svg: `<g>
<path d="M18.437,20.937H5.563a2.372,2.372,0,0,1-2.5-2.211v-11a2.372,2.372,0,0,1,2.5-2.212h.462a.5.5,0,0,1,0,1H5.563a1.381,1.381,0,0,0-1.5,1.212v11a1.38,1.38,0,0,0,1.5,1.211H18.437a1.38,1.38,0,0,0,1.5-1.211v-11a1.381,1.381,0,0,0-1.5-1.212h-.462a.5.5,0,0,1,0-1h.462a2.372,2.372,0,0,1,2.5,2.212v11A2.372,2.372,0,0,1,18.437,20.937Z"/>
<path d="M8.645,6.213l3-3a.5.5,0,0,1,.35-.15.508.508,0,0,1,.36.15l3,3a.5.5,0,0,1-.71.71l-2.14-2.14v8.47a.508.508,0,0,1-.5.5.5.5,0,0,1-.5-.5V4.763l-2.15,2.16a.5.5,0,0,1-.71-.71Z"/>
</g>`,
},
{
name: 'search',
svg: `<path d="M20.031,20.79c0.46,0.46,1.17-0.25,0.71-0.7l-3.75-3.76c1.27-1.41,2.04-3.27,2.04-5.31
c0-4.39-3.57-7.96-7.96-7.96s-7.96,3.57-7.96,7.96c0,4.39,3.57,7.96,7.96,7.96c1.98,0,3.81-0.73,5.21-1.94L20.031,20.79z
M4.11,11.02c0-3.84,3.13-6.96,6.96-6.96c3.84,0,6.96,3.12,6.96,6.96c0,3.84-3.12,6.96-6.96,6.96C7.24,17.98,4.11,14.86,4.11,11.02
z"/>`,
},
{
name: 'server',
svg: `<g>
<path d="M20.437,11H3.563a1.5,1.5,0,0,1-1.5-1.5V5.565a1.5,1.5,0,0,1,1.5-1.5H20.437a1.5,1.5,0,0,1,1.5,1.5v3.93A1.5,1.5,0,0,1,20.437,11ZM3.563,5.065a.5.5,0,0,0-.5.5v3.93a.5.5,0,0,0,.5.5H20.437a.5.5,0,0,0,.5-.5V5.565a.5.5,0,0,0-.5-.5Z"/>
<path d="M20.437,19.935H3.563a1.5,1.5,0,0,1-1.5-1.5v-3.93a1.5,1.5,0,0,1,1.5-1.5H20.437a1.5,1.5,0,0,1,1.5,1.5v3.93A1.5,1.5,0,0,1,20.437,19.935ZM3.563,14.005a.5.5,0,0,0-.5.5v3.93a.5.5,0,0,0,.5.5H20.437a.5.5,0,0,0,.5-.5v-3.93a.5.5,0,0,0-.5-.5Z"/>
<circle cx="5.563" cy="7.53" r="0.5"/>
<circle cx="7.563" cy="7.53" r="0.5"/>
<path d="M13.452,8.03a.5.5,0,0,1,0-1h5a.5.5,0,0,1,0,1Z"/>
<circle cx="5.563" cy="16.47" r="0.5"/>
<circle cx="7.563" cy="16.47" r="0.5"/>
<path d="M13.452,16.97a.5.5,0,0,1,0-1h5a.5.5,0,0,1,0,1Z"/>
</g>`,
},
{
name: 'settings',
svg: `<g>
<path d="M12.599,20.936h-1.301c-0.399,0-0.749-0.269-0.852-0.654l-0.774-2.833l-2.497,1.435
c-0.345,0.196-0.78,0.14-1.06-0.139L5.19,17.827c-0.283-0.282-0.342-0.72-0.143-1.066l1.468-2.545L6.51,14.202l-2.787-0.747
c-0.384-0.103-0.653-0.453-0.653-0.851v-1.303c0-0.397,0.268-0.747,0.651-0.851l2.839-0.777L5.121,7.171
C4.924,6.826,4.982,6.389,5.262,6.109L6.18,5.191c0.279-0.28,0.716-0.34,1.061-0.142l2.552,1.464l0.012-0.004l0.746-2.791
c0.102-0.385,0.452-0.654,0.851-0.654h1.302c0.399,0,0.749,0.269,0.852,0.655l0.763,2.838l2.508-1.441
c0.344-0.197,0.778-0.139,1.06,0.139l0.925,0.918c0.284,0.282,0.342,0.721,0.142,1.067l-1.468,2.537l0.008,0.022l2.786,0.746
c0.385,0.104,0.653,0.454,0.653,0.852v1.302c0,0.399-0.269,0.749-0.654,0.852l-2.836,0.774l1.439,2.505
c0.198,0.345,0.14,0.782-0.142,1.063l-0.917,0.917c-0.282,0.281-0.718,0.338-1.063,0.141l-2.539-1.461l-0.022,0.009l-0.746,2.785
C13.347,20.667,12.997,20.936,12.599,20.936z M11.388,19.936h1.12l0.738-2.755c0.072-0.268,0.269-0.489,0.528-0.592l0.134-0.052
c0.249-0.099,0.526-0.078,0.761,0.057l2.509,1.444l0.789-0.789l-1.423-2.477c-0.136-0.236-0.155-0.528-0.048-0.781l0.052-0.125
c0.105-0.252,0.318-0.438,0.584-0.51l2.799-0.749v-1.12l-2.755-0.738c-0.269-0.072-0.49-0.27-0.592-0.529l-0.051-0.131
c-0.099-0.251-0.078-0.53,0.057-0.763l1.452-2.508l-0.796-0.791l-2.48,1.425c-0.237,0.136-0.518,0.155-0.772,0.052l-0.115-0.047
c-0.252-0.102-0.447-0.322-0.518-0.588l-0.749-2.805h-1.119l-0.738,2.762C10.681,7.1,10.48,7.323,10.216,7.423l-0.12,0.045
C9.85,7.563,9.575,7.542,9.345,7.41L6.823,5.962l-0.79,0.789l1.422,2.476c0.137,0.239,0.154,0.532,0.046,0.785L7.45,10.132
c-0.105,0.247-0.317,0.431-0.579,0.502l-2.803,0.758v1.121l2.757,0.738c0.268,0.072,0.488,0.269,0.591,0.525l0.048,0.121
c0.102,0.253,0.082,0.534-0.055,0.77l-1.451,2.515l0.796,0.791l2.47-1.419c0.242-0.138,0.535-0.156,0.787-0.045l0.106,0.044
c0.256,0.098,0.453,0.319,0.525,0.59L11.388,19.936z M9.751,17.482c0.002,0.001,0.005,0.002,0.008,0.003L9.751,17.482z
M9.605,17.421c0.002,0.001,0.004,0.002,0.007,0.003L9.605,17.421z M6.488,14.147C6.488,14.148,6.488,14.148,6.488,14.147
L6.488,14.147z M6.532,9.736C6.532,9.736,6.532,9.737,6.532,9.736L6.532,9.736z M14.256,6.532L14.256,6.532
C14.256,6.532,14.256,6.532,14.256,6.532z"/>
<path d="M12,15c-1.654,0-3-1.346-3-3s1.346-3,3-3s3,1.346,3,3S13.655,15,12,15z M12,10c-1.103,0-2,0.897-2,2
s0.897,2,2,2s2-0.897,2-2S13.103,10,12,10z"/>
</g>`,
},
{
name: 'share_1',
svg: `<g>
<path d="M12.223,11.075a.5.5,0,0,0,.7.71l7-7v3.58a.508.508,0,0,0,.5.5.5.5,0,0,0,.5-.5V3.575a.5.5,0,0,0-.5-.5h-4.79a.5.5,0,0,0,0,1h3.58Z"/>
<path d="M17.876,20.926H6.124a3.053,3.053,0,0,1-3.05-3.05V6.124a3.053,3.053,0,0,1,3.05-3.05h6.028a.5.5,0,0,1,0,1H6.124a2.053,2.053,0,0,0-2.05,2.05V17.876a2.053,2.053,0,0,0,2.05,2.05H17.876a2.053,2.053,0,0,0,2.05-2.05V11.849a.5.5,0,0,1,1,0v6.027A3.053,3.053,0,0,1,17.876,20.926Z"/>
</g>`,
},
{
name: 'share_2',
svg: '<path d="M18.44,15.94a2.5,2.5,0,0,0-1.96.95L7.97,12.64a2.356,2.356,0,0,0,0-1.29l8.5-4.25a2.5,2.5,0,1,0-.53-1.54,2.269,2.269,0,0,0,.09.65l-8.5,4.25a2.5,2.5,0,1,0,0,3.08l8.5,4.25a2.269,2.269,0,0,0-.09.65,2.5,2.5,0,1,0,2.5-2.5Zm0-11.88a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,18.44,4.06ZM5.56,13.5A1.5,1.5,0,1,1,7.06,12,1.5,1.5,0,0,1,5.56,13.5Zm12.88,6.44a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,18.44,19.94Z"/>',
},
{
name: 'shirt',
svg: `<g>
<path d="M16.657,21.949H7.343a2.5,2.5,0,0,1-2.5-2.5V11.222a6.468,6.468,0,0,1,.112-1.2L5.224,8.59a5.572,5.572,0,0,0,.094-1.015V3.3a1.252,1.252,0,0,1,1.25-1.25H8.815a1.251,1.251,0,0,1,1.25,1.25V6.413a1.935,1.935,0,0,0,3.87,0V3.3a1.251,1.251,0,0,1,1.25-1.25h2.247a1.252,1.252,0,0,1,1.25,1.25V7.575a5.486,5.486,0,0,0,.1,1.015l.269,1.431a6.57,6.57,0,0,1,.111,1.2v8.227A2.5,2.5,0,0,1,16.657,21.949ZM6.568,3.051a.251.251,0,0,0-.25.25V7.575a6.543,6.543,0,0,1-.111,1.2l-.27,1.432a5.5,5.5,0,0,0-.094,1.015v8.227a1.5,1.5,0,0,0,1.5,1.5h9.314a1.5,1.5,0,0,0,1.5-1.5V11.222a5.519,5.519,0,0,0-.094-1.016l-.269-1.43a6.453,6.453,0,0,1-.112-1.2V3.3a.251.251,0,0,0-.25-.25H15.185a.251.251,0,0,0-.25.25V6.413a2.935,2.935,0,0,1-5.87,0V3.3a.251.251,0,0,0-.25-.25Z"/>
<path d="M11.986,17.333V13.874a.075.075,0,0,0-.114-.064l-.638.392a.149.149,0,0,1-.228-.128v-.65a.3.3,0,0,1,.145-.258l.764-.457a.3.3,0,0,1,.154-.043H12.7a.3.3,0,0,1,.3.3v4.367a.3.3,0,0,1-.3.3h-.409A.3.3,0,0,1,11.986,17.333Z"/>
</g>`,
},
{
name: 'shop',
svg: '<path d="M20.6,5.26a2.512,2.512,0,0,0-2.48-2.2H5.885a2.512,2.512,0,0,0-2.48,2.19l-.3,2.47a3.411,3.411,0,0,0,1.16,2.56v8.16a2.5,2.5,0,0,0,2.5,2.5h10.47a2.5,2.5,0,0,0,2.5-2.5V10.28A3.411,3.411,0,0,0,20.9,7.72Zm-6.59,14.68h-4V15.86a1.5,1.5,0,0,1,1.5-1.5h1a1.5,1.5,0,0,1,1.5,1.5Zm4.73-1.5a1.5,1.5,0,0,1-1.5,1.5h-2.23V15.86a2.5,2.5,0,0,0-2.5-2.5h-1a2.5,2.5,0,0,0-2.5,2.5v4.08H6.765a1.5,1.5,0,0,1-1.5-1.5V10.87a3.223,3.223,0,0,0,1.24.24,3.358,3.358,0,0,0,2.58-1.19.241.241,0,0,1,.34,0,3.358,3.358,0,0,0,2.58,1.19A3.393,3.393,0,0,0,14.6,9.92a.219.219,0,0,1,.16-.07.238.238,0,0,1,.17.07,3.358,3.358,0,0,0,2.58,1.19,3.173,3.173,0,0,0,1.23-.24Zm-1.23-8.33a2.386,2.386,0,0,1-1.82-.83,1.2,1.2,0,0,0-.92-.43h-.01a1.194,1.194,0,0,0-.92.42,2.476,2.476,0,0,1-3.65,0,1.24,1.24,0,0,0-1.86,0A2.405,2.405,0,0,1,4.1,7.78l.3-2.4a1.517,1.517,0,0,1,1.49-1.32h12.23a1.5,1.5,0,0,1,1.49,1.32l.29,2.36A2.392,2.392,0,0,1,17.505,10.11Z"/>',
},
{
name: 'shopping_basket',
svg: `<g>
<path d="M19.44,7.937H17.3l-1.21-4.51a.508.508,0,0,0-.61-.35.489.489,0,0,0-.35.61l1.14,4.25H7.74l1.14-4.25a.5.5,0,0,0-.36-.61.513.513,0,0,0-.61.35l-1.2,4.51H4.56a1.5,1.5,0,0,0-.32,2.96l.74,7.77a2.492,2.492,0,0,0,2.49,2.27h9.06a2.492,2.492,0,0,0,2.49-2.27l.74-7.77a1.5,1.5,0,0,0-.32-2.96Zm-1.41,10.64a1.5,1.5,0,0,1-1.5,1.36H7.47a1.5,1.5,0,0,1-1.5-1.36l-.72-7.64h13.5Zm1.41-8.64H4.56a.508.508,0,0,1-.5-.5.5.5,0,0,1,.5-.5H19.44a.5.5,0,0,1,.5.5A.508.508,0,0,1,19.44,9.937Z"/>
<path d="M9.5,17.432a.5.5,0,0,1-.5-.5v-3a.5.5,0,0,1,1,0v3A.5.5,0,0,1,9.5,17.432Z"/>
<path d="M14.5,17.432a.5.5,0,0,1-.5-.5v-3a.5.5,0,0,1,1,0v3A.5.5,0,0,1,14.5,17.432Z"/>
</g>`,
},
{
name: 'shopping_cart',
svg: `<g>
<path d="M17.437,19.934c0,0.552 -0.448,1 -1,1c-0.552,0 -1,-0.448 -1,-1c0,-0.552 0.448,-1 1,-1c0.552,0 1,0.448 1,1Zm-11.217,-4.266l-0.945,-10.9c-0.03,-0.391 -0.356,-0.693 -0.749,-0.693l-0.966,-0c-0.276,-0 -0.5,-0.224 -0.5,-0.5c0,-0.276 0.224,-0.5 0.5,-0.5l0.966,-0c0.916,-0 1.676,0.704 1.746,1.617l0.139,1.818l13.03,-0c0.885,-0 1.577,0.76 1.494,1.638l-0.668,7.52c-0.121,1.285 -1.199,2.267 -2.489,2.267l-9.069,0c-1.29,0 -2.367,-0.981 -2.489,-2.267Zm0.274,-8.158l0.722,8.066c0.073,0.77 0.719,1.359 1.493,1.359l9.069,0c0.774,0 1.42,-0.589 1.493,-1.359l0.668,-7.518c0.028,-0.294 -0.203,-0.548 -0.498,-0.548l-12.947,-0Zm4.454,12.424c-0,0.552 -0.448,1 -1,1c-0.552,0 -1,-0.448 -1,-1c-0,-0.552 0.448,-1 1,-1c0.552,0 1,0.448 1,1Z"/>
</g>`,
},
{
name: 'shopping_tag',
svg: `<g>
<path d="M20.605,5.988a2.8,2.8,0,0,0-2.6-2.59l-4.56-.32a2.842,2.842,0,0,0-2.17.81L3.9,11.278a2.794,2.794,0,0,0,0,3.95l4.87,4.88a2.8,2.8,0,0,0,3.96,0l7.38-7.39a2.779,2.779,0,0,0,.81-2.17ZM12.015,19.4a1.8,1.8,0,0,1-2.54,0l-4.87-4.87a1.793,1.793,0,0,1,0-2.55l1.17-1.17,7.42,7.42Zm7.38-7.38-5.5,5.5L6.485,10.1l5.5-5.5a1.786,1.786,0,0,1,1.27-.53c.04,0,.08.01.12.01l4.56.32a1.8,1.8,0,0,1,1.67,1.66l.32,4.56A1.829,1.829,0,0,1,19.4,12.018Z"/>
<circle cx="17" cy="6.999" r="0.862"/>
</g>`,
},
{
name: 'shuffle',
svg: '<path d="M21.794,17.082a.513.513,0,0,1,0,.71c-.08.08-.17.16-.25.25-.58.58-1.17,1.16-1.75,1.75a.5.5,0,0,1-.71-.71c.09-.08.17-.17.25-.25l.9-.9h-3.85a2.509,2.509,0,0,1-2.15-1.21L12,12.982l-2.24,3.74a2.509,2.509,0,0,1-2.15,1.21H2.564a.5.5,0,0,1-.5-.5.5.5,0,0,1,.5-.5h5.05A1.507,1.507,0,0,0,8.9,16.2l2.51-4.2L8.9,7.792a1.507,1.507,0,0,0-1.29-.73H2.564a.5.5,0,0,1,0-1h5.05a2.518,2.518,0,0,1,2.15,1.22L12,11.032l2.24-3.75a2.489,2.489,0,0,1,2.14-1.22h3.85l-1.15-1.15a.5.5,0,1,1,.71-.7c.08.08.17.16.25.25.58.58,1.17,1.16,1.75,1.75a.5.5,0,0,1,0,.7c-.08.09-.17.17-.25.25-.58.59-1.17,1.17-1.75,1.75a.5.5,0,1,1-.71-.7l.25-.25.9-.9h-3.85a1.519,1.519,0,0,0-1.29.73L12.584,12l2.51,4.2a1.519,1.519,0,0,0,1.29.73h3.84l-1.14-1.14a.5.5,0,0,1,.71-.71Z"/>',
},
{
name: 'signpost_duo_1',
svg: `<g>
<path d="M20.437,11.5H6.536a2.628,2.628,0,0,1-1.723-.629L2.564,8.915A1.329,1.329,0,0,1,2.57,6.831L4.813,4.88a2.619,2.619,0,0,1,1.723-.629h13.9a1.451,1.451,0,0,1,1.5,1.393v4.463A1.451,1.451,0,0,1,20.437,11.5Zm-13.9-6.25a1.64,1.64,0,0,0-1.067.384L3.215,7.6a.364.364,0,0,0-.152.281.349.349,0,0,0,.141.27l.011.01,2.254,1.961a1.644,1.644,0,0,0,1.067.384h13.9a.463.463,0,0,0,.5-.394V5.644a.463.463,0,0,0-.5-.393Z"/>
<path d="M17.464,19.749H3.563a1.451,1.451,0,0,1-1.5-1.394V13.892a1.451,1.451,0,0,1,1.5-1.393h13.9a2.621,2.621,0,0,1,1.724.63l2.249,1.956a1.329,1.329,0,0,1-.007,2.083l-2.242,1.951A2.625,2.625,0,0,1,17.464,19.749ZM3.563,13.5a.463.463,0,0,0-.5.393v4.463a.463.463,0,0,0,.5.394h13.9a1.644,1.644,0,0,0,1.068-.385l2.253-1.96a.362.362,0,0,0,.152-.28.351.351,0,0,0-.141-.271l-.011-.01-2.254-1.96a1.64,1.64,0,0,0-1.067-.384Z"/>
</g>`,
},
{
name: 'signpost_l_1',
svg: '<path d="M20.437,16H6.536a2.489,2.489,0,0,1-1.744-.709L2.542,13.1a1.5,1.5,0,0,1,.007-2.2L4.792,8.709A2.483,2.483,0,0,1,6.536,8h13.9a1.5,1.5,0,0,1,1.5,1.5v5A1.5,1.5,0,0,1,20.437,16ZM6.536,9a1.491,1.491,0,0,0-1.046.425l-2.255,2.2A.5.5,0,0,0,3.063,12a.494.494,0,0,0,.162.369l.01.01,2.254,2.2A1.492,1.492,0,0,0,6.536,15h13.9a.5.5,0,0,0,.5-.5v-5a.5.5,0,0,0-.5-.5Z"/>',
},
{
name: 'signpost_r_1',
svg: '<path d="M3.563,8h13.9a2.489,2.489,0,0,1,1.744.709l2.25,2.192a1.5,1.5,0,0,1-.007,2.2l-2.243,2.187A2.483,2.483,0,0,1,17.464,16H3.563a1.5,1.5,0,0,1-1.5-1.5v-5A1.5,1.5,0,0,1,3.563,8Zm13.9,7a1.491,1.491,0,0,0,1.046-.425l2.255-2.2A.5.5,0,0,0,20.937,12a.494.494,0,0,0-.162-.369l-.01-.01-2.254-2.2A1.492,1.492,0,0,0,17.464,9H3.563a.5.5,0,0,0-.5.5v5a.5.5,0,0,0,.5.5Z"/>',
},
{
name: 'slider_horizontal',
svg: `<g>
<path d="M21.45,7.5H9.99C9.77,6.64,8.99,6,8.06,6h-1C6.13,6,5.35,6.64,5.13,7.5H2.55
c-0.26,0-0.52,0.23-0.5,0.5c0.01,0.27,0.22,0.5,0.5,0.5h2.58c0.22,0.86,1,1.5,1.93,1.5h1c0.93,0,1.71-0.64,1.93-1.5h11.46
C22.1,8.5,22.1,7.5,21.45,7.5z M8.06,9h-1c-0.54,0-0.99-0.44-1-0.98c0-0.01,0-0.01,0-0.02c0-0.55,0.45-1,1-1h1c0.55,0,1,0.45,1,1
S8.61,9,8.06,9z"/>
<path d="M21.45,15.5h-2.58c-0.22-0.86-1-1.5-1.93-1.5h-1c-0.93,0-1.71,0.64-1.93,1.5H2.55
c-0.65,0-0.65,1,0,1h11.46c0.22,0.86,1,1.5,1.93,1.5h1c0.93,0,1.71-0.64,1.93-1.5h2.58c0.26,0,0.52-0.23,0.5-0.5
C21.94,15.73,21.73,15.5,21.45,15.5z M17.94,16c0,0.55-0.45,1-1,1h-1c-0.55,0-1-0.45-1-1s0.45-1,1-1h1c0.54,0,0.99,0.44,1,0.98
C17.94,15.99,17.94,15.99,17.94,16z"/>
</g>`,
},
{
name: 'slider_vertical',
svg: `<g>
<path d="M8.5,5.13V2.55c0-0.26-0.23-0.52-0.5-0.5c-0.27,0.01-0.5,0.22-0.5,0.5v2.58
C6.64,5.35,6,6.13,6,7.06v1c0,0.93,0.64,1.71,1.5,1.93v11.46c0,0.65,1,0.65,1,0V9.99c0.86-0.22,1.5-1,1.5-1.93v-1
C10,6.13,9.36,5.35,8.5,5.13z M9,8.06c0,0.55-0.45,1-1,1s-1-0.45-1-1v-1c0-0.54,0.44-0.99,0.98-1c0.01,0,0.01,0,0.02,0
c0.55,0,1,0.45,1,1V8.06z"/>
<path d="M16.5,14.01V2.55c0-0.65-1-0.65-1,0v11.46c-0.86,0.22-1.5,1-1.5,1.93v1c0,0.93,0.64,1.71,1.5,1.93
v2.58c0,0.26,0.23,0.52,0.5,0.5c0.27-0.01,0.5-0.22,0.5-0.5v-2.58c0.86-0.22,1.5-1,1.5-1.93v-1C18,15.01,17.36,14.23,16.5,14.01z
M17,16.94c0,0.54-0.44,0.99-0.98,1c-0.01,0-0.01,0-0.02,0c-0.55,0-1-0.45-1-1v-1c0-0.55,0.45-1,1-1s1,0.45,1,1V16.94z"/>
</g>`,
},
{
name: 'speaker',
svg: `<g>
<path d="M17.438,21.938H6.562c-1.378,0-2.5-1.121-2.5-2.5V4.562c0-1.379,1.122-2.5,2.5-2.5h10.875
c1.378,0,2.5,1.121,2.5,2.5v14.876C19.938,20.817,18.816,21.938,17.438,21.938z M6.562,3.062c-0.827,0-1.5,0.673-1.5,1.5v14.876
c0,0.827,0.673,1.5,1.5,1.5h10.875c0.827,0,1.5-0.673,1.5-1.5V4.562c0-0.827-0.673-1.5-1.5-1.5H6.562z"/>
<path d="M11.998,18.939c-2.068,0-3.75-1.683-3.75-3.75s1.682-3.75,3.75-3.75s3.75,1.683,3.75,3.75
S14.065,18.939,11.998,18.939z M11.998,12.439c-1.517,0-2.75,1.233-2.75,2.75s1.233,2.75,2.75,2.75s2.75-1.233,2.75-2.75
S13.514,12.439,11.998,12.439z"/>
<path d="M11.998,9.563c-1.241,0-2.25-1.01-2.25-2.25s1.009-2.25,2.25-2.25s2.25,1.01,2.25,2.25
S13.238,9.563,11.998,9.563z M11.998,6.063c-0.689,0-1.25,0.561-1.25,1.25s0.561,1.25,1.25,1.25s1.25-0.561,1.25-1.25
S12.687,6.063,11.998,6.063z"/>
</g>`,
},
{
name: 'square_alert',
svg: `<g>
<path d="M18.759,21.051H5.885c-1.378,0-2.5-1.122-2.5-2.5V5.678c0-1.378,1.122-2.5,2.5-2.5h12.874
c1.378,0,2.5,1.122,2.5,2.5v12.873C21.259,19.93,20.137,21.051,18.759,21.051z M5.885,4.178c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.874c0.827,0,1.5-0.673,1.5-1.5V5.678c0-0.827-0.673-1.5-1.5-1.5H5.885z"/>
<g>
<path d="M12.821,9.113c0-0.643-1-0.645-1,0l0,0v4.018c0,0.643,1,0.645,1,0V9.113z"/>
<circle cx="12.321" cy="15.113" r="0.5"/>
</g>
</g>`,
},
{
name: 'square_check',
svg: `<g>
<path d="M18.437,20.937H5.563c-1.378,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.122-2.5,2.5-2.5h12.874
c1.378,0,2.5,1.122,2.5,2.5v12.873C20.937,19.815,19.815,20.937,18.437,20.937z M5.563,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.874c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.563z"/>
<path d="M15.81,10.398c0.45-0.46-0.26-1.17-0.71-0.71l-3.56,3.56c-0.58-0.58-1.16-1.15-1.73-1.73
c-0.46-0.45-1.17,0.25-0.71,0.71l2.08,2.08c0.19,0.19,0.52,0.19,0.71,0L15.81,10.398z"/>
</g>`,
},
{
name: 'square_chev_down',
svg: `<g>
<path d="M8.65,10.85a.495.495,0,0,1,.7-.7L12,12.79l2.65-2.64a.495.495,0,0,1,.7.7l-3,3a.492.492,0,0,1-.7,0Z"/>
<path d="M3.063,18.437V5.563a2.5,2.5,0,0,1,2.5-2.5H18.437a2.5,2.5,0,0,1,2.5,2.5V18.437a2.5,2.5,0,0,1-2.5,2.5H5.563A2.5,2.5,0,0,1,3.063,18.437ZM19.937,5.563a1.5,1.5,0,0,0-1.5-1.5H5.563a1.5,1.5,0,0,0-1.5,1.5V18.437a1.5,1.5,0,0,0,1.5,1.5H18.437a1.5,1.5,0,0,0,1.5-1.5Z"/>
</g>`,
},
{
name: 'square_chev_left',
svg: `<g>
<path d="M11.21,12l2.64,2.65a.495.495,0,0,1-.7.7c-.13-.12-.25-.24-.38-.37-.87-.87-1.75-1.75-2.62-2.63a.492.492,0,0,1,0-.7l3-3a.495.495,0,0,1,.7.7Z"/>
<path d="M18.437,20.939H5.562a2.5,2.5,0,0,1-2.5-2.5V5.566a2.5,2.5,0,0,1,2.5-2.5H18.437a2.5,2.5,0,0,1,2.5,2.5V18.439A2.5,2.5,0,0,1,18.437,20.939ZM5.562,4.066a1.5,1.5,0,0,0-1.5,1.5V18.439a1.5,1.5,0,0,0,1.5,1.5H18.437a1.5,1.5,0,0,0,1.5-1.5V5.566a1.5,1.5,0,0,0-1.5-1.5Z"/>
</g>`,
},
{
name: 'square_chev_right',
svg: `<g>
<path d="M10.85,15.35a.495.495,0,0,1-.7-.7L12.79,12,10.15,9.35a.495.495,0,0,1,.7-.7l3,3a.492.492,0,0,1,0,.7Z"/>
<path d="M18.437,20.937H5.563a2.5,2.5,0,0,1-2.5-2.5V5.563a2.5,2.5,0,0,1,2.5-2.5H18.437a2.5,2.5,0,0,1,2.5,2.5V18.437A2.5,2.5,0,0,1,18.437,20.937ZM5.563,4.063a1.5,1.5,0,0,0-1.5,1.5V18.437a1.5,1.5,0,0,0,1.5,1.5H18.437a1.5,1.5,0,0,0,1.5-1.5V5.563a1.5,1.5,0,0,0-1.5-1.5Z"/>
</g>`,
},
{
name: 'square_chev_up',
svg: `<g>
<path d="M15.35,13.15a.495.495,0,0,1-.7.7L12,11.21,9.35,13.85a.495.495,0,0,1-.7-.7l3-3a.492.492,0,0,1,.7,0Z"/>
<path d="M20.937,5.563V18.437a2.5,2.5,0,0,1-2.5,2.5H5.563a2.5,2.5,0,0,1-2.5-2.5V5.563a2.5,2.5,0,0,1,2.5-2.5H18.437A2.5,2.5,0,0,1,20.937,5.563ZM4.063,18.437a1.5,1.5,0,0,0,1.5,1.5H18.437a1.5,1.5,0,0,0,1.5-1.5V5.563a1.5,1.5,0,0,0-1.5-1.5H5.563a1.5,1.5,0,0,0-1.5,1.5Z"/>
</g>`,
},
{
name: 'square_info',
svg: `<g>
<path d="M18.438,20.937H5.562c-1.379,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.121-2.5,2.5-2.5h12.875
c1.379,0,2.5,1.122,2.5,2.5v12.873C20.938,19.815,19.816,20.937,18.438,20.937z M5.562,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.875c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.562z"/>
<g>
<path d="M11.501,10.983c0-0.645,1-0.643,1,0v4.018l0,0c0,0.645-1,0.643-1,0V10.983z"/>
<circle cx="12.001" cy="9.001" r="0.5"/>
</g>
</g>`,
},
{
name: 'square_minus',
svg: `<g>
<path d="M18.437,20.937H5.563c-1.378,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.122-2.5,2.5-2.5h12.874
c1.378,0,2.5,1.122,2.5,2.5v12.873C20.937,19.815,19.815,20.937,18.437,20.937z M5.563,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.874c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.563z"/>
<path d="M8.999,12.499c-0.645,0-0.643-1,0-1h6l0,0c0.645,0,0.643,1,0,1H8.999z"/>
</g>`,
},
{
name: 'square_more',
svg: `<g>
<path d="M18.438,20.937H5.562c-1.379,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.121-2.5,2.5-2.5h12.875
c1.379,0,2.5,1.122,2.5,2.5v12.873C20.938,19.815,19.816,20.937,18.438,20.937z M5.562,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.875c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.562z"/>
<circle cx="11.999" cy="12" r="1"/>
<circle cx="15.999" cy="12" r="1"/>
<circle cx="7.999" cy="12" r="1"/>
</g>`,
},
{
name: 'square_plus',
svg: `<g>
<path d="M18.438,20.937H5.562c-1.379,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.121-2.5,2.5-2.5h12.875
c1.379,0,2.5,1.122,2.5,2.5v12.873C20.938,19.815,19.816,20.937,18.438,20.937z M5.562,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.875c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.562z"/>
<path d="M14.999,12.499h-2.5v2.5c0,0.64-1,0.64-1,0v-2.5h-2.5c-0.64,0-0.64-1,0-1h2.5v-2.5
c0-0.64,1-0.64,1,0v2.5h2.5C15.639,11.499,15.639,12.499,14.999,12.499z"/>
</g>`,
},
{
name: 'square_question',
svg: `<g>
<g>
<path d="M11.409,12.46c0.08-0.241,0.193-0.445,0.341-0.598c0.148-0.153,0.327-0.291,0.535-0.417
c0.134-0.085,0.255-0.18,0.363-0.285c0.107-0.106,0.193-0.226,0.255-0.363c0.062-0.136,0.095-0.288,0.095-0.454
c0-0.199-0.047-0.372-0.142-0.518c-0.094-0.146-0.218-0.258-0.374-0.338c-0.156-0.079-0.329-0.119-0.519-0.119
c-0.173,0-0.337,0.036-0.495,0.107c-0.157,0.072-0.287,0.183-0.389,0.335c-0.046,0.067-0.083,0.141-0.111,0.224
c-0.072,0.21-0.261,0.359-0.483,0.359h0c-0.349,0-0.601-0.348-0.479-0.675c0.047-0.125,0.106-0.241,0.179-0.348
c0.188-0.279,0.437-0.491,0.748-0.634s0.654-0.216,1.031-0.216c0.411,0,0.773,0.077,1.082,0.231
c0.31,0.154,0.55,0.367,0.721,0.642c0.172,0.274,0.258,0.595,0.258,0.96c0,0.251-0.039,0.477-0.118,0.678s-0.19,0.379-0.334,0.536
c-0.144,0.157-0.318,0.296-0.52,0.417c-0.191,0.119-0.344,0.242-0.462,0.37c-0.118,0.128-0.207,0.278-0.257,0.454
c-0.015,0.053-0.031,0.164-0.045,0.283c-0.029,0.245-0.236,0.429-0.482,0.429h0c-0.286,0-0.512-0.246-0.484-0.531
C11.342,12.787,11.37,12.578,11.409,12.46z"/>
<circle cx="11.791" cy="14.893" r="0.587"/>
</g>
<path d="M18.438,20.937H5.562c-1.379,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.121-2.5,2.5-2.5h12.875
c1.379,0,2.5,1.122,2.5,2.5v12.873C20.938,19.815,19.816,20.937,18.438,20.937z M5.562,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.875c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.562z"/>
</g>`,
},
{
name: 'square_remove',
svg: `<g>
<path d="M18.437,20.937H5.563c-1.378,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.122-2.5,2.5-2.5h12.874
c1.378,0,2.5,1.122,2.5,2.5v12.873C20.937,19.815,19.815,20.937,18.437,20.937z M5.563,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.874c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.563z"/>
<path d="M13.767,14.477c0.45,0.45,1.16-0.25,0.71-0.71l-1.77-1.77l1.77-1.77c0.45-0.45-0.25-1.16-0.71-0.7
l-1.77,1.77l-1.77-1.77c-0.45-0.46-1.16,0.25-0.7,0.7c0.59,0.59,1.17,1.18,1.77,1.77l-1.77,1.77c-0.46,0.45,0.25,1.16,0.7,0.71
l1.77-1.77L13.767,14.477z"/>
</g>`,
},
{
name: 'star',
svg: `<path d="M16.598,20.574c-0.238,0-0.478-0.058-0.699-0.174l-3.666-1.927c-0.146-0.076-0.319-0.076-0.465,0
L8.102,20.4c-0.51,0.269-1.116,0.224-1.58-0.114c-0.465-0.338-0.694-0.9-0.597-1.467l0.7-4.082c0.028-0.162-0.026-0.328-0.144-0.442
l-2.966-2.891c-0.412-0.401-0.557-0.991-0.379-1.538c0.178-0.547,0.642-0.938,1.211-1.021L8.446,8.25
C8.608,8.226,8.75,8.124,8.822,7.976l1.833-3.714C10.91,3.746,11.425,3.426,12,3.426s1.09,0.32,1.345,0.836l1.833,3.714
c0.073,0.148,0.214,0.25,0.376,0.274l4.098,0.595c0.569,0.083,1.033,0.474,1.211,1.021c0.178,0.547,0.032,1.136-0.379,1.538
l-2.965,2.891c-0.118,0.115-0.172,0.28-0.144,0.442l0.7,4.082c0.097,0.567-0.131,1.129-0.597,1.467
C17.215,20.477,16.908,20.574,16.598,20.574z M12.698,17.588l3.666,1.927c0.173,0.091,0.37,0.077,0.526-0.038
c0.158-0.115,0.232-0.297,0.199-0.489l-0.7-4.082c-0.083-0.487,0.078-0.983,0.432-1.328l2.965-2.89
c0.14-0.136,0.187-0.328,0.127-0.513c-0.061-0.186-0.211-0.312-0.404-0.341l-4.098-0.595c-0.489-0.071-0.912-0.378-1.13-0.821
l-1.832-3.713c-0.173-0.349-0.725-0.349-0.897,0L9.719,8.418c-0.218,0.443-0.64,0.75-1.129,0.821L4.491,9.834
c-0.192,0.028-0.343,0.155-0.404,0.341c-0.06,0.185-0.013,0.376,0.127,0.513l2.965,2.891c0.354,0.344,0.515,0.84,0.431,1.327
l-0.7,4.082c-0.033,0.192,0.042,0.375,0.199,0.489c0.157,0.115,0.353,0.129,0.527,0.038l3.665-1.927
C11.739,17.357,12.261,17.357,12.698,17.588L12.698,17.588z"/>`,
},
{
name: 'stethoscope',
svg: '<path d="M18.185,9.256a2.748,2.748,0,0,0-.5,5.45v2.31a2.923,2.923,0,0,1-2.92,2.92h-2.78a2.923,2.923,0,0,1-2.92-2.92v-.98a5.5,5.5,0,0,0,5-5.47V5.286a1.483,1.483,0,0,0-1.03-1.42l-2.31-.78a.5.5,0,0,0-.63.32.491.491,0,0,0,.31.63l2.32.78a.486.486,0,0,1,.34.47v5.28a4.5,4.5,0,0,1-9,0V5.286a.486.486,0,0,1,.34-.47l2.32-.78a.491.491,0,0,0,.31-.63.5.5,0,0,0-.63-.32l-2.31.78a1.483,1.483,0,0,0-1.03,1.42v5.28a5.5,5.5,0,0,0,5,5.47v.98a3.926,3.926,0,0,0,3.92,3.92h2.78a3.926,3.926,0,0,0,3.92-3.92v-2.31a2.748,2.748,0,0,0-.5-5.45Zm0,4.5a1.75,1.75,0,1,1,1.75-1.75A1.758,1.758,0,0,1,18.185,13.756Z"/>',
},
{
name: 'sticky_note',
svg: '<path d="M18.44,3.065H5.56a2.507,2.507,0,0,0-2.5,2.5v12.87a2.507,2.507,0,0,0,2.5,2.5h8.68A2.482,2.482,0,0,0,16,20.2l4.21-4.2a2.505,2.505,0,0,0,.73-1.77V5.565A2.5,2.5,0,0,0,18.44,3.065Zm-4.38,13.5v3.37H5.56a1.5,1.5,0,0,1-1.5-1.5V5.565a1.5,1.5,0,0,1,1.5-1.5H18.44a1.5,1.5,0,0,1,1.5,1.5v8.5H16.56A2.507,2.507,0,0,0,14.06,16.565Zm1,3.13v-3.13a1.5,1.5,0,0,1,1.5-1.5h3.13Z"/>',
},
{
name: 'stop_1',
svg: '<path d="M18.437,20.937H5.563a2.5,2.5,0,0,1-2.5-2.5V5.563a2.5,2.5,0,0,1,2.5-2.5H18.437a2.5,2.5,0,0,1,2.5,2.5V18.437A2.5,2.5,0,0,1,18.437,20.937ZM5.563,4.063a1.5,1.5,0,0,0-1.5,1.5V18.437a1.5,1.5,0,0,0,1.5,1.5H18.437a1.5,1.5,0,0,0,1.5-1.5V5.563a1.5,1.5,0,0,0-1.5-1.5Z"/>',
},
{
name: 'stop_sign_1',
svg: `<g>
<path d="M12.531,15.688H10.14a.5.5,0,0,1,0-1h2.391a1.094,1.094,0,0,0,0-2.188H11.468a2.094,2.094,0,0,1,0-4.188h2.391a.5.5,0,0,1,0,1H11.468a1.094,1.094,0,0,0,0,2.188h1.063a2.094,2.094,0,0,1,0,4.188Z"/>
<path d="M15.079,21.933H8.92A2.482,2.482,0,0,1,7.153,21.2L2.8,16.847a2.484,2.484,0,0,1-.732-1.768V8.921A2.486,2.486,0,0,1,2.8,7.153L7.153,2.8A2.482,2.482,0,0,1,8.92,2.067h6.159a2.482,2.482,0,0,1,1.767.732L21.2,7.154a2.482,2.482,0,0,1,.732,1.767v6.158a2.491,2.491,0,0,1-.731,1.768L16.846,21.2A2.482,2.482,0,0,1,15.079,21.933ZM8.92,3.067a1.511,1.511,0,0,0-1.06.439L3.506,7.861a1.489,1.489,0,0,0-.439,1.06v6.158a1.491,1.491,0,0,0,.439,1.061L7.86,20.494a1.511,1.511,0,0,0,1.06.439h6.159a1.511,1.511,0,0,0,1.06-.439l4.355-4.354a1.494,1.494,0,0,0,.439-1.061V8.921a1.511,1.511,0,0,0-.439-1.06L16.139,3.506a1.511,1.511,0,0,0-1.06-.439Z"/>
</g>`,
},
{
name: 'stopwatch',
svg: `<g>
<path d="M17.925,7.828c1.226,1.391 1.97,3.217 1.97,5.215c0,4.358 -3.537,7.895 -7.895,7.895c-4.358,0 -7.896,-3.537 -7.896,-7.895c0,-4.189 3.271,-7.621 7.396,-7.879l0,-1.103l-1.587,0c-0.645,0 -0.643,-1 -0,-1l4.174,0c0.645,0 0.644,1 -0,1l-1.587,0l0,1.103c1.803,0.113 3.443,0.832 4.718,1.956c0.378,-0.378 0.756,-0.756 1.135,-1.134c0.197,-0.198 0.507,-0.183 0.707,-0c0.199,0.183 0.185,0.522 -0,0.707l-1.135,1.135Zm0.97,5.215c0,-3.805 -3.089,-6.895 -6.895,-6.895c-3.806,0.001 -6.896,3.09 -6.896,6.895c0,3.806 3.09,6.895 6.896,6.895c3.806,0 6.895,-3.089 6.895,-6.895Zm-6.395,0.001c0,0.645 -1,0.643 -1,-0l0,-4.704c0,-0.644 1,-0.643 1,-0l0,4.704Z"/>
</g>`,
},
{
name: 'stream_off',
svg: `<g>
<path d="M4.911,4.206c-.45-.45-1.16.26-.71.71l.32.32v.01A10.646,10.646,0,0,0,5.541,19.8c.48.43,1.19-.28.71-.71a9.623,9.623,0,0,1-1.01-13.13l2.27,2.27a6.022,6.022,0,0,0,.61,8.18c.48.44,1.19-.27.71-.7a5.024,5.024,0,0,1-.61-6.77l2.61,2.61a1.13,1.13,0,0,0-.09.45,1.248,1.248,0,0,0,1.25,1.24,1.13,1.13,0,0,0,.45-.09l4.77,4.77.86.86a3.024,3.024,0,0,1-.31.31.355.355,0,0,0-.11.16.406.406,0,0,0-.04.19.381.381,0,0,0,.04.19.386.386,0,0,0,.11.17.5.5,0,0,0,.35.14.585.585,0,0,0,.13-.02.432.432,0,0,0,.22-.12c.11-.1.22-.2.32-.3.1.09.19.19.29.29.45.45,1.16-.26.71-.71Z"/>
<path d="M17.73,4.908a9.624,9.624,0,0,1,2.3,11.1c-.265.582.6,1.09.864.505A10.647,10.647,0,0,0,18.438,4.2c-.475-.433-1.185.272-.708.707Z"/>
<path d="M15.15,8.291a5.016,5.016,0,0,1,1.6,4.572.515.515,0,0,0,.349.615.5.5,0,0,0,.615-.349,6.042,6.042,0,0,0-1.852-5.546c-.476-.431-1.185.274-.708.708Z"/>
</g>`,
},
{
name: 'stream_on',
svg: `<g>
<path d="M6.26,19.089A9.625,9.625,0,0,1,6.234,4.911C6.709,4.475,6,3.769,5.527,4.2A10.516,10.516,0,0,0,5.553,19.8c.475.433,1.184-.273.707-.707Z"/>
<path d="M8.84,15.706a5.024,5.024,0,0,1-.014-7.412c.474-.437-.234-1.143-.707-.707a6.028,6.028,0,0,0,.014,8.826c.474.434,1.183-.272.707-.707Z"/>
<circle cx="12" cy="12" r="1.244"/>
<path d="M17.74,4.911a9.625,9.625,0,0,1,.026,14.178c-.475.436.234,1.142.707.707A10.516,10.516,0,0,0,18.447,4.2c-.475-.433-1.184.273-.707.707Z"/>
<path d="M15.16,8.294a5.024,5.024,0,0,1,.014,7.412c-.474.437.234,1.143.707.707a6.028,6.028,0,0,0-.014-8.826c-.474-.434-1.183.272-.707.707Z"/>
</g>`,
},
{
name: 'sun',
svg: `<g>
<path d="M11.999,20.937c-0.393,0-0.744-0.203-0.94-0.542L9.61,17.896c-0.019-0.033-0.056-0.05-0.098-0.04
l-2.785,0.747c-0.379,0.102-0.772-0.004-1.05-0.281c-0.278-0.278-0.383-0.67-0.281-1.049l0.748-2.796
c0.01-0.037-0.007-0.078-0.041-0.097L3.607,12.94c-0.34-0.196-0.543-0.547-0.544-0.94c0-0.393,0.202-0.745,0.542-0.941L6.104,9.61
c0.034-0.02,0.05-0.06,0.04-0.098L5.397,6.728c-0.102-0.379,0.003-0.772,0.281-1.05s0.67-0.383,1.049-0.281l2.796,0.748
c0.035,0.009,0.077-0.006,0.097-0.041l1.439-2.497c0.196-0.34,0.547-0.543,0.94-0.544c0,0,0.001,0,0.001,0
c0.393,0,0.744,0.203,0.94,0.542l1.448,2.499c0.02,0.033,0.058,0.051,0.098,0.04l2.785-0.747c0.379-0.101,0.772,0.003,1.05,0.281
c0.278,0.278,0.383,0.67,0.281,1.049l-0.748,2.796c-0.01,0.038,0.007,0.078,0.041,0.097l2.497,1.439
c0.34,0.196,0.544,0.548,0.544,0.94c0,0.393-0.202,0.745-0.542,0.941l-2.499,1.448c-0.034,0.02-0.05,0.06-0.04,0.098l0.747,2.785
c0.102,0.379-0.003,0.771-0.281,1.049s-0.669,0.382-1.049,0.281l-2.796-0.748c-0.036-0.01-0.078,0.007-0.097,0.041l-1.439,2.496
C12.744,20.733,12.393,20.936,11.999,20.937C12,20.937,11.999,20.937,11.999,20.937z M9.534,16.853
c0.381,0,0.744,0.201,0.941,0.541l1.448,2.5c0.017,0.029,0.042,0.043,0.075,0.043l0,0c0.033,0,0.058-0.014,0.074-0.043l1.439-2.497
c0.245-0.425,0.745-0.636,1.222-0.507l2.796,0.748c0.031,0.007,0.06,0,0.083-0.022c0.023-0.023,0.031-0.052,0.022-0.083
l-0.747-2.786c-0.126-0.474,0.081-0.976,0.505-1.221l2.499-1.448c0.029-0.017,0.043-0.042,0.043-0.075
c0-0.033-0.015-0.059-0.043-0.075l-2.496-1.439c-0.425-0.245-0.634-0.747-0.507-1.222l0.748-2.796
c0.008-0.032,0.001-0.06-0.022-0.083s-0.052-0.029-0.084-0.022L14.746,7.11c-0.473,0.127-0.976-0.081-1.221-0.505l-1.448-2.499
c-0.017-0.029-0.042-0.043-0.075-0.043l0,0c-0.033,0-0.058,0.014-0.074,0.043l-1.439,2.497C10.242,7.029,9.739,7.237,9.265,7.11
L6.469,6.363C6.437,6.355,6.41,6.362,6.386,6.385C6.362,6.409,6.355,6.437,6.363,6.469L7.11,9.254
c0.126,0.474-0.081,0.976-0.505,1.221l-2.499,1.448c-0.029,0.017-0.043,0.042-0.043,0.075s0.014,0.058,0.043,0.074l2.497,1.439
c0.425,0.246,0.634,0.748,0.507,1.222l-0.748,2.796c-0.008,0.032-0.001,0.06,0.022,0.083c0.024,0.023,0.053,0.029,0.084,0.022
l2.785-0.747C9.347,16.865,9.441,16.853,9.534,16.853z"/>
<path d="M12,15.875c-2.136,0-3.875-1.738-3.875-3.875S9.864,8.125,12,8.125S15.875,9.864,15.875,12
S14.136,15.875,12,15.875z M12,9.125c-1.585,0-2.875,1.29-2.875,2.875s1.29,2.875,2.875,2.875s2.875-1.29,2.875-2.875
S13.585,9.125,12,9.125z"/>
</g>`,
},
{
name: 'tablets_1',
svg: '<path d="M14.76,3.065a6.171,6.171,0,0,0-6.11,5.58,6.159,6.159,0,1,0,6.71,6.71,6.159,6.159,0,0,0-.6-12.29ZM9.23,19.935A5.166,5.166,0,0,1,5.24,11.5l7.27,7.26A5.153,5.153,0,0,1,9.23,19.935Zm3.99-1.88-7.27-7.27a5.165,5.165,0,0,1,7.27,7.27Zm2.15-3.71a6.12,6.12,0,0,0-5.72-5.71,5.157,5.157,0,1,1,5.72,5.71Z"/>',
},
{
name: 'temp_high',
svg: `<g>
<path d="M14.863,13.399v-8.46c0-0.75-0.31-1.49-0.84-2.03c-0.61-0.59-1.39-0.88-2.23-0.82
c-1.49,0.1-2.66,1.42-2.66,3l0.01,8.28c-1.44,1.09-2.14,2.87-1.82,4.67c0.34,1.9,1.84,3.42,3.72,3.79
c0.32,0.06,0.63,0.09,0.95,0.09c1.1,0,2.17-0.38,3.02-1.08c1.11-0.91,1.74-2.25,1.74-3.67
C16.753,15.679,16.043,14.259,14.863,13.399z M14.383,20.059c-0.87,0.72-2.02,1-3.15,0.78c-1.48-0.28-2.65-1.48-2.92-2.98
c-0.26-1.42,0.29-2.83,1.43-3.69c0.25-0.19,0.39-0.47,0.39-0.77v-8.31c0-1.04,0.78-1.94,1.73-2c0.05-0.01,0.09-0.01,0.14-0.01
c0.49,0,0.95,0.19,1.31,0.55c0.35,0.34,0.55,0.82,0.55,1.31v8.46c0,0.3,0.14,0.58,0.39,0.77c0.94,0.7,1.5,1.82,1.5,3
C15.753,18.289,15.253,19.349,14.383,20.059z"/>
<path d="M13.893,17.169c0,1.04-0.85,1.89-1.89,1.89c-1.05,0-1.89-0.85-1.89-1.89c0-0.87,0.58-1.6,1.39-1.81
v-9.96c0-0.64,1-0.64,1,0v9.96C13.303,15.569,13.893,16.299,13.893,17.169z"/>
</g>`,
},
{
name: 'text_align_center',
svg: `<g>
<path d="M20.437,4.063H3.563a.5.5,0,1,1,0-1H20.437a.5.5,0,1,1,0,1Z"/>
<path d="M16.5,8.5h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M16.5,16.5h-9a.5.5,0,1,1,0-1h9a.5.5,0,1,1,0,1Z"/>
<path d="M20.437,12.5H3.563a.5.5,0,0,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,20.937H3.563a.5.5,0,1,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
</g>`,
},
{
name: 'text_align_justify',
svg: `<g>
<path d="M20.437,4.064H3.563a.5.5,0,0,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,8.5H3.563a.5.5,0,0,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,16.5H3.563a.5.5,0,1,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,12.5H3.563a.5.5,0,0,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,20.936H3.563a.5.5,0,1,1,0-1H20.437a.5.5,0,1,1,0,1Z"/>
</g>`,
},
{
name: 'text_align_left',
svg: `<g>
<path d="M20.438,4.063H3.563a.5.5,0,1,1,0-1H20.438a.5.5,0,1,1,0,1Z"/>
<path d="M12.562,8.5h-9a.5.5,0,0,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M12.562,16.5h-9a.5.5,0,1,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.436,12.5H3.562a.5.5,0,1,1,0-1H20.436a.5.5,0,0,1,0,1Z"/>
<path d="M20.436,20.937H3.562a.5.5,0,0,1,0-1H20.436a.5.5,0,0,1,0,1Z"/>
</g>`,
},
{
name: 'text_align_right',
svg: `<g>
<path d="M20.437,4.064H3.563a.5.5,0,0,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,8.5h-9a.5.5,0,1,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,16.5h-9a.5.5,0,1,1,0-1h9a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,12.5H3.563a.5.5,0,0,1,0-1H20.437a.5.5,0,0,1,0,1Z"/>
<path d="M20.437,20.936H3.563a.5.5,0,1,1,0-1H20.437a.5.5,0,1,1,0,1Z"/>
</g>`,
},
{
name: 'text',
svg: `<path d="M18.44,2.06H5.56c-0.83,0-1.5,0.68-1.5,1.5v4.5c0,0.64,1,0.65,1,0v-1H10v13.88H8c-0.64,0-0.65,1,0,1
h8c0.64,0,0.64-1,0-1h-2V7.06h4.94v1c0,0.64,1,0.65,1,0v-4.5C19.94,2.74,19.27,2.06,18.44,2.06z M18.94,6.06H14c-0.55,0-1,0.45-1,1
v13.88h-2V7.06c0-0.55-0.45-1-1-1H5.06v-2.5c0-0.27,0.22-0.5,0.5-0.5h12.88c0.28,0,0.5,0.23,0.5,0.5V6.06z"/>`,
},
{
name: 'timer',
svg: `<g>
<path d="M2.336,9.685c-0.75,3.329,0.175,6.84,2.579,9.286c2.253,2.292,5.511,3.329,8.677,2.836
c3.095-0.482,5.863-2.522,7.269-5.317c1.459-2.901,1.408-6.41-0.153-9.261c-1.736-3.171-5.114-5.125-8.712-5.157
c-0.27-0.002-0.5,0.231-0.5,0.5c0,1.4,0,2.801,0,4.201c0,0.643,1,0.645,1,0c0-1.4,0-2.801,0-4.201
c-0.167,0.167-0.333,0.333-0.5,0.5c2.874,0.026,5.619,1.399,7.286,3.76c1.663,2.356,2.091,5.407,1.146,8.132
c-0.926,2.671-3.163,4.796-5.87,5.602c-2.761,0.822-5.827,0.249-8.091-1.539C3.745,16.876,2.541,13.322,3.3,9.951
C3.442,9.324,2.478,9.056,2.336,9.685L2.336,9.685z"/>
<path d="M7.4,8.117C6.944,7.661,7.652,6.954,8.107,7.41l4.243,4.243l0,0
c0.456,0.456-0.251,1.163-0.707,0.707L7.4,8.117z"/>
</g>`,
},
{
name: 'trash',
svg: `<g>
<path d="M19.45,4.06h-4.18v-0.5c0-0.82-0.67-1.5-1.5-1.5h-3.54c-0.83,0-1.5,0.68-1.5,1.5v0.5H4.55
c-0.64,0-0.64,1,0,1h0.72l0.42,14.45c0.04,1.36,1.14,2.43,2.5,2.43h7.62c1.36,0,2.46-1.07,2.5-2.43l0.42-14.45h0.72
C20.09,5.06,20.09,4.06,19.45,4.06z M9.73,3.56c0-0.27,0.22-0.5,0.5-0.5h3.54c0.28,0,0.5,0.23,0.5,0.5v0.5H9.73V3.56z M17.31,19.48
c-0.03,0.82-0.69,1.46-1.5,1.46H8.19c-0.81,0-1.47-0.64-1.5-1.46L6.26,5.06h11.48L17.31,19.48z"/>
<path d="M8.375,8.002L8.375,8.002c-0.016-0.645,0.984-0.642,1,0l0.25,10c0.016,0.645-0.984,0.642-1,0
L8.375,8.002z"/>
<path d="M15.625,8.007c0.016-0.644-0.984-0.643-1,0l0,0l-0.25,10c-0.016,0.644,0.984,0.643,1,0L15.625,8.007
z"/>
</g>`,
},
{
name: 'trophy',
svg: '<path d="M19.435,5.055h-.97c.01-.12.02-.24.02-.36a1.645,1.645,0,0,0-.45-1.18,1.462,1.462,0,0,0-1.05-.45H7.025a1.484,1.484,0,0,0-1.06.45,1.6,1.6,0,0,0-.44,1.18c0,.12.01.24.02.36h-.98a1.5,1.5,0,0,0-1.5,1.5v2a4.5,4.5,0,0,0,4.27,4.49c1.07,2.3,2.53,3.79,4.17,4.04v2.85h-4a.5.5,0,1,0,0,1h9a.5.5,0,0,0,0-1h-4v-2.85c1.64-.25,3.1-1.74,4.17-4.04a4.493,4.493,0,0,0,4.26-4.49v-2A1.5,1.5,0,0,0,19.435,5.055Zm-15.37,3.5v-2a.5.5,0,0,1,.5-.5h1.04a22.9,22.9,0,0,0,1.28,5.93A3.5,3.5,0,0,1,4.065,8.555Zm7.94,7.57c-2.82,0-5.23-5.04-5.48-11.47a.573.573,0,0,1,.16-.44.48.48,0,0,1,.34-.15h9.96a.442.442,0,0,1,.33.15.62.62,0,0,1,.17.44C17.235,11.085,14.825,16.125,12.005,16.125Zm7.93-7.57a3.508,3.508,0,0,1-2.8,3.42,23.353,23.353,0,0,0,1.27-5.92h1.03a.5.5,0,0,1,.5.5Z"/>',
},
{
name: 'turn_l_1',
svg: '<path d="M20.939,9.509v10.93a.508.508,0,0,1-.5.5.5.5,0,0,1-.5-.5V9.509a3.5,3.5,0,0,0-3.5-3.5h-9.9l-.01,1.44a.5.5,0,0,1-.81.4l-2.47-1.96a.5.5,0,0,1,0-.78l2.49-1.94a.5.5,0,0,1,.81.4l-.01,1.44h9.9A4.507,4.507,0,0,1,20.939,9.509Z"/>',
},
{
name: 'turn_r_1',
svg: '<path d="M3.061,9.509v10.93a.508.508,0,0,0,.5.5.5.5,0,0,0,.5-.5V9.509a3.5,3.5,0,0,1,3.5-3.5h9.9l.01,1.44a.5.5,0,0,0,.81.4l2.47-1.96a.5.5,0,0,0,0-.78l-2.49-1.94a.5.5,0,0,0-.81.4l.01,1.44h-9.9A4.507,4.507,0,0,0,3.061,9.509Z"/>',
},
{
name: 'twitter',
svg: '<path d="M19.913,5.322a1.034,1.034,0,0,1,.837,1.629L19.708,8.432c-.064,5.086-1.765,8.539-5.056,10.264A10.917,10.917,0,0,1,9.6,19.835a12.233,12.233,0,0,1-6.2-1.524.76.76,0,0,1-.317-.8.768.768,0,0,1,.63-.6,20.6,20.6,0,0,0,3.745-.886C2,13.5,3.19,7.824,3.71,6.081a1.028,1.028,0,0,1,1.729-.422,9.931,9.931,0,0,0,5.995,2.95A4.188,4.188,0,0,1,12.725,5.3a4.125,4.125,0,0,1,5.7.02ZM4.521,17.794c1.862.872,6.226,1.819,9.667.016,2.955-1.549,4.476-4.732,4.521-9.461a.771.771,0,0,1,.142-.436l1.081-1.538-.041-.053c-.518-.007-1.029-.014-1.55,0a.835.835,0,0,1-.547-.221,3.13,3.13,0,0,0-4.383-.072,3.174,3.174,0,0,0-.935,2.87.646.646,0,0,1-.154.545.591.591,0,0,1-.516.205A10.924,10.924,0,0,1,4.722,6.354c-.67,2.078-1.52,7.094,3.869,9.065a.632.632,0,0,1,.416.538.625.625,0,0,1-.3.6A13.178,13.178,0,0,1,4.521,17.794ZM11.875,8.65h0Zm7.793-.161,0,0Z"/>',
},
{
name: 'umbrella',
svg: `<path d="M12.5,4.06v-0.5c0-0.13-0.06-0.26-0.15-0.35C12.27,3.12,12.12,3.05,12,3.06
c-0.13,0-0.26,0.05-0.35,0.15C11.56,3.3,11.5,3.42,11.5,3.56v0.5c-4.19,0.24-7.6,3.6-7.88,7.82c-0.02,0.27,0.08,0.54,0.27,0.74
s0.46,0.32,0.74,0.32h6.87v5.22c0,0.6-0.07,1.17-0.62,1.54c-0.94,0.63-2.38,0.02-2.38-1.16c0-0.64-1-0.65-1,0
c0,1.35,1.12,2.38,2.43,2.4c1.34,0.03,2.49-0.92,2.57-2.29c0.08-1.39,0-2.81,0-4.2v-1.51h6.87c0.28,0,0.55-0.12,0.74-0.32
s0.29-0.47,0.27-0.74C20.1,7.66,16.69,4.3,12.5,4.06z M19.37,11.94L4.62,11.95C4.87,8.08,8.12,5.04,12,5.04s7.13,3.04,7.38,6.89
C19.38,11.94,19.38,11.94,19.37,11.94z"/>`,
},
{
name: 'undo',
svg: `<path d="M19.939,13.67c-0.26,2.74-1.92,5.23-4.4,6.45c-2.45,1.2-5.43,1.07-7.74-0.38
c-2.34-1.46-3.74-4.02-3.77-6.77c0-0.64,1-0.64,1,0c0.03,2.74,1.62,5.25,4.13,6.37c2.23,1,4.88,0.73,6.87-0.67
c2.03-1.44,3.15-3.92,2.91-6.4c-0.24-2.39-1.76-4.51-3.91-5.57c-1.48-0.72-3.05-0.7-4.64-0.69v1.45c0,0.41-0.48,0.65-0.81,0.39
L7.109,5.9c-0.26-0.21-0.25-0.59,0-0.79l2.49-1.94c0.33-0.25,0.81-0.02,0.8,0.4v1.44c0.71-0.01,1.43-0.03,2.13,0.02
c1.54,0.11,3.03,0.65,4.26,1.59C18.959,8.26,20.189,10.96,19.939,13.67z"/>`,
},
{
name: 'unlock',
svg: `<g>
<path d="M17.44,9.325h-1.1c0-0.97,0.01-1.95,0-2.92c-0.03-2.37-1.96-4.34-4.34-4.34
c-1.48-0.01-2.82,0.76-3.64,1.97c-0.36,0.53,0.51,1.03,0.87,0.5c1.2-1.77,3.78-1.96,5.23-0.39c1.04,1.11,0.88,2.57,0.88,3.96v1.22
H6.56c-1.38,0-2.5,1.12-2.5,2.5v7.61c0,1.37,1.12,2.5,2.5,2.5h10.88c1.38,0,2.5-1.13,2.5-2.5v-7.61
C19.94,10.445,18.82,9.325,17.44,9.325z M18.94,19.435c0,0.82-0.68,1.5-1.5,1.5H6.56c-0.82,0-1.5-0.68-1.5-1.5v-7.61
c0-0.83,0.68-1.5,1.5-1.5h10.88c0.82,0,1.5,0.67,1.5,1.5V19.435z"/>
<path d="M13,14.945c0,0.37-0.2,0.69-0.5,0.86v1.5c0,0.28-0.23,0.49-0.5,0.5s-0.5-0.24-0.5-0.5v-1.5
c-0.3-0.17-0.5-0.49-0.5-0.86c0-0.55,0.45-1,1-1S13,14.395,13,14.945z"/>
</g>`,
},
{
name: 'unread',
svg: `<g>
<path d="M10.182,6.314c2.781-0.484,5.616,0.088,7.903,1.782c1.014,0.751,1.875,1.719,2.497,2.817
c0.398,0.703,0.477,1.298,0.083,2.024c-0.401,0.739-0.903,1.402-1.485,2.008c-0.446,0.464,0.26,1.172,0.707,0.707
c1.1-1.144,2.532-2.86,1.9-4.554c-0.505-1.353-1.618-2.6-2.722-3.498c-2.595-2.11-5.886-2.819-9.148-2.251
C9.283,5.46,9.552,6.424,10.182,6.314L10.182,6.314z"/>
<path d="M19.824,19.11c-2.03-2.03-4.06-4.06-6.09-6.08c-0.93-0.93-1.85-1.86-2.77-2.77
c-1.41-1.41-2.81-2.82-4.21-4.22l-1.86-1.86c-0.45-0.45-1.16,0.26-0.71,0.71c0.63,0.63,1.27,1.27,1.9,1.9
c-1.28,0.8-2.39,1.85-3.22,3.12c-0.45,0.69-0.86,1.43-0.8,2.28c0.06,0.8,0.54,1.53,0.99,2.17c1.88,2.67,4.94,4.27,8.18,4.5
c2,0.13,3.98-0.27,5.77-1.15c0.08,0.08,0.17,0.17,0.25,0.25c0.62,0.62,1.24,1.24,1.86,1.86C19.564,20.27,20.274,19.56,19.824,19.11
z M9.524,10.23c0.25,0.24,0.49,0.49,0.73,0.73c-0.18,0.31-0.28,0.66-0.28,1.04c0,1.12,0.91,2.03,2.03,2.03
c0.38,0,0.74-0.1,1.04-0.28c0.25,0.24,0.49,0.49,0.73,0.73c-1.18,0.83-2.83,0.75-3.9-0.3C8.794,13.12,8.674,11.44,9.524,10.23z
M5.824,15.83c-0.68-0.53-1.3-1.15-1.81-1.84c-0.53-0.71-1.19-1.62-0.85-2.55c0.61-1.65,2.14-3.03,3.65-3.92
c0.67,0.67,1.34,1.33,2,2c-0.95,1.24-1.13,2.93-0.4,4.35c0.71,1.38,2.23,2.26,3.78,2.17c0.84-0.04,1.63-0.34,2.29-0.85
c0.6,0.59,1.19,1.19,1.78,1.78C12.874,18.47,8.784,18.1,5.824,15.83z"/>
</g>`,
},
{
name: 'usb',
svg: `<g>
<path d="M20.44,8.355h-2.13v-0.14c0-0.8-0.64-1.45-1.44-1.45H7.29c-2.88,0-5.23,2.35-5.23,5.24
c0,2.88,2.35,5.23,5.23,5.23h9.58c0.8,0,1.44-0.65,1.44-1.45v-0.14h2.13c0.82,0,1.5-0.68,1.5-1.5v-4.29
C21.94,9.025,21.26,8.355,20.44,8.355z M17.31,15.785c0,0.25-0.2,0.45-0.44,0.45H7.29c-2.33,0-4.23-1.9-4.23-4.24
c0-2.33,1.9-4.23,4.23-4.23h9.58c0.24,0,0.44,0.2,0.44,0.45V15.785z M20.94,14.145c0,0.27-0.23,0.5-0.5,0.5h-2.13v-5.29h2.13
c0.27,0,0.5,0.22,0.5,0.5V14.145z"/>
<path d="M6.29,13.444c-0.798,0-1.446-0.648-1.446-1.446s0.648-1.446,1.446-1.446s1.447,0.648,1.447,1.446
S7.088,13.444,6.29,13.444z M6.29,11.552c-0.246,0-0.446,0.2-0.446,0.446s0.2,0.446,0.446,0.446c0.247,0,0.447-0.2,0.447-0.446
S6.538,11.552,6.29,11.552z"/>
</g>`,
},
{
name: 'user',
svg: `<g>
<path d="M17.438,21.937H6.562c-1.378,0-2.5-1.122-2.5-2.5v-0.827c0-3.969,3.561-7.198,7.938-7.198
s7.938,3.229,7.938,7.198v0.827C19.938,20.815,18.817,21.937,17.438,21.937z M12,12.412c-3.826,0-6.938,2.78-6.938,6.198v0.827
c0,0.827,0.673,1.5,1.5,1.5h10.877c0.827,0,1.5-0.673,1.5-1.5v-0.827C18.938,15.192,15.826,12.412,12,12.412z"/>
<path d="M12,9.911c-2.164,0-3.923-1.76-3.923-3.924S9.836,2.063,12,2.063s3.923,1.76,3.923,3.923
S14.164,9.911,12,9.911z M12,3.063c-1.612,0-2.923,1.312-2.923,2.923c0,1.612,1.312,2.924,2.923,2.924s2.923-1.312,2.923-2.924
C14.923,4.375,13.612,3.063,12,3.063z"/>
</g>`,
},
{
name: 'vault',
svg: `<g>
<path d="M15.935,6.06H8.065a2,2,0,0,0-2,2v6a1.993,1.993,0,0,0,2,2h7.87a2,2,0,0,0,2-2v-6A2.006,2.006,0,0,0,15.935,6.06Zm1,8a1,1,0,0,1-1,1H8.065a.99.99,0,0,1-1-1v-6a1,1,0,0,1,1-1h7.87a1,1,0,0,1,1,1Z"/>
<path d="M18.435,3.06H5.565a2.507,2.507,0,0,0-2.5,2.5v11a2.5,2.5,0,0,0,2.5,2.5v.38a1.5,1.5,0,0,0,1.5,1.5h1.43a1.5,1.5,0,0,0,1.5-1.5v-.38h4v.38a1.5,1.5,0,0,0,1.5,1.5h1.44a1.5,1.5,0,0,0,1.5-1.5v-.38a2.5,2.5,0,0,0,2.5-2.5v-11A2.507,2.507,0,0,0,18.435,3.06ZM8.995,19.44a.5.5,0,0,1-.5.5H7.065a.5.5,0,0,1-.5-.5v-.38h2.43Zm8.44,0a.5.5,0,0,1-.5.5H15.5a.508.508,0,0,1-.5-.5v-.38h2.44Zm2.5-2.88a1.5,1.5,0,0,1-1.5,1.5H5.565a1.5,1.5,0,0,1-1.5-1.5v-11a1.5,1.5,0,0,1,1.5-1.5h12.87a1.5,1.5,0,0,1,1.5,1.5Z"/>
<path d="M14.265,10.56h-.61A1.656,1.656,0,0,0,12.5,9.4V8.79a.491.491,0,0,0-.5-.48.5.5,0,0,0-.5.48V9.4a1.656,1.656,0,0,0-1.16,1.16h-.61a.5.5,0,0,0-.48.5.491.491,0,0,0,.48.5h.61a1.656,1.656,0,0,0,1.16,1.16v.62a.489.489,0,0,0,.5.47.483.483,0,0,0,.5-.47v-.62a1.622,1.622,0,0,0,1.16-1.16h.61a.485.485,0,0,0,.48-.5A.491.491,0,0,0,14.265,10.56ZM12,11.81a.75.75,0,1,1,.75-.75A.749.749,0,0,1,12,11.81Z"/>
</g>`,
},
{
name: 'vial',
svg: '<path d="M20.779,9.441l-.48-.47L15.039,3.7l-.48-.48a.5.5,0,0,0-.7,0,.5.5,0,0,0,0,.71l.47.48L4.159,14.581a3.694,3.694,0,0,0,0,5.22l.04.04a3.706,3.706,0,0,0,5.23,0L19.6,9.671l.47.48a.52.52,0,0,0,.71,0A.513.513,0,0,0,20.779,9.441Zm-12.06,9.69a2.7,2.7,0,0,1-3.81,0l-.04-.04a2.7,2.7,0,0,1,0-3.81l1.7-1.7h7.71Zm6.56-6.55H7.569l7.47-7.46,3.85,3.85Z"/>',
},
{
name: 'video_off',
svg: `<g>
<path d="M20.783,9.51v6.53c0,0.65-1,0.64-1,0V9.6c0-0.85,0.06-1.72,0-2.57c-0.03-0.37-0.27-0.5-0.61-0.3
c-0.39,0.22-0.76,0.51-1.13,0.76c-0.73,0.49-1.47,0.99-2.2,1.49c0,0.71-0.01,1.41-0.01,2.11c0,0.64-1,0.64-1,0V9.12
c0-0.58,0.01-1.16,0-1.74c-0.02-0.86-0.7-1.5-1.56-1.5c-1.22-0.01-2.43,0-3.65,0c-0.65,0-0.65-1,0-1h2.13
c0.6,0,1.22-0.05,1.81,0.01c1.29,0.14,2.25,1.21,2.27,2.5c0,0.13,0.01,0.26,0,0.39c0.77-0.53,1.55-1.05,2.32-1.57
c0.39-0.26,0.77-0.59,1.26-0.6c0.78-0.01,1.34,0.61,1.37,1.36C20.813,7.81,20.783,8.67,20.783,9.51z"/>
<path d="M19.773,19.08c-4.33-4.34-8.66-8.67-12.99-13c-0.62-0.62-1.24-1.24-1.87-1.86
c-0.45-0.46-1.16,0.25-0.7,0.71l0.28,0.28c-0.78,0.42-1.29,1.25-1.29,2.17v9.24c0,1.38,1.12,2.5,2.5,2.5h7.63
c1.38,0,2.5-1.12,2.5-2.5v-0.07c0.46,0.46,0.91,0.91,1.37,1.37c0.62,0.62,1.24,1.24,1.87,1.86
C19.523,20.24,20.233,19.53,19.773,19.08z M14.833,16.62c0,0.83-0.67,1.5-1.5,1.5h-7.63c-0.83,0-1.5-0.67-1.5-1.5V7.38
c0-0.65,0.43-1.23,1.04-1.42c3.2,3.2,6.39,6.39,9.59,9.59V16.62z"/>
</g>`,
},
{
name: 'video_on',
svg: `<path d="M21.05,5.05c-0.47-0.25-1.04-0.22-1.48,0.08l-3.32,2.24V6.56c0-1.38-1.12-2.5-2.5-2.5H4.69
c-1.38,0-2.5,1.12-2.5,2.5v10.88c0,1.38,1.12,2.5,2.5,2.5h9.06c1.38,0,2.5-1.12,2.5-2.5v-0.81l3.32,2.24
c0.25,0.16,0.53,0.24,0.81,0.24c0.23,0,0.46-0.05,0.67-0.16c0.47-0.25,0.76-0.74,0.76-1.27V6.32C21.81,5.79,21.52,5.3,21.05,5.05z
M15.25,17.44c0,0.83-0.67,1.5-1.5,1.5H4.69c-0.83,0-1.5-0.67-1.5-1.5V6.56c0-0.83,0.67-1.5,1.5-1.5h9.06c0.83,0,1.5,0.67,1.5,1.5
V17.44z M20.81,17.68c0,0.23-0.16,0.35-0.23,0.38c-0.07,0.04-0.25,0.11-0.45-0.02l-3.88-2.62V8.58l3.88-2.62
c0.2-0.13,0.38-0.06,0.45-0.02c0.07,0.03,0.23,0.15,0.23,0.38V17.68z"/>`,
},
{
name: 'view_board',
svg: `<g>
<path d="M18.437,20.937H5.563c-1.379,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.121-2.5,2.5-2.5h12.873
c1.379,0,2.5,1.122,2.5,2.5v12.874C20.937,19.815,19.815,20.937,18.437,20.937z M5.563,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.874
c0,0.827,0.673,1.5,1.5,1.5h12.873c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.563z"/>
<path d="M12.5,14.545c0,0.645-1,0.643-1,0v-8l0,0c0-0.645,1-0.643,1,0V14.545z"/>
<path d="M16.717,12.454c0,0.645-1,0.643-1,0V6.545l0,0c0-0.645,1-0.643,1,0V12.454z"/>
<path d="M8.28,6.545c0-0.643-1-0.645-1,0l0,0v4c0,0.643,1,0.645,1,0V6.545z"/>
</g>`,
},
{
name: 'view_column',
svg: `<path d="M18.44,3.06H5.56c-1.37,0-2.5,1.12-2.5,2.5v12.88c0,1.37,1.13,2.5,2.5,2.5h12.88
c1.37,0,2.5-1.13,2.5-2.5V5.56C20.94,4.18,19.81,3.06,18.44,3.06z M8.67,19.94H5.56c-0.82,0-1.5-0.68-1.5-1.5V5.56
c0-0.83,0.68-1.5,1.5-1.5h3.11V19.94z M9.67,4.06h4.66v15.88H9.67V4.06z M19.94,18.44c0,0.82-0.68,1.5-1.5,1.5h-3.11V4.06h3.11
c0.82,0,1.5,0.67,1.5,1.5V18.44z"/>`,
},
{
name: 'view_list',
svg: `<g>
<path d="M18.437,20.937H5.563c-1.379,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.121-2.5,2.5-2.5h12.874
c1.379,0,2.5,1.122,2.5,2.5v12.873C20.937,19.815,19.816,20.937,18.437,20.937z M5.563,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.874c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.563z"/>
<path d="M6.546,8.283L6.546,8.283c-0.135,0-0.256-0.057-0.354-0.146c-0.098-0.09-0.141-0.224-0.146-0.354
C6.04,7.658,6.105,7.516,6.192,7.429c0.091-0.091,0.225-0.146,0.354-0.146h1.006c0.135,0,0.256,0.057,0.354,0.146
c0.098,0.09,0.141,0.224,0.146,0.354c0.006,0.125-0.06,0.267-0.146,0.354C7.814,8.227,7.68,8.283,7.551,8.283H6.546z"/>
<path d="M6.546,12.5L6.546,12.5c-0.135,0-0.256-0.057-0.354-0.146C6.094,12.263,6.052,12.129,6.046,12
c-0.006-0.125,0.06-0.267,0.146-0.354C6.283,11.556,6.418,11.5,6.546,11.5h1.006c0.135,0,0.256,0.057,0.354,0.146
c0.098,0.09,0.141,0.224,0.146,0.354c0.006,0.125-0.06,0.267-0.146,0.354C7.814,12.444,7.68,12.5,7.551,12.5H6.546z"/>
<path d="M6.546,16.72L6.546,16.72c-0.135,0-0.256-0.057-0.354-0.146c-0.098-0.09-0.141-0.224-0.146-0.354
c-0.006-0.125,0.06-0.267,0.146-0.354c0.091-0.091,0.225-0.146,0.354-0.146h1.006c0.135,0,0.256,0.057,0.354,0.146
c0.098,0.09,0.141,0.224,0.146,0.354c0.006,0.125-0.06,0.267-0.146,0.354C7.814,16.664,7.68,16.72,7.551,16.72H6.546z"/>
<path d="M10.555,8.281L10.555,8.281c-0.645,0-0.643-1,0-1h6.895c0.645,0,0.643,1,0,1H10.555z"/>
<path d="M10.555,12.5L10.555,12.5c-0.645,0-0.643-1,0-1h6.895c0.645,0,0.643,1,0,1H10.555z"/>
<path d="M10.555,16.718L10.555,16.718c-0.645,0-0.643-1,0-1h6.895c0.645,0,0.643,1,0,1H10.555z"/>
</g>`,
},
{
name: 'view_table',
svg: `<path d="M18.44,3.06H5.56c-1.38,0-2.5,1.13-2.5,2.5v12.88c0,1.37,1.12,2.5,2.5,2.5h12.88
c1.37,0,2.5-1.13,2.5-2.5V5.56C20.94,4.19,19.81,3.06,18.44,3.06z M8.71,19.94H5.56c-0.83,0-1.5-0.68-1.5-1.5v-3.11h4.65V19.94z
M8.71,14.33H4.06V9.67h4.65V14.33z M8.71,8.67H4.06V5.56c0-0.82,0.67-1.5,1.5-1.5h3.15V8.67z M19.94,18.44c0,0.82-0.68,1.5-1.5,1.5
H9.71v-4.61h10.23V18.44z M19.94,14.33H9.71V9.67h10.23V14.33z M19.94,8.67H9.71V4.06h8.73c0.82,0,1.5,0.68,1.5,1.5V8.67z"/>`,
},
{
name: 'view_timeline',
svg: `<g>
<path d="M18.437,20.937H5.563c-1.379,0-2.5-1.122-2.5-2.5V5.563c0-1.378,1.121-2.5,2.5-2.5h12.874
c1.379,0,2.5,1.122,2.5,2.5v12.873C20.937,19.815,19.816,20.937,18.437,20.937z M5.563,4.063c-0.827,0-1.5,0.673-1.5,1.5v12.873
c0,0.827,0.673,1.5,1.5,1.5h12.874c0.827,0,1.5-0.673,1.5-1.5V5.563c0-0.827-0.673-1.5-1.5-1.5H5.563z"/>
<path d="M6.546,8.283L6.546,8.283c-0.645,0-0.643-1,0-1H12c0.645,0,0.643,1,0,1H6.546z"/>
<path d="M9.272,12.5L9.272,12.5c-0.645,0-0.643-1,0-1h5.455c0.645,0,0.643,1,0,1H9.272z"/>
<path d="M12,16.72L12,16.72c-0.645,0-0.643-1,0-1h5.455c0.645,0,0.643,1,0,1H12z"/>
</g>`,
},
{
name: 'virus',
svg: '<path d="M5.86,19.905a.485.485,0,0,0,.35.15.469.469,0,0,0,.35-.15.483.483,0,0,0,0-.7l-.53-.53,1.74-1.74a6.426,6.426,0,0,0,3.73,1.54v2.46h-.75a.5.5,0,0,0,0,1h2.5a.5.5,0,1,0,0-1H12.5v-2.46a6.426,6.426,0,0,0,3.73-1.54l1.74,1.74-.53.53a.483.483,0,0,0,0,.7.469.469,0,0,0,.35.15.485.485,0,0,0,.35-.15l1.77-1.76a.513.513,0,0,0,0-.71.5.5,0,0,0-.71,0l-.52.53-1.74-1.74a6.435,6.435,0,0,0,1.54-3.73h2.46v.75a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-2.5a.508.508,0,0,0-.5-.5.5.5,0,0,0-.5.5v.75H18.48a6.418,6.418,0,0,0-1.55-3.72l1.75-1.74.52.53a.508.508,0,0,0,.36.15.5.5,0,0,0,.35-.15.513.513,0,0,0,0-.71l-1.77-1.77a.5.5,0,0,0-.7,0,.5.5,0,0,0,0,.71l.53.53-1.74,1.74a6.382,6.382,0,0,0-3.73-1.55V3.065h.75a.5.5,0,0,0,.5-.5.5.5,0,0,0-.5-.5h-2.5a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5h.75v2.45a6.382,6.382,0,0,0-3.73,1.55L6.03,5.325l.53-.53a.5.5,0,0,0,0-.71.5.5,0,0,0-.7,0L4.09,5.855a.513.513,0,0,0,0,.71.5.5,0,0,0,.35.15.508.508,0,0,0,.36-.15l.52-.53,1.75,1.74A6.418,6.418,0,0,0,5.52,11.5H3.06v-.75a.5.5,0,0,0-.5-.5.508.508,0,0,0-.5.5v2.5a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5V12.5H5.52a6.435,6.435,0,0,0,1.54,3.73l-1.74,1.74-.52-.53a.5.5,0,0,0-.71,0,.513.513,0,0,0,0,.71Zm10.03-4.02A5.5,5.5,0,1,1,17.5,12,5.448,5.448,0,0,1,15.89,15.885Z"/>',
},
{
name: 'voicemail',
svg: `<path d="M17.435,7.5c-2.49,0-4.5,2.02-4.5,4.5c0,1.41,0.65,2.68,1.68,3.5h-5.23
c1.02-0.82,1.68-2.09,1.68-3.5c0-2.48-2.02-4.5-4.5-4.5c-2.48,0-4.5,2.02-4.5,4.5s2.02,4.5,4.5,4.5h10.87c2.48,0,4.5-2.02,4.5-4.5
S19.915,7.5,17.435,7.5z M3.065,12c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5c0,1.91-1.54,3.47-3.44,3.5h-0.06
C4.635,15.5,3.065,13.93,3.065,12z M17.435,15.5h-0.06c-1.9-0.03-3.44-1.59-3.44-3.5c0-1.93,1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5
S19.365,15.5,17.435,15.5z"/>`,
},
{
name: 'volume_high',
svg: `<g>
<path d="M13.816,19.937a1.446,1.446,0,0,1-.717-.194L9.43,17.623a3.257,3.257,0,0,0-1.625-.434H4.439a2.379,2.379,0,0,1-2.375-2.376V9.187A2.378,2.378,0,0,1,4.439,6.812H7.805A3.257,3.257,0,0,0,9.43,6.376L13.1,4.259A1.437,1.437,0,0,1,15.255,5.5V18.5a1.424,1.424,0,0,1-.718,1.245A1.445,1.445,0,0,1,13.816,19.937ZM4.439,7.812A1.377,1.377,0,0,0,3.064,9.187v5.626a1.378,1.378,0,0,0,1.375,1.376H7.805a4.254,4.254,0,0,1,2.125.569L13.6,18.876a.439.439,0,0,0,.657-.38V5.5a.438.438,0,0,0-.657-.379L9.93,7.242a4.251,4.251,0,0,1-2.125.57Z"/>
<path d="M18.407,6.262a7.79,7.79,0,0,1,.021,11.476c-.474.437.235,1.143.707.707a8.793,8.793,0,0,0-.021-12.89c-.474-.434-1.184.272-.707.707Z"/>
<path d="M16.91,9.031a4.021,4.021,0,0,1,.012,5.938c-.474.438.234,1.143.707.707a5.025,5.025,0,0,0-.012-7.352c-.474-.434-1.183.272-.707.707Z"/>
</g>`,
},
{
name: 'volume_mute',
svg: `<g>
<path d="M13.817,19.936a1.424,1.424,0,0,1-.719-.2L9.43,17.624a3.254,3.254,0,0,0-1.625-.436H4.44a2.377,2.377,0,0,1-2.375-2.375V9.187A2.378,2.378,0,0,1,4.44,6.811H7.805A3.257,3.257,0,0,0,9.43,6.377L13.1,4.259A1.438,1.438,0,0,1,15.255,5.5V18.5a1.423,1.423,0,0,1-.718,1.245A1.439,1.439,0,0,1,13.817,19.936ZM4.44,7.811A1.377,1.377,0,0,0,3.065,9.187v5.626A1.377,1.377,0,0,0,4.44,16.188H7.805a4.247,4.247,0,0,1,2.125.571L13.6,18.876a.437.437,0,0,0,.439,0,.433.433,0,0,0,.218-.379V5.5a.438.438,0,0,0-.657-.379L9.93,7.242a4.25,4.25,0,0,1-2.125.569Z"/>
<path d="M17.606,14.445a.5.5,0,0,1-.7-.711c.17-.169.34-.349.52-.52l1.21-1.209c-.57-.581-1.15-1.161-1.73-1.74a.5.5,0,0,1,.7-.71l1.74,1.739,1.74-1.739a.5.5,0,0,1,.7.71l-1.73,1.74,1.73,1.729a.5.5,0,0,1-.7.711L19.343,12.7Z"/>
</g>`,
},
{
name: 'volume',
svg: '<path d="M17.849,20.934a1.555,1.555,0,0,1-.781-.212l-4.16-2.4a3.769,3.769,0,0,0-1.877-.5H7.214a2.631,2.631,0,0,1-2.628-2.627V8.809A2.631,2.631,0,0,1,7.214,6.182h3.817a3.747,3.747,0,0,0,1.877-.5l4.16-2.4a1.564,1.564,0,0,1,2.346,1.354V19.369a1.57,1.57,0,0,1-1.565,1.565ZM7.214,7.182A1.63,1.63,0,0,0,5.586,8.809v6.382a1.629,1.629,0,0,0,1.628,1.627h3.817a4.756,4.756,0,0,1,2.377.637l4.16,2.4a.543.543,0,0,0,.563,0,.553.553,0,0,0,.283-.487V4.632a.565.565,0,0,0-.846-.489l-4.16,2.4a4.753,4.753,0,0,1-2.377.637Z"/>',
},
{
name: 'wallet',
svg: `<g>
<path d="M19.435,4.065H4.565a2.5,2.5,0,0,0-2.5,2.5v10.87a2.5,2.5,0,0,0,2.5,2.5h14.87a2.5,2.5,0,0,0,2.5-2.5V6.565A2.5,2.5,0,0,0,19.435,4.065Zm1.5,9.93h-6.42a2,2,0,0,1,0-4h6.42Zm-6.42-5a3,3,0,0,0,0,6h6.42v2.44a1.5,1.5,0,0,1-1.5,1.5H4.565a1.5,1.5,0,0,1-1.5-1.5V6.565a1.5,1.5,0,0,1,1.5-1.5h14.87a1.5,1.5,0,0,1,1.5,1.5v2.43Z"/>
<circle cx="14.519" cy="11.996" r="1"/>
</g>`,
},
{
name: 'warning',
svg: `<g>
<g>
<path d="M12.486,8.752c0-0.643-1-0.645-1,0l0,0v6c0,0.643,1,0.645,1,0V8.752z"/>
<circle cx="11.986" cy="16.737" r="0.5"/>
</g>
<path d="M18.628,20.934H5.371c-0.879,0-1.677-0.448-2.134-1.198s-0.491-1.665-0.088-2.446L9.778,4.421
C10.208,3.585,11.06,3.066,12,3.066c0.94,0,1.792,0.52,2.223,1.355l6.628,12.869c0.402,0.781,0.37,1.696-0.088,2.446
C20.306,20.486,19.507,20.934,18.628,20.934z M12,4.066c-0.573,0-1.071,0.304-1.333,0.813L4.038,17.748
c-0.241,0.469-0.222,1.018,0.053,1.468c0.274,0.45,0.753,0.719,1.28,0.719h13.257c0.527,0,1.006-0.269,1.281-0.719
c0.274-0.45,0.294-0.999,0.053-1.467L13.334,4.879C13.071,4.37,12.573,4.066,12,4.066z"/>
</g>`,
},
{
name: 'wave_pulse_1',
svg: '<path d="M8.974,18h0a1.446,1.446,0,0,1-1.259-.972L5.872,12.883c-.115-.26-.262-.378-.349-.378H2.562a.5.5,0,1,1,0-1H5.523a1.444,1.444,0,0,1,1.263.972l1.839,4.145c.116.261.258.378.349.378h0c.088,0,.229-.113.344-.368L13.7,6.956A1.423,1.423,0,0,1,14.958,6h0a1.449,1.449,0,0,1,1.26.975l1.839,4.151c.11.249.259.379.349.379h3.028a.5.5,0,0,1,0,1H18.41a1.444,1.444,0,0,1-1.263-.975L15.308,7.379c-.116-.261-.259-.378-.35-.379h0c-.088,0-.229.114-.344.368l-4.385,9.676A1.437,1.437,0,0,1,8.974,18Z"/>',
},
{
name: 'wheat',
svg: '<path d="M15.247,13.836a3.115,3.115,0,0,0,.79-2.78,1.053,1.053,0,0,0-.8-.81,3.1,3.1,0,0,0,.8-2.79,1.061,1.061,0,0,0-.82-.82,3.211,3.211,0,0,0-2.04.25A3.09,3.09,0,0,0,14,4.816a3.1,3.1,0,0,0-1.41-2.57,1.043,1.043,0,0,0-1.16-.01A3.124,3.124,0,0,0,10,4.816a3.052,3.052,0,0,0,.83,2.07,3.154,3.154,0,0,0-2.04-.25,1.048,1.048,0,0,0-.82.82,3.1,3.1,0,0,0,.79,2.79,1.041,1.041,0,0,0-.79.81,3.11,3.11,0,0,0,.78,2.78,1.071,1.071,0,0,0-.78.82,3.031,3.031,0,0,0,3,3.7,2.436,2.436,0,0,0,.53-.05v3.15a.5.5,0,0,0,1,0v-3.15a2.469,2.469,0,0,0,.54.05,3.054,3.054,0,0,0,2.17-.88,3.124,3.124,0,0,0,.83-2.82A1.083,1.083,0,0,0,15.247,13.836Zm-3.83,3.48a2.12,2.12,0,0,1-1.92-.55,2.041,2.041,0,0,1-.51-1.96,2.558,2.558,0,0,1,.47-.04,1.984,1.984,0,0,1,1.45.59A2.011,2.011,0,0,1,11.417,17.316Zm0-3.6a2.112,2.112,0,0,1-1.92-.55,2.022,2.022,0,0,1-.51-1.95,1.93,1.93,0,0,1,.47-.05,1.984,1.984,0,0,1,1.45.59A2.011,2.011,0,0,1,11.417,13.716Zm0-3.6a2.112,2.112,0,0,1-1.92-.55,2.022,2.022,0,0,1-.51-1.95,2.592,2.592,0,0,1,.47-.05,1.984,1.984,0,0,1,1.45.59A2.011,2.011,0,0,1,11.417,10.116Zm.56-3.55A2.1,2.1,0,0,1,11,4.816a2.005,2.005,0,0,1,1.04-1.74A2.1,2.1,0,0,1,13,4.816,2.054,2.054,0,0,1,11.977,6.566Zm2.53,10.2a2.072,2.072,0,0,1-1.96.51,2.384,2.384,0,0,1-.05-.45v-.02a2.065,2.065,0,0,1,.59-1.46,1.99,1.99,0,0,1,1.4-.57,2.279,2.279,0,0,1,.57.07A2.14,2.14,0,0,1,14.507,16.766Zm0-3.6a2.047,2.047,0,0,1-1.96.51,2.384,2.384,0,0,1-.05-.45v-.02a2.024,2.024,0,0,1,.59-1.45,1.957,1.957,0,0,1,1.4-.58,2.863,2.863,0,0,1,.57.07A2.14,2.14,0,0,1,14.507,13.166Zm0-3.6a2.024,2.024,0,0,1-1.96.51,2.384,2.384,0,0,1-.05-.45v-.02a2.024,2.024,0,0,1,.59-1.45,1.955,1.955,0,0,1,1.41-.57,2.259,2.259,0,0,1,.56.07A2.12,2.12,0,0,1,14.507,9.566Z"/>',
},
{
name: 'wifi_off',
svg: `<g>
<path d="M10.37,6.564a12.392,12.392,0,0,1,10.71,3.93c.436.476,1.141-.233.708-.708A13.324,13.324,0,0,0,10.37,5.564c-.631.076-.638,1.077,0,1Z"/>
<path d="M13.907,10.283A8.641,8.641,0,0,1,18.349,12.9c.434.477,1.139-.232.707-.707a9.586,9.586,0,0,0-4.883-2.871c-.626-.146-.893.818-.266.965Z"/>
<circle cx="12.003" cy="16.922" r="1.12"/>
<path d="M19.773,19.06a.5.5,0,0,1-.71.71l-5.84-5.84A4.478,4.478,0,0,0,8.7,15.24c-.43.48-1.14-.23-.71-.7a5.47,5.47,0,0,1,4.06-1.78l-2.37-2.37a8.693,8.693,0,0,0-4.03,2.53c-.43.48-1.13-.23-.7-.71A9.439,9.439,0,0,1,8.893,9.6L6.883,7.59a12.557,12.557,0,0,0-3.96,2.94.5.5,0,1,1-.7-.71,13.109,13.109,0,0,1,3.91-2.98l-1.9-1.9a.5.5,0,0,1,.71-.71Z"/>
</g>`,
},
{
name: 'wifi_on',
svg: `<g>
<path d="M2.922,10.777a12.194,12.194,0,0,1,18.155-.034c.436.476,1.141-.233.707-.707a13.189,13.189,0,0,0-19.569.034c-.432.475.273,1.184.707.707Z"/>
<path d="M5.654,13.169a8.615,8.615,0,0,1,12.691-.024c.437.475,1.143-.234.707-.707a9.621,9.621,0,0,0-14.106.024c-.433.474.272,1.184.708.707Z"/>
<path d="M8.7,15.492a4.47,4.47,0,0,1,6.6-.013c.438.474,1.143-.235.707-.707a5.475,5.475,0,0,0-8.015.013c-.434.474.271,1.183.707.707Z"/>
<circle cx="11.999" cy="17.172" r="1.12"/>
</g>`,
},
{
name: 'youtube',
svg: `<g>
<path d="M19.437,19.937H4.562a2.5,2.5,0,0,1-2.5-2.5V6.563a2.5,2.5,0,0,1,2.5-2.5H19.437a2.5,2.5,0,0,1,2.5,2.5V17.437A2.5,2.5,0,0,1,19.437,19.937ZM4.562,5.063a1.5,1.5,0,0,0-1.5,1.5V17.437a1.5,1.5,0,0,0,1.5,1.5H19.437a1.5,1.5,0,0,0,1.5-1.5V6.563a1.5,1.5,0,0,0-1.5-1.5Z"/>
<path d="M14.568,11.149,10.6,8.432a1.032,1.032,0,0,0-1.614.851v5.434a1.032,1.032,0,0,0,1.614.851l3.972-2.717A1.031,1.031,0,0,0,14.568,11.149Z"/>
</g>`,
},
{
name: 'zoom_in',
svg: `<g>
<path d="M16.279,17.039c-1.396,1.209 -3.216,1.941 -5.206,1.941c-4.393,0 -7.96,-3.567 -7.96,-7.96c-0,-4.393 3.567,-7.96 7.96,-7.96c4.393,0 7.96,3.567 7.96,7.96c-0,2.044 -0.772,3.909 -2.04,5.319l0.165,0.165c1.194,1.194 2.388,2.388 3.583,3.582c0.455,0.456 -0.252,1.163 -0.707,0.708l-3.755,-3.755Zm1.754,-6.019c-0,-3.841 -3.119,-6.96 -6.96,-6.96c-3.842,0 -6.96,3.119 -6.96,6.96c-0,3.841 3.118,6.96 6.96,6.96c3.841,0 6.96,-3.119 6.96,-6.96Zm-7.46,0.5l-1.5,0c-0.645,0 -0.643,-1 -0,-1l1.5,0l-0,-1.5c-0,-0.645 1,-0.643 1,0l-0,1.5l1.5,0c0.645,0 0.643,1 -0,1l-1.5,0l-0,1.5c-0,0.645 -1,0.643 -1,0l-0,-1.5Z"/>
</g>`,
},
{
name: 'zoom_out',
svg: `<g>
<path d="M16.279,17.039c-1.396,1.209 -3.216,1.941 -5.206,1.941c-4.393,0 -7.96,-3.567 -7.96,-7.96c-0,-4.393 3.567,-7.96 7.96,-7.96c4.393,0 7.96,3.567 7.96,7.96c-0,2.044 -0.772,3.909 -2.04,5.319l0.165,0.165c1.194,1.194 2.388,2.388 3.583,3.582c0.455,0.456 -0.252,1.163 -0.707,0.708l-3.755,-3.755Zm1.754,-6.019c-0,-3.841 -3.119,-6.96 -6.96,-6.96c-3.842,0 -6.96,3.119 -6.96,6.96c-0,3.841 3.118,6.96 6.96,6.96c3.841,0 6.96,-3.119 6.96,-6.96Zm-4.96,-0.5c0.645,0 0.643,1 -0,1l-4,0c-0.645,0 -0.643,-1 -0,-1l4,0Z"/>
</g>`,
},
]
const MyDemoIcons: React.FC<{
name: string,
size: string,
color: string,
}> = ({ name, size, color }) => {
const displayIcon = icons.find((e) => e.name === name)
const _size = size || '32px'
const _color = color || 'currentColor'
return (
<svg
className={'circumicon__' + name}
width={_size}
height={_color}
viewBox="0 0 24 24"
fill={color}
dangerouslySetInnerHTML={{ __html: displayIcon.svg }}
></svg>
)
}
export default MyDemoIcons