Merge branch 'develop' into feat/update-alg-material

This commit is contained in:
NICE CODE BY DEV 2024-06-28 14:15:14 +08:00
commit 42d8f26af5
141 changed files with 2186 additions and 11 deletions

View File

@ -19,6 +19,7 @@ export default defineConfig({
'@zhst/slave': path.join(__dirname, 'packages/slave/src'),
'@zhst/material': path.join(__dirname, 'packages/material/src'),
'@zhst/icon': path.join(__dirname, 'packages/icon/src'),
'@zhst/icon-v2': path.join(__dirname, 'packages/icon-v2/src'),
'@zhst/map': path.join(__dirname, 'packages/map/src'),
},
resolve: {
@ -34,11 +35,12 @@ export default defineConfig({
{ type: 'slave', dir: 'packages/slave/src' },
{ type: 'material', dir: 'packages/material/src' },
{ type: 'icon', dir: 'packages/icon/src' },
{ type: 'icon-v2', dir: 'packages/icon-v2/src' },
{ type: 'map', dir: 'packages/map/src' },
],
},
monorepoRedirect: {
srcDir: ['packages', 'src'],
peerDeps: true,
}
},
});

View File

@ -1,5 +1,13 @@
# @zhst/biz
## 0.32.1
### Patch Changes
- Updated dependencies
- @zhst/icon@0.8.0
- @zhst/meta@0.27.1
## 0.32.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@zhst/biz",
"version": "0.32.0",
"version": "0.32.1",
"description": "业务库",
"keywords": [
"business",

View File

@ -0,0 +1,20 @@
import { defineConfig } from 'father-plugin-less';
export default defineConfig({
// more father config: https://github.com/umijs/father/blob/master/docs/config.md
esm: {
output: 'es',
ignores: ['**/demo/*', 'src/**/demo/*'],
transformer: 'babel',
},
cjs: {
output: 'lib',
ignores: ['**/demo/*', 'src/**/demo/*'],
transformer: 'babel',
},
lessInBabel: {
modifyVars: {
},
},
plugins: ['father-plugin-less'],
});

View File

@ -0,0 +1,13 @@
# @zhst/icon-v2
## 0.2.0
### Minor Changes
- feat(icon): 新增 icon-v2 图标库
## 0.7.0
### Minor Changes
- 初始化 icon 包

View File

@ -0,0 +1,16 @@
# @zhst/icon
## 介绍
静态变量库
## 安装
> pnpm install @zhst/icon-v2
## 使用
```js
import React from 'react';
import { Iconfont } from '@zhst/icon-v2'
```

View File

@ -0,0 +1,39 @@
{
"name": "@zhst/icon-v2",
"version": "0.2.0",
"description": "图标库",
"keywords": [
"icon",
"zhst",
"图标库"
],
"license": "ISC",
"author": "dev",
"sideEffects": [
"dist/*",
"es/**/style/*",
"lib/**/style/*",
"*.less"
],
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./es/index.js",
"default": "./es/index.js"
}
},
"files": [
"es",
"lib"
],
"scripts": {
"build": "father build"
},
"publishConfig": {
"access": "public",
"registry": "http://10.0.0.77:4874"
}
}

View File

@ -0,0 +1,14 @@
import React from 'react';
import { Add } from '@zhst/icon-v2';
import { message } from '@zhst/meta';
const demo = () => {
return (
<div>
<Add style={{color: 'red',fontSize: 30}} onClick={()=>{message.success('触发onClick事件成功')}}></Add>
</div>
);
};
export default demo;

View File

@ -0,0 +1,79 @@
import React, { useState } from 'react';
import * as Icons from '@zhst/icon-v2'
import './index.less';
import { Button, Input, message } from '@zhst/meta';
import { Retrievalsel } from '@zhst/icon-v2';
const demo = () => {
const iconNames = Object.keys(Icons); // 获取图标组件的名字数组
const [iconArr, setIconArr] = useState(iconNames);
const search = (searchVal: string) => {
if (searchVal === '') {
setIconArr(iconNames);
} else {
setIconArr(iconArr.filter((item) => item.toLowerCase().includes(searchVal.toLowerCase())));
}
};
const copyTextToClipboard = async (textToCopy: string, successMessage?: string): Promise<void> => {
if (navigator.clipboard && navigator.clipboard.writeText) {
try {
// 使用现代API尝试复制
await navigator.clipboard.writeText(textToCopy);
message.success(successMessage)
} catch (error) {
console.error('Failed to copy: ', error);
}} else {
fallbackCopyTextToClipboard(textToCopy,successMessage);
}
}
const fallbackCopyTextToClipboard = (textToCopy: string, successMessage?: string) => {
// 创建隐藏的textarea来模拟复制操作
const input = document.createElement('input');
input.setAttribute('value', textToCopy);
document.body.appendChild(input);
input.select();
try {
if (document.execCommand('copy')) {
message.success(successMessage)
} else {
console.error('传统方式复制失败');
}
} catch (error) {
console.error('传统方式复制出错:', error);
} finally {
document.body.removeChild(input);
}
}
return (
<div>
<div>
<Input placeholder='请输入' prefix={<Retrievalsel />} onChange={(e) => search(e.target.value)}></Input>
</div>
<ul className={'demo-ul'}>
{iconArr.map((IconName: string,index:number) => {
const IconComponent = Icons[IconName];
return <li className={'demo-li'} >
<div className={'demo-li-content'}>
<IconComponent key={index} style={{fontSize: 32}}/>
<div className="demo-li-content-name">{IconName}</div>
</div>
<div className="demo-li-overlay hidden">
<div className="demo-li-overlay-content">
<Button onClick={() => {
copyTextToClipboard(`<${IconName} />`,'复制节点成功')
}}></Button>
<Button onClick={() => {
copyTextToClipboard(IconName,'复制名称成功')
}}></Button>
</div>
</div>
</li>
})}
</ul>
</div>
);
}
export default demo

View File

@ -0,0 +1,70 @@
.demo {
&-ul {
list-style-type: none;
display: flex;
flex-wrap: wrap;
}
&-li {
height: 150px;
width: 150px;
box-sizing: border-box;
padding: 10px;
margin: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
&-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
&-name {
color: #666;
font-size: 12px;
}
}
&-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(315deg, #6772FF 0, #00F9E5 100%); /* 渐变背景 */
border-radius: 6px;
display: flex;
justify-content: center;
align-items: center;
transition: opacity 0.3s ease; /* 动画过渡 */
opacity: 0; /* 默认隐藏 */
pointer-events: none; /* 默认不可操作 */
}
&-overlay-content {
text-align: center;
color: white;
padding: 20px;
button {
margin-bottom: 10px;
background-color: transparent;
border: 1px solid #fff;
color: #fff;
}
}
}
.hidden {
visibility: hidden; /* 额外的隐藏样式,可根据需要调整 */
}
&-li:hover .demo-li-overlay {
opacity: 1;
pointer-events: auto; /* 可操作 */
}
}

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Add = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 1c1.933 0 3.683.784 4.95 2.05A6.978 6.978 0 0 1 15 8a6.978 6.978 0 0 1-2.05 4.95A6.978 6.978 0 0 1 8 15a6.978 6.978 0 0 1-4.95-2.05A6.978 6.978 0 0 1 1 8c0-1.933.784-3.683 2.05-4.95A6.978 6.978 0 0 1 8 1Zm0 1a5.977 5.977 0 0 0-4.243 1.757A5.977 5.977 0 0 0 2 8c0 1.614.639 3.124 1.757 4.243A5.977 5.977 0 0 0 8 14a5.977 5.977 0 0 0 4.243-1.757A5.977 5.977 0 0 0 14 8a5.977 5.977 0 0 0-1.757-4.243A5.977 5.977 0 0 0 8 2Zm0 2a.5.5 0 0 1 .5.5v3h3a.5.5 0 1 1 0 1h-3v3a.5.5 0 1 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4Z"
/>
</svg>
);
export default Add;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Addvideo = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M12.5 10a.5.5 0 0 1 .5.5V12h1.5a.5.5 0 1 1 0 1H13v1.5a.5.5 0 1 1-1 0V13h-1.5a.5.5 0 1 1 0-1H12v-1.5a.5.5 0 0 1 .5-.5Zm.5-8a2 2 0 0 1 2 2v4.5a.5.5 0 1 1-1 0V4a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h5.5a.5.5 0 1 1 0 1H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10ZM7 5.402a1 1 0 0 1 .53.152l2.557 1.598a1 1 0 0 1 0 1.696L7.53 10.446A1 1 0 0 1 6 9.598V6.402a1 1 0 0 1 1-1Zm0 1v3.196l2.555-1.599L7 6.402Z"
/>
</svg>
);
export default Addvideo;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Ai = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M1.81 8.5a1.5 1.5 0 0 1 1.025 2.595l.016-.015a6.002 6.002 0 0 0 10.86-1.235.5.5 0 1 1 .951.308 7.002 7.002 0 0 1-12.73 1.341l-.122.006-.144-.007A1.5 1.5 0 0 1 1.81 8.5ZM10.5 5a.5.5 0 0 1 .5.5v5a.5.5 0 1 1-1 0v-5a.5.5 0 0 1 .5-.5Zm-3.536.314 2 5a.5.5 0 1 1-.928.372L7.56 9.5H5.438l-.474 1.186a.5.5 0 0 1-.563.304l-.087-.026a.5.5 0 0 1-.278-.65l2-5a.5.5 0 0 1 .928 0ZM1.81 9.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1ZM6.5 6.846 5.838 8.5h1.323L6.5 6.846ZM8 1a7.003 7.003 0 0 1 6.067 3.505l.123-.005.144.007a1.5 1.5 0 1 1-1.17.398l-.015.015A6.002 6.002 0 0 0 2.29 6.154a.5.5 0 0 1-.951-.308A7.002 7.002 0 0 1 8 1Zm6.19 4.5a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1Z"
/>
</svg>
);
export default Ai;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Algorithmfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 1a1.5 1.5 0 0 1 1.484 1.278l3.712 2.145a1 1 0 0 1 .5.866l.001 4.287a1.5 1.5 0 0 1-1.483 2.57L8.5 14.289a1 1 0 0 1-1 0l-3.713-2.143a1.5 1.5 0 0 1-1.484-2.57V5.289a1 1 0 0 1 .5-.866l3.713-2.145A1.5 1.5 0 0 1 8 1Zm2.165 8.827L8.25 10.933a.5.5 0 0 1-.5 0L5.835 9.827l-1.123.65c.061.331.008.67-.144.965L8 13.422l3.432-1.98a1.504 1.504 0 0 1-.144-.966l-1.123-.649ZM6.736 3.308l-3.432 1.98v3.963c.33.016.651.14.907.358l1.124-.649V6.75a.5.5 0 0 1 .178-.382l.072-.051L7.5 5.21V3.914a1.504 1.504 0 0 1-.764-.606Zm2.528 0a1.504 1.504 0 0 1-.763.606L8.5 5.21l1.915 1.107a.5.5 0 0 1 .242.345l.008.088v2.21l1.124.649c.256-.218.576-.342.907-.358V5.29Z"
/>
</svg>
);
export default Algorithmfilled;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Analysis = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 2a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10Zm0 1H3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1Zm-.146 2.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.631.062l-2.66-1.773-2.71 2.71a.5.5 0 0 1-.637.058l-.07-.057a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .631-.062l2.659 1.772 2.71-2.71a.5.5 0 0 1 .708 0ZM4.5 14h7a.5.5 0 1 1 0 1h-7a.5.5 0 1 1 0-1Z"
/>
</svg>
);
export default Analysis;

View File

@ -0,0 +1,19 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Analysissel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero">
<path
fill="currentColor"
d="M13 2H3a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm0 1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h10ZM4.5 14h7a.5.5 0 1 1 0 1h-7a.5.5 0 1 1 0-1Z"
/>
<path
fill="#09F"
d="M12.146 5.146a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.631.062l-2.66-1.773-2.71 2.71a.5.5 0 0 1-.637.058l-.07-.057a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .631-.062l2.659 1.772 2.71-2.71Z"
/>
</g>
</svg>
);
export default Analysissel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Arrowdown = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M3.646 5.646a.5.5 0 0 1 .708 0L8 9.293l3.646-3.647a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708Z"
/>
</svg>
);
export default Arrowdown;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Arrowleft = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10.354 3.646a.5.5 0 0 1 0 .708L6.707 8l3.647 3.646a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 0 1 .708 0Z"
/>
</svg>
);
export default Arrowleft;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Arrowright = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M5.646 3.646a.5.5 0 0 0 0 .708L9.293 8l-3.647 3.646a.5.5 0 0 0-.057.638l.057.07a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708 0Z"
/>
</svg>
);
export default Arrowright;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Arrowup = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M3.646 10.354a.5.5 0 0 0 .708 0L8 6.707l3.646 3.647a.5.5 0 0 0 .638.057l.07-.057a.5.5 0 0 0 0-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708Z"
/>
</svg>
);
export default Arrowup;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Attachment = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M12.95 2.172a4 4 0 0 1 0 5.656l-6.718 6.718a.5.5 0 1 1-.707-.707l6.718-6.718A3 3 0 1 0 8 2.88l-4.95 4.95a2 2 0 1 0 2.829 2.828l4.242-4.243A1 1 0 1 0 8.707 5L4.818 8.89a.5.5 0 0 1-.707-.708L8 4.292a2 2 0 1 1 2.828 2.83l-4.242 4.242a3 3 0 1 1-4.243-4.243l4.95-4.95a4 4 0 0 1 5.657 0Z"
/>
</svg>
);
export default Attachment;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Back = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M5.854 3.646a.5.5 0 0 1 0 .708L2.706 7.5H14.5a.5.5 0 1 1 0 1H2.706l3.148 3.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708l4-4a.5.5 0 0 1 .708 0Z"
/>
</svg>
);
export default Back;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Bike = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M11.5 2a.5.5 0 0 1 .496.438l.697 5.57a2.5 2.5 0 1 1-2.396 1.309L6.628 6.258 5.189 8.657a2.5 2.5 0 1 1-.858-.515L5.617 6H4.5a.5.5 0 0 1 0-1h3a.5.5 0 0 1 .28.915l3.158 2.633c.225-.18.483-.323.762-.417L11.058 3H8.5a.5.5 0 0 1-.492-.41L8 2.5a.5.5 0 0 1 .5-.5h3Zm-8 7a1.5 1.5 0 1 0 1.156.544l-.727 1.213a.5.5 0 0 1-.605.211l-.081-.04a.5.5 0 0 1-.172-.685l.727-1.213A1.507 1.507 0 0 0 3.5 9Zm9.322.035.174 1.403a.5.5 0 1 1-.992.124l-.175-1.404a1.5 1.5 0 1 0 .993-.123Z"
/>
</svg>
);
export default Bike;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Bikefilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M11.5 2a.5.5 0 0 1 .496.438l.697 5.57a2.5 2.5 0 1 1-2.396 1.309L6.628 6.258 5.189 8.657a2.5 2.5 0 1 1-.858-.515L5.617 6H4.5a.5.5 0 0 1 0-1h3a.5.5 0 0 1 .28.915l3.158 2.633c.225-.18.483-.323.762-.417L11.058 3H8.5a.5.5 0 0 1-.492-.41L8 2.5a.5.5 0 0 1 .5-.5h3Z"
/>
</svg>
);
export default Bikefilled;

View File

@ -0,0 +1,17 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Bikesel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="currentColor"
fillRule="nonzero"
d="M11.5 2a.5.5 0 0 1 .496.438l.697 5.57a2.5 2.5 0 1 1-2.396 1.309L6.628 6.258 5.189 8.657a2.5 2.5 0 1 1-.858-.515l1.74-2.9a.5.5 0 0 1 .75-.126l4.117 3.432c.225-.18.483-.323.762-.417L11.058 3H8.5a.5.5 0 0 1-.492-.41L8 2.5a.5.5 0 0 1 .5-.5h3Zm-8 7a1.5 1.5 0 1 0 1.156.544l-.727 1.213a.5.5 0 0 1-.605.211l-.081-.04a.5.5 0 0 1-.172-.685l.727-1.213A1.507 1.507 0 0 0 3.5 9Zm9.322.035.174 1.403a.5.5 0 1 1-.992.124l-.175-1.404a1.5 1.5 0 1 0 .993-.123Z"
/>
<rect width={4} height={1} x={4} y={5} fill="#09F" rx={0.5} />
</g>
</svg>
);
export default Bikesel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Briefcase = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10 1a2 2 0 0 1 2 2h1a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h1a2 2 0 0 1 2-2ZM2 7.527V12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7.524l-.361.116c-1.212.37-2.425.62-3.639.752V9a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-.608a19.828 19.828 0 0 1-4-.865ZM9 7H7v2h2V7Zm1-5H6a1 1 0 0 0-1 1h6a1 1 0 0 0-.883-.993L10 2Zm0 5.386a18.92 18.92 0 0 0 3.842-.86A.5.5 0 0 1 14 6.5V5a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1.5a.5.5 0 0 1 .158.026A18.92 18.92 0 0 0 6 7.386V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v.386Z"
/>
</svg>
);
export default Briefcase;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Browser = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 1c1.907 0 3.637.763 4.9 2l-.222-.207a7.043 7.043 0 0 1 .71.738l.014.016A6.971 6.971 0 0 1 15 8a6.972 6.972 0 0 1-1.611 4.468l-.051.061a7.04 7.04 0 0 1-.118.135l.17-.196a7.213 7.213 0 0 1-.52.56A6.977 6.977 0 0 1 8 15a6.977 6.977 0 0 1-4.901-2.002l-.026-.026-.023-.022a7.043 7.043 0 0 1-.439-.482l-.152-.19A6.97 6.97 0 0 1 1 8c0-1.81.687-3.46 1.814-4.702l-.202.235A6.752 6.752 0 0 1 3.101 3 6.977 6.977 0 0 1 8 1Zm0 11c-.485 0-.958.034-1.416.098C6.967 13.271 7.491 14 8 14c.51 0 1.033-.729 1.416-1.9A9.976 9.976 0 0 0 8 12Zm-2.407.292-.275.072c-.355.1-.697.219-1.023.356.57.447 1.22.794 1.928 1.013a6.867 6.867 0 0 1-.63-1.441Zm4.815-.001-.055.166a6.587 6.587 0 0 1-.577 1.275 5.971 5.971 0 0 0 1.928-1.011 8.834 8.834 0 0 0-1.296-.43ZM13.979 8.5h-2.986a15.308 15.308 0 0 1-.329 2.827c.647.16 1.26.38 1.828.65A5.974 5.974 0 0 0 13.98 8.5Zm-8.972 0H2.02a5.976 5.976 0 0 0 1.487 3.478c.568-.27 1.18-.49 1.827-.653-.186-.851-.3-1.81-.328-2.825Zm4.985 0H6.008c.03.96.143 1.853.314 2.629a11.121 11.121 0 0 1 3.356-.002c.17-.774.285-1.667.314-2.627ZM3.508 4.023l-.036.04A5.975 5.975 0 0 0 2.02 7.5h2.986c.028-1.015.142-1.973.328-2.825a9.77 9.77 0 0 1-1.827-.651Zm6.17.848-.183.029a11.149 11.149 0 0 1-3.173-.026c-.17.774-.285 1.666-.314 2.625h3.984c-.03-.96-.143-1.852-.314-2.628Zm2.813-.85-.278.128a9.942 9.942 0 0 1-1.548.526c.186.85.3 1.808.328 2.824h2.986a5.976 5.976 0 0 0-1.488-3.478ZM8 2l-.084.006c-.482.075-.97.787-1.332 1.894a10.171 10.171 0 0 0 2.832.001C9.033 2.73 8.509 2 8 2Zm-1.776.268-.161.052c-.645.22-1.24.546-1.766.959a8.76 8.76 0 0 0 1.295.43 6.832 6.832 0 0 1 .632-1.441Zm3.553 0 .015.026c.237.398.443.875.615 1.414a8.846 8.846 0 0 0 1.298-.428 5.977 5.977 0 0 0-1.928-1.013Z"
/>
</svg>
);
export default Browser;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Calendar = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M11.5 1a.5.5 0 0 1 .5.5V2h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h1v-.5a.5.5 0 0 1 1 0V2h6v-.5a.5.5 0 0 1 .5-.5ZM4 3H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-1v.5a.5.5 0 1 1-1 0V3H5v.5a.5.5 0 0 1-1 0V3Zm1.4 6.6c.11 0 .2.09.2.2V11a.2.2 0 0 1-.2.2H4.2A.2.2 0 0 1 4 11V9.8c0-.11.09-.2.2-.2h1.2Zm3.2 0c.11 0 .2.09.2.2V11a.2.2 0 0 1-.2.2H7.4a.2.2 0 0 1-.2-.2V9.8c0-.11.09-.2.2-.2h1.2Zm3.2 0c.11 0 .2.09.2.2V11a.2.2 0 0 1-.2.2h-1.2a.2.2 0 0 1-.2-.2V9.8c0-.11.09-.2.2-.2h1.2Zm-6.4-4c.11 0 .2.09.2.2V7a.2.2 0 0 1-.2.2H4.2A.2.2 0 0 1 4 7V5.8c0-.11.09-.2.2-.2h1.2Zm3.2 0c.11 0 .2.09.2.2V7a.2.2 0 0 1-.2.2H7.4a.2.2 0 0 1-.2-.2V5.8c0-.11.09-.2.2-.2h1.2Zm3.2 0c.11 0 .2.09.2.2V7a.2.2 0 0 1-.2.2h-1.2a.2.2 0 0 1-.2-.2V5.8c0-.11.09-.2.2-.2h1.2Z"
/>
</svg>
);
export default Calendar;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Camera = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10.382 1a1.5 1.5 0 0 1 1.342.83L12.309 3H13a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h.69l.586-1.17a1.5 1.5 0 0 1 1.201-.823L5.618 1ZM13 4H3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1ZM8 6a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Zm0 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm2.382-5H5.618a.5.5 0 0 0-.447.276L4.808 3h6.383l-.362-.724a.5.5 0 0 0-.354-.267L10.382 2Z"
/>
</svg>
);
export default Camera;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Camera2 = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 1a6 6 0 0 1 3.2 11.076l1.69 2.112a.5.5 0 0 1-.39.812h-9a.5.5 0 0 1-.39-.812l1.69-2.112A6 6 0 0 1 8 1Zm0 12a5.982 5.982 0 0 1-2.296-.455L4.54 14h6.919l-1.163-1.455A5.982 5.982 0 0 1 8 13ZM8 2a5 5 0 1 0 0 10A5 5 0 0 0 8 2Zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 1a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z"
/>
</svg>
);
export default Camera2;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Camerafilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10.382 1a1.5 1.5 0 0 1 1.342.83L12.309 3H13a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h.69l.586-1.17a1.5 1.5 0 0 1 1.201-.823L5.618 1h4.764ZM8 6a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm0 1a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm3.5-3h-1a.5.5 0 1 0 0 1h1a.5.5 0 1 0 0-1Z"
/>
</svg>
);
export default Camerafilled;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Car = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10.938 2a2.5 2.5 0 0 1 2.426 1.894l.588 2.351.316.316a2.5 2.5 0 0 1 .724 1.57l.008.197V10.5c0 .62-.378 1.158-.94 1.387l-.06.02v.343a1.75 1.75 0 0 1-1.606 1.744L12.25 14a1.75 1.75 0 0 1-1.75-1.75V12h-5v.25a1.75 1.75 0 0 1-1.606 1.744L3.75 14A1.75 1.75 0 0 1 2 12.25v-.337l-.052-.018a1.501 1.501 0 0 1-.941-1.25L1 10.5V8.328a2.5 2.5 0 0 1 .732-1.767l.315-.316.59-2.351A2.5 2.5 0 0 1 4.89 2.006L5.06 2h5.877Zm2.355 5H2.706l-.267.268A1.5 1.5 0 0 0 2 8.328V10.5a.5.5 0 0 0 .5.5l.09.008A.5.5 0 0 1 3 11.5v.75a.75.75 0 1 0 1.5 0v-.75A.5.5 0 0 1 5 11h6a.5.5 0 0 1 .5.5v.75a.75.75 0 1 0 1.5 0v-.75a.5.5 0 0 1 .471-.5l.088-.003A.5.5 0 0 0 14 10.5V8.328a1.5 1.5 0 0 0-.44-1.06L13.294 7ZM4.8 8a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6Zm6.4 0a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6Zm-.262-5H5.062a1.5 1.5 0 0 0-1.456 1.136L3.14 6h9.719l-.465-1.864A1.5 1.5 0 0 0 10.938 3Z"
/>
</svg>
);
export default Car;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Carfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10.938 2a2.5 2.5 0 0 1 2.426 1.894l.588 2.351.316.316a2.5 2.5 0 0 1 .724 1.57l.008.197V10.5c0 .62-.378 1.158-.94 1.387l-.06.02v.343a1.75 1.75 0 0 1-1.606 1.744L12.25 14a1.75 1.75 0 0 1-1.75-1.75V12h-5v.25a1.75 1.75 0 0 1-1.606 1.744L3.75 14A1.75 1.75 0 0 1 2 12.25v-.337l-.052-.018a1.501 1.501 0 0 1-.941-1.25L1 10.5V8.328a2.5 2.5 0 0 1 .732-1.767l.315-.316.59-2.351A2.5 2.5 0 0 1 4.89 2.006L5.06 2ZM4.5 12H3v.25c0 .38.282.693.648.743L3.75 13a.75.75 0 0 0 .75-.75V12Zm8.5 0h-1.5v.25c0 .38.282.693.648.743l.102.007a.75.75 0 0 0 .75-.75V12ZM4.8 8a.8.8 0 1 0 0 1.6.8.8 0 0 0 0-1.6Zm6.4 0a.8.8 0 1 0 0 1.6.8.8 0 0 0 0-1.6Zm-.262-5H5.062a1.5 1.5 0 0 0-1.456 1.136L3.14 6h9.719l-.465-1.864a1.5 1.5 0 0 0-1.32-1.13L10.939 3Z"
/>
</svg>
);
export default Carfilled;

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Carsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="#09F"
d="M13.5 6v1h-11V6h11ZM4.8 9.6a.8.8 0 1 0 0-1.6.8.8 0 0 0 0 1.6Zm6.4 0a.8.8 0 1 0 0-1.6.8.8 0 0 0 0 1.6Z"
/>
<path
fill="currentColor"
fillRule="nonzero"
d="M10.938 2H5.062l-.171.006a2.5 2.5 0 0 0-2.255 1.888l-.589 2.351-.315.316A2.5 2.5 0 0 0 1 8.328V10.5l.007.144c.054.57.428 1.048.941 1.251l.052.018v.337c0 .966.784 1.75 1.75 1.75l.144-.006A1.75 1.75 0 0 0 5.5 12.25V12h5v.25c0 .966.784 1.75 1.75 1.75l.144-.006A1.75 1.75 0 0 0 14 12.25v-.343l.06-.02c.562-.229.94-.767.94-1.387V8.328l-.008-.198a2.5 2.5 0 0 0-.724-1.57l-.316-.315-.588-2.351A2.5 2.5 0 0 0 10.938 2Zm0 1a1.5 1.5 0 0 1 1.456 1.136l.62 2.485a.5.5 0 0 0 .132.233l.415.414A1.5 1.5 0 0 1 14 8.328V10.5a.5.5 0 0 1-.441.497L13.47 11A.5.5 0 0 0 13 11.5v.75a.75.75 0 1 1-1.5 0v-.75a.5.5 0 0 0-.5-.5H5a.5.5 0 0 0-.5.5v.75a.75.75 0 1 1-1.5 0v-.75a.5.5 0 0 0-.41-.492L2.5 11a.5.5 0 0 1-.5-.5V8.328c0-.397.158-.779.44-1.06l.414-.414a.5.5 0 0 0 .131-.233l.621-2.485A1.5 1.5 0 0 1 5.062 3h5.876Z"
/>
</g>
</svg>
);
export default Carsel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Close = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M2.854 2.146 8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854a.5.5 0 1 1 .708-.708Z"
/>
</svg>
);
export default Close;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Configure = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M11 7.711a1 1 0 0 1 1 0l2.531 1.462a1 1 0 0 1 .5.866v2.922a1 1 0 0 1-.5.866L12 15.29a1 1 0 0 1-1 0l-2.531-1.462a1 1 0 0 1-.5-.866V10.04a1 1 0 0 1 .5-.866Zm.5.866L8.969 10.04v2.922l2.531 1.462 2.531-1.462V10.04L11.5 8.577ZM15 7.5a.5.5 0 1 1-1 0V6H2v6a1 1 0 0 0 1 1h3.5a.5.5 0 1 1 0 1H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3.5Zm-3.5 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM13 3H3a1 1 0 0 0-1 1v1h12V4a1 1 0 0 0-1-1Z"
/>
</svg>
);
export default Configure;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Day = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M3.757 12.243a.5.5 0 0 1 0 .707l-.707.707a.5.5 0 1 1-.707-.707l.707-.707a.5.5 0 0 1 .707 0Zm9.193 0 .707.707a.5.5 0 1 1-.707.707l-.707-.707a.5.5 0 1 1 .707-.707ZM8 3c1.38 0 2.63.56 3.536 1.464A4.984 4.984 0 0 1 13 8c0 1.38-.56 2.63-1.464 3.536A4.984 4.984 0 0 1 8 13c-1.38 0-2.63-.56-3.536-1.464A4.984 4.984 0 0 1 3 8c0-1.38.56-2.63 1.464-3.536A4.984 4.984 0 0 1 8 3Zm0 1a3.984 3.984 0 0 0-2.828 1.172A3.984 3.984 0 0 0 4 8c0 1.076.426 2.082 1.172 2.828A3.984 3.984 0 0 0 8 12a3.984 3.984 0 0 0 2.828-1.172A3.984 3.984 0 0 0 12 8a3.984 3.984 0 0 0-1.172-2.828A3.984 3.984 0 0 0 8 4Zm5.657-1.657a.5.5 0 0 1 0 .707l-.707.707a.5.5 0 0 1-.707-.707l.707-.707a.5.5 0 0 1 .707 0Zm-10.607 0 .707.707a.5.5 0 1 1-.707.707l-.707-.707a.5.5 0 1 1 .707-.707ZM8 0a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 8 0Zm0 14a.5.5 0 0 1 .5.5v1a.5.5 0 1 1-1 0v-1A.5.5 0 0 1 8 14ZM0 8a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1A.5.5 0 0 1 0 8Zm14 0a.5.5 0 0 1 .5-.5h1a.5.5 0 1 1 0 1h-1A.5.5 0 0 1 14 8Z"
/>
</svg>
);
export default Day;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Delete = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10 1a1 1 0 0 1 1 1v1h3.5a.5.5 0 1 1 0 1h-.544l-.834 9.18a2 2 0 0 1-1.992 1.819H4.87a2 2 0 0 1-1.992-1.82L2.043 4H1.5a.5.5 0 0 1 0-1H5V2a1 1 0 0 1 1-1h4Zm2.952 3H3.047l.827 9.09a1 1 0 0 0 .996.909h6.26a1 1 0 0 0 .996-.91L12.952 4ZM6.5 6a.5.5 0 0 1 .5.5v5a.5.5 0 1 1-1 0v-5a.5.5 0 0 1 .5-.5Zm3 0a.5.5 0 0 1 .5.5v5a.5.5 0 1 1-1 0v-5a.5.5 0 0 1 .5-.5Zm.5-4H6v1h4V2Z"
/>
</svg>
);
export default Delete;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Diagnose = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M7.5 1a6.5 6.5 0 0 1 4.936 10.729l2.418 2.417a.5.5 0 0 1-.708.708l-2.417-2.418A6.5 6.5 0 1 1 7.5 1Zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm-.536 2.814L8.59 8.88l.981-1.636a.5.5 0 0 1 .343-.235L10 7h1.5a.5.5 0 1 1 0 1h-1.218l-1.353 2.258a.5.5 0 0 1-.852.011l-.041-.082L6.409 6.12l-.982 1.637a.5.5 0 0 1-.342.235L4.998 8H3.5a.5.5 0 1 1 0-1h1.214l1.357-2.257a.5.5 0 0 1 .893.071Z"
/>
</svg>
);
export default Diagnose;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Digicam = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M11 3a2 2 0 0 1 1.99 1.803l.79-.79A1.3 1.3 0 0 1 16 4.93v6.138a1.3 1.3 0 0 1-2.22.919l-.79-.791A2 2 0 0 1 11 13H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8Zm0 1H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1Zm3.912.72a.3.3 0 0 0-.424 0L13 6.205v3.587l1.488 1.488a.3.3 0 0 0 .153.082l.059.006a.3.3 0 0 0 .3-.3V4.93a.3.3 0 0 0-.088-.212ZM6.5 5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1h2Z"
/>
</svg>
);
export default Digicam;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Dispatch = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M7 1a2 2 0 0 1 2 0l4.562 2.634a2 2 0 0 1 1 1.732v5.268a2 2 0 0 1-1 1.732L9 15a2 2 0 0 1-2 0l-4.562-2.634a2 2 0 0 1-1-1.732V5.366a2 2 0 0 1 1-1.732Zm1.5.866a1 1 0 0 0-1 0L2.938 4.5a1 1 0 0 0-.5.866v5.268a1 1 0 0 0 .5.866L7.5 14.134a1 1 0 0 0 1 0l4.562-2.634a1 1 0 0 0 .5-.866V5.366a1 1 0 0 0-.5-.866ZM8 5a.5.5 0 0 1 .5.5v5a.5.5 0 1 1-1 0v-5A.5.5 0 0 1 8 5ZM5.5 6a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5Zm5 0a.5.5 0 0 1 .5.5v3a.5.5 0 1 1-1 0v-3a.5.5 0 0 1 .5-.5Z"
/>
</svg>
);
export default Dispatch;

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Dispatchsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="#09F"
d="M5.5 6a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0v-3a.5.5 0 0 1 .5-.5Zm5 0a.5.5 0 0 1 .5.5v3a.5.5 0 1 1-1 0v-3a.5.5 0 0 1 .5-.5Z"
/>
<path
fill="currentColor"
fillRule="nonzero"
d="M7 1a2 2 0 0 1 2 0l4.562 2.634a2 2 0 0 1 1 1.732v5.268a2 2 0 0 1-1 1.732L9 15a2 2 0 0 1-2 0l-4.562-2.634a2 2 0 0 1-1-1.732V5.366a2 2 0 0 1 1-1.732L7 1Zm1.5.866a1 1 0 0 0-1 0L2.938 4.5a1 1 0 0 0-.5.866v5.268a1 1 0 0 0 .5.866L7.5 14.134a1 1 0 0 0 1 0l4.562-2.634a1 1 0 0 0 .5-.866V5.366a1 1 0 0 0-.5-.866L8.5 1.866ZM8 5a.5.5 0 0 1 .5.5v5a.5.5 0 1 1-1 0v-5A.5.5 0 0 1 8 5Z"
/>
</g>
</svg>
);
export default Dispatchsel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Document = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M12 1a2 2 0 0 1 2 2v7a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1V3a2 2 0 0 1 2-2h8ZM5.086 11H2v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-2h-3.087l-.018.052A1.5 1.5 0 0 1 9.5 12h-3a1.5 1.5 0 0 1-1.395-.948L5.086 11ZM12 2H4a1 1 0 0 0-1 1v7h2.5a.5.5 0 0 1 .492.41l.016.18A.5.5 0 0 0 6.5 11h3a.5.5 0 0 0 .492-.41l.016-.18A.5.5 0 0 1 10.5 10H13V3a1 1 0 0 0-1-1Zm-1.5 5a.5.5 0 1 1 0 1h-5a.5.5 0 0 1 0-1h5Zm0-3a.5.5 0 1 1 0 1h-5a.5.5 0 0 1 0-1h5Z"
/>
</svg>
);
export default Document;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Download = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M14.5 10a.5.5 0 0 1 .5.5V13a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-2.5a.5.5 0 1 1 1 0V13h12v-2.5a.5.5 0 0 1 .5-.5Zm-6.854 1.854a.5.5 0 0 0 .708 0l3.5-3.5a.5.5 0 0 0 0-.708l-.07-.057a.5.5 0 0 0-.638.057L8.5 10.294V1.5a.5.5 0 0 0-1 0v8.794L4.854 7.646a.5.5 0 0 0-.638-.057l-.07.057a.5.5 0 0 0 0 .708l3.5 3.5Z"
/>
</svg>
);
export default Download;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Edit = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13.5 13a.5.5 0 1 1 0 1h-4a.5.5 0 1 1 0-1h4ZM10.387 1.778a1 1 0 0 1 1.414 0l2.122 2.121a1 1 0 0 1 0 1.414l-7.21 7.211a1.5 1.5 0 0 1-.767.41l-2.503.5a1 1 0 0 1-1.177-1.176l.5-2.503a1.5 1.5 0 0 1 .41-.767l7.211-7.21Zm-.666 2.079L3.884 9.696a.5.5 0 0 0-.137.255l-.5 2.503 2.503-.5a.5.5 0 0 0 .255-.137l5.837-5.838-2.12-2.122Zm1.373-1.372-.666.665 2.121 2.122.667-.666-2.122-2.121Z"
/>
</svg>
);
export default Edit;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Errorfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#F55D58"
fillRule="evenodd"
d="M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1Zm2.575 4.098a.387.387 0 0 0-.547.032L8 7.416 5.956 5.113a.387.387 0 0 0-.548 0l-.31.312a.387.387 0 0 0 .032.547l2.286 2.027-2.294 2.037-.053.062a.387.387 0 0 0 .044.494l.304.303.064.049a.387.387 0 0 0 .491-.074L8 8.582l2.036 2.296.062.053c.15.105.36.09.494-.044l.31-.312a.387.387 0 0 0-.032-.547L8.582 8l2.305-2.044a.387.387 0 0 0 0-.548l-.312-.31Z"
/>
</svg>
);
export default Errorfilled;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Exchange = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10.146 3.146a.5.5 0 0 1 .708 0l3 3A.5.5 0 0 1 13.5 7h-12a.5.5 0 0 1 0-1h10.793l-2.147-2.146a.5.5 0 0 1-.057-.638l.057-.07Zm-5.291 9.708a.5.5 0 0 1-.708 0l-3-3A.5.5 0 0 1 1.501 9h12a.5.5 0 1 1 0 1H2.708l2.147 2.146a.5.5 0 0 1 .057.638l-.057.07Z"
/>
</svg>
);
export default Exchange;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Export = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M7 1.5a.5.5 0 0 1 0 1H3.5a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1V9a.5.5 0 1 1 1 0v3.5a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2H7Zm7.3 0c.11 0 .2.09.2.2v3.317a.2.2 0 0 1-.341.142l-1.306-1.306-2.5 2.5a.5.5 0 0 1-.707-.707l2.5-2.5-1.305-1.305a.2.2 0 0 1 .142-.341H14.3Z"
/>
</svg>
);
export default Export;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Failurefilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#F55D58"
fillRule="evenodd"
d="M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1Zm0 9.5a.9.9 0 1 0 0 1.8.9.9 0 0 0 0-1.8ZM8 4l-.067.002a.93.93 0 0 0-.86.995l.283 3.905a.645.645 0 0 0 1.288 0l.283-3.905.003-.067A.93.93 0 0 0 8 4Z"
/>
</svg>
);
export default Failurefilled;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Files = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#666"
fillRule="nonzero"
d="M6 1a1.5 1.5 0 0 1 1.5 1.5v11A1.5 1.5 0 0 1 6 15H3.5A1.5 1.5 0 0 1 2 13.5v-11A1.5 1.5 0 0 1 3.5 1H6Zm.5 11H3v1.5a.5.5 0 0 0 .41.492L3.5 14H6a.5.5 0 0 0 .5-.5V12ZM6 2H3.5a.5.5 0 0 0-.5.5V11h3.5V2.5a.5.5 0 0 0-.41-.492L6 2ZM5 5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 5 5Zm7.5-4A1.5 1.5 0 0 1 14 2.5v11a1.5 1.5 0 0 1-1.5 1.5H10a1.5 1.5 0 0 1-1.5-1.5v-11A1.5 1.5 0 0 1 10 1h2.5Zm.5 11H9.5v1.5a.5.5 0 0 0 .41.492L10 14h2.5a.5.5 0 0 0 .5-.5V12Zm-.5-10H10a.5.5 0 0 0-.5.5V11H13V2.5a.5.5 0 0 0-.41-.492L12.5 2ZM11 5a.5.5 0 0 1 .5.5v2a.5.5 0 1 1-1 0v-2A.5.5 0 0 1 11 5Z"
/>
</svg>
);
export default Files;

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Filessel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="#09F"
d="M5 5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 5 5Zm6 0a.5.5 0 0 1 .5.5v2a.5.5 0 1 1-1 0v-2A.5.5 0 0 1 11 5Z"
/>
<path
fill="currentColor"
fillRule="nonzero"
d="M6 1a1.5 1.5 0 0 1 1.5 1.5v11A1.5 1.5 0 0 1 6 15H3.5A1.5 1.5 0 0 1 2 13.5v-11A1.5 1.5 0 0 1 3.5 1H6Zm.5 11H3v1.5a.5.5 0 0 0 .41.492L3.5 14H6a.5.5 0 0 0 .5-.5V12ZM6 2H3.5a.5.5 0 0 0-.5.5V11h3.5V2.5a.5.5 0 0 0-.41-.492L6 2Zm8 11.5a1.5 1.5 0 0 1-1.5 1.5H10a1.5 1.5 0 0 1-1.5-1.5v-11A1.5 1.5 0 0 1 10 1h2.5A1.5 1.5 0 0 1 14 2.5v11ZM13 12H9.5v1.5a.5.5 0 0 0 .41.492L10 14h2.5a.5.5 0 0 0 .5-.5V12Zm-.5-10H10a.5.5 0 0 0-.5.5V11H13V2.5a.5.5 0 0 0-.41-.492L12.5 2Z"
/>
</g>
</svg>
);
export default Filessel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Filter = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M12 1H4a2 2 0 0 0-2 2v1.965c0 .501.25.97.668 1.248l2.11 1.406A.5.5 0 0 1 5 8.035v4.221a1.5 1.5 0 0 0 1.069 1.437l4.287 1.286A.5.5 0 0 0 11 14.5V8.035a.5.5 0 0 1 .223-.416l2.11-1.406A1.5 1.5 0 0 0 14 4.965V3a2 2 0 0 0-2-2Zm0 1a1 1 0 0 1 1 1v1.965a.5.5 0 0 1-.223.416l-2.11 1.406-.12.09A1.5 1.5 0 0 0 10 8.034v5.793l-3.644-1.093A.5.5 0 0 1 6 12.256v-4.22a1.5 1.5 0 0 0-.668-1.249l-2.11-1.406A.5.5 0 0 1 3 4.965V3a1 1 0 0 1 1-1h8Z"
/>
</svg>
);
export default Filter;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Folder = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M5.879 2a2 2 0 0 1 1.414.586l1.121 1.121A1 1 0 0 0 9.121 4H13a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h2.879Zm0 1H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H9.121a2 2 0 0 1-1.414-.586L6.586 3.293A1 1 0 0 0 5.879 3ZM7.5 7a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1h3Z"
/>
</svg>
);
export default Folder;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Folderfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M5.879 2a2 2 0 0 1 1.414.586l1.121 1.121A1 1 0 0 0 9.121 4H13a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h2.879ZM7.5 7h-3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1Z"
/>
</svg>
);
export default Folderfilled;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Frame = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M3.5 1a.5.5 0 0 1 .5.5V2h8v-.5a.5.5 0 0 1 .41-.492L12.5 1h2a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5H14v8h.5a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5V14H4v.5a.5.5 0 0 1-.41.492L3.5 15h-2a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5H2V4h-.5a.5.5 0 0 1-.492-.41L1 3.5v-2a.5.5 0 0 1 .5-.5h2ZM3 13H2v1h1v-1Zm11 0h-1v1h1v-1ZM12 3H4v.5a.5.5 0 0 1-.41.492L3.5 4H3v8h.5a.5.5 0 0 1 .5.5v.5h8v-.5a.5.5 0 0 1 .41-.492L12.5 12h.5V4h-.5a.5.5 0 0 1-.492-.41L12 3.5V3ZM3 2H2v1h1V2Zm11 0h-1v1h1V2Z"
/>
</svg>
);
export default Frame;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Fullscreen = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10Zm0 1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1ZM3.5 9a.5.5 0 0 1 .5.5v1.792l2.146-2.146a.5.5 0 1 1 .708.708L4.706 12H6.5a.5.5 0 0 1 .492.41L7 12.5a.5.5 0 0 1-.5.5h-3l-.053-.003-.075-.014-.063-.02-.076-.04-.055-.04-.032-.03-.037-.041-.042-.062-.03-.06-.02-.062-.012-.054-.003-.031L3 9.5a.5.5 0 0 1 .5-.5Zm6-6h3.012c.02 0 .041.002.062.005L12.5 3l.053.003.075.014.063.02.076.04.055.04.032.03.037.041.042.062.03.06.02.062.012.056L13 3.5v3a.5.5 0 1 1-1 0V4.706L9.854 6.854a.5.5 0 1 1-.708-.708L11.292 4H9.5a.5.5 0 0 1-.492-.41L9 3.5a.5.5 0 0 1 .5-.5Z"
/>
</svg>
);
export default Fullscreen;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Fullscreenexit = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10Zm0 1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1Zm-.5 7a.5.5 0 0 1 .5.5l-.008.09a.5.5 0 0 1-.492.41h-1.793l2.147 2.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0L10 10.707V12.5a.5.5 0 0 1-.41.492L9.5 13a.5.5 0 0 1-.5-.5l.002-3.042.015-.086.02-.063.04-.076.04-.055.06-.06.038-.03.074-.041.083-.03.023-.006A.498.498 0 0 1 9.5 9l-.074.005.032-.003L12.5 9Zm-6-6a.5.5 0 0 1 .5.5v3.02l-.008.069-.03.102-.04.076-.04.055-.06.06-.037.03-.074.041-.083.03-.082.015L6.5 7h-3a.5.5 0 0 1-.5-.5l.008-.09A.5.5 0 0 1 3.5 6h1.793L3.146 3.854a.5.5 0 0 1-.057-.638l.057-.07a.5.5 0 0 1 .708 0L6 5.293V3.5a.5.5 0 0 1 .41-.492L6.5 3Z"
/>
</svg>
);
export default Fullscreenexit;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Guide = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13.5 5a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5H4a2 2 0 0 1-2-2V3.5l.005-.164A2.5 2.5 0 0 1 4.5 1h9a.5.5 0 1 1 0 1h-9a1.5 1.5 0 0 0 0 3h9ZM11 9.5a.5.5 0 0 1-.777.416L9 9.101l-1.223.815a.5.5 0 0 1-.77-.333L7 9.5V6H4.5c-.483 0-.934-.137-1.317-.375l-.16-.107L3 5.499V13a1 1 0 0 0 .883.993L4 14h9V6h-2v3.5Zm-3-.936.723-.48a.5.5 0 0 1 .467-.047l.087.047.723.481V6H8v2.564ZM13.5 3a.5.5 0 1 1 0 1h-8a.5.5 0 0 1 0-1h8Z"
/>
</svg>
);
export default Guide;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Help = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 1c1.933 0 3.683.784 4.95 2.05A6.978 6.978 0 0 1 15 8a6.978 6.978 0 0 1-2.05 4.95A6.978 6.978 0 0 1 8 15a6.978 6.978 0 0 1-4.95-2.05A6.978 6.978 0 0 1 1 8c0-1.933.784-3.683 2.05-4.95A6.978 6.978 0 0 1 8 1Zm0 1a5.977 5.977 0 0 0-4.243 1.757A5.977 5.977 0 0 0 2 8c0 1.614.639 3.124 1.757 4.243A5.977 5.977 0 0 0 8 14a5.977 5.977 0 0 0 4.243-1.757A5.977 5.977 0 0 0 14 8a5.977 5.977 0 0 0-1.757-4.243A5.977 5.977 0 0 0 8 2Zm0 9a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm.5-7.5a2 2 0 0 1 2 2v.382a2.31 2.31 0 0 1-1.124 1.982l-.152.083A1.309 1.309 0 0 0 8.5 9.118V9.5a.5.5 0 0 1-1 0v-.382c0-.816.43-1.567 1.124-1.982l.152-.083c.444-.222.724-.675.724-1.171V5.5a1 1 0 0 0-1-1H8A1.5 1.5 0 0 0 6.5 6a.5.5 0 0 1-1 0A2.5 2.5 0 0 1 8 3.5h.5Z"
/>
</svg>
);
export default Help;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Hide = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="m2.96 3.117 3.563 2.991a2.4 2.4 0 0 1 3.596 3.019l3.565 2.99a.5.5 0 0 1-.643.766l-1.179-1.41C10.641 12.157 9.352 12.5 8 12.5c-2.745 0-5.216-1.412-7.394-4.192a.5.5 0 0 1 0-.616C1.528 6.515 2.502 5.584 3.528 4.9L2.316 3.884a.5.5 0 1 1 .643-.767Zm1.37 2.456.295-.173c-.93.521-1.827 1.272-2.688 2.253l-.296.346.2.239c1.805 2.099 3.764 3.174 5.892 3.257L8 11.5c.938 0 1.84-.19 2.712-.57L9.477 9.892A2.4 2.4 0 0 1 5.88 6.874l-1.55-1.3ZM8 3.5c2.745 0 5.216 1.412 7.394 4.192a.5.5 0 0 1 0 .616c-.75.958-1.535 1.753-2.354 2.384a.5.5 0 1 1-.61-.792 11.66 11.66 0 0 0 1.646-1.567l.282-.334-.2-.237c-1.804-2.099-3.763-3.174-5.891-3.257L8 4.5c-.74 0-1.457.118-2.153.354a.5.5 0 1 1-.321-.948C6.326 3.636 7.15 3.5 8 3.5Z"
/>
</svg>
);
export default Hide;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const History = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M11.5 7c1.243 0 2.368.504 3.182 1.318A4.486 4.486 0 0 1 16 11.5a4.486 4.486 0 0 1-1.318 3.182A4.486 4.486 0 0 1 11.5 16a4.486 4.486 0 0 1-3.182-1.318A4.486 4.486 0 0 1 7 11.5c0-1.243.504-2.368 1.318-3.182A4.486 4.486 0 0 1 11.5 7Zm.5-6a2 2 0 0 1 2 2v2.5a.5.5 0 1 1-1 0V3a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1.5a.5.5 0 1 1 0 1H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h8Zm-.5 7c-.942 0-1.822.372-2.475 1.025A3.485 3.485 0 0 0 8 11.5c0 .942.372 1.822 1.025 2.475A3.485 3.485 0 0 0 11.5 15c.942 0 1.822-.372 2.475-1.025A3.485 3.485 0 0 0 15 11.5c0-.942-.372-1.822-1.025-2.475A3.485 3.485 0 0 0 11.5 8Zm0 1a.5.5 0 0 1 .5.5V11h1.5a.5.5 0 1 1 0 1h-2a.5.5 0 0 1-.5-.5v-2a.5.5 0 0 1 .5-.5Zm-4-3a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1h2Zm3-2a.5.5 0 1 1 0 1h-5a.5.5 0 0 1 0-1h5Z"
/>
</svg>
);
export default History;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Homepage = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M3 15a2 2 0 0 1-2-2V6.564a2 2 0 0 1 .81-1.608l4.703-3.478a2.5 2.5 0 0 1 2.974 0l4.702 3.478A2 2 0 0 1 15 6.564V13a2 2 0 0 1-2 2ZM8.892 2.282a1.5 1.5 0 0 0-1.784 0L2.405 5.76A1 1 0 0 0 2 6.564V13a1 1 0 0 0 1 1h2v-4a2 2 0 0 1 1.85-1.995L7 8h2a2 2 0 0 1 2 2v4h2a1 1 0 0 0 .993-.883L14 13V6.564a1 1 0 0 0-.405-.804ZM9 9H7a1 1 0 0 0-1 1v4h4v-4a1 1 0 0 0-.883-.993L9 9Z"
/>
</svg>
);
export default Homepage;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Humanfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 1a2 2 0 1 1 0 4 2 2 0 0 1 0-4ZM6 5.5h4a2 2 0 0 1 2 2v2.25a.75.75 0 1 1-1.5 0v-1.5a.25.25 0 1 0-.5 0v5.85a.9.9 0 1 1-1.8 0v-2.9a.2.2 0 0 0-.4 0v2.9a.9.9 0 1 1-1.8 0V8.25a.25.25 0 1 0-.5 0v1.5a.75.75 0 1 1-1.5 0V7.5a2 2 0 0 1 2-2Z"
/>
</svg>
);
export default Humanfilled;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Identify = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M1.5 11a.5.5 0 0 1 .5.5V13a1 1 0 0 0 1 1h1.5a.5.5 0 1 1 0 1H3a2 2 0 0 1-2-2v-1.5a.5.5 0 0 1 .5-.5Zm13 0a.5.5 0 0 1 .5.5V13a2 2 0 0 1-2 2h-1.5a.5.5 0 1 1 0-1H13a1 1 0 0 0 1-1v-1.5a.5.5 0 0 1 .5-.5ZM8 3a2.5 2.5 0 0 1 1.966 4.044A2.499 2.499 0 0 1 12 9.5v2a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-2a2.5 2.5 0 0 1 2.035-2.457A2.5 2.5 0 0 1 8 3Zm1.5 5h-3A1.5 1.5 0 0 0 5 9.5V11h6V9.5a1.5 1.5 0 0 0-1.356-1.493L9.5 8ZM8 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm5-3a2 2 0 0 1 2 2v1.5a.5.5 0 1 1-1 0V3a1 1 0 0 0-1-1h-1.5a.5.5 0 1 1 0-1H13ZM4.5 1a.5.5 0 0 1 0 1H3a1 1 0 0 0-1 1v1.5a.5.5 0 0 1-1 0V3a2 2 0 0 1 2-2Z"
/>
</svg>
);
export default Identify;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Identifyfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M1.5 11a.5.5 0 0 1 .5.5V13a1 1 0 0 0 1 1h1.5a.5.5 0 1 1 0 1H3a2 2 0 0 1-2-2v-1.5a.5.5 0 0 1 .5-.5Zm13 0a.5.5 0 0 1 .5.5V13a2 2 0 0 1-2 2h-1.5a.5.5 0 1 1 0-1H13a1 1 0 0 0 1-1v-1.5a.5.5 0 0 1 .5-.5ZM10 8a2 2 0 0 1 2 2v1.5a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5V10a2 2 0 0 1 2-2h4ZM8 3a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Zm5-2a2 2 0 0 1 2 2v1.5a.5.5 0 1 1-1 0V3a1 1 0 0 0-1-1h-1.5a.5.5 0 1 1 0-1H13ZM4.5 1a.5.5 0 0 1 0 1H3a1 1 0 0 0-1 1v1.5a.5.5 0 0 1-1 0V3a2 2 0 0 1 2-2h1.5Z"
/>
</svg>
);
export default Identifyfilled;

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Identifysel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="#09F"
d="M8 3a2.5 2.5 0 0 1 1.966 4.044A2.499 2.499 0 0 1 12 9.5v2a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5v-2a2.5 2.5 0 0 1 2.035-2.457A2.5 2.5 0 0 1 8 3Zm1.5 5h-3A1.5 1.5 0 0 0 5 9.5V11h6V9.5a1.5 1.5 0 0 0-1.356-1.493L9.5 8ZM8 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"
/>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 1a2 2 0 0 1 2 2v1.5a.5.5 0 1 1-1 0V3a1 1 0 0 0-1-1h-1.5a.5.5 0 1 1 0-1H13ZM3 1a2 2 0 0 0-2 2v1.5a.5.5 0 0 0 1 0V3a1 1 0 0 1 1-1h1.5a.5.5 0 0 0 0-1H3Zm0 14a2 2 0 0 1-2-2v-1.5a.5.5 0 1 1 1 0V13a1 1 0 0 0 1 1h1.5a.5.5 0 1 1 0 1H3Zm10 0a2 2 0 0 0 2-2v-1.5a.5.5 0 1 0-1 0V13a1 1 0 0 1-1 1h-1.5a.5.5 0 1 0 0 1H13Z"
/>
</g>
</svg>
);
export default Identifysel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Import = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M7 1.5a.5.5 0 0 1 0 1H3.5a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1V9a.5.5 0 1 1 1 0v3.5a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2H7Zm2.7 5a.2.2 0 0 1-.2-.2V2.983a.2.2 0 0 1 .341-.142l1.306 1.306 2.5-2.5a.5.5 0 0 1 .707.707l-2.5 2.5 1.305 1.305a.2.2 0 0 1-.142.341H9.7Z"
/>
</svg>
);
export default Import;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Infomationfilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#59ADF7"
fillRule="evenodd"
d="M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1Zm.592 6H7.408l-.06.01a.2.2 0 0 0-.14.198l.184 4.6a.2.2 0 0 0 .2.192h.816a.2.2 0 0 0 .2-.192l.184-4.6-.007-.061A.2.2 0 0 0 8.592 7ZM8 4a1.1 1.1 0 1 0 0 2.2A1.1 1.1 0 0 0 8 4Z"
/>
</svg>
);
export default Infomationfilled;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Keeping = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M14 7a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h5Zm-2-6a2 2 0 0 1 2 2v2.5a.5.5 0 1 1-1 0V3a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1.5a.5.5 0 1 1 0 1H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h8Zm2 7v2a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1V8a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1Zm-1.5 5a.5.5 0 1 1 0 1h-2a.5.5 0 1 1 0-1h2Zm.5-5h-3v2h3V8ZM7.5 6a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1h2Zm3-2a.5.5 0 1 1 0 1h-5a.5.5 0 0 1 0-1h5Z"
/>
</svg>
);
export default Keeping;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const List = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M4.5 3h10a.5.5 0 1 1 0 1h-10a.5.5 0 0 1 0-1Zm0 9h10a.5.5 0 1 1 0 1h-10a.5.5 0 1 1 0-1Zm0-4.5h10a.5.5 0 1 1 0 1h-10a.5.5 0 0 1 0-1ZM1.7 2.8a.7.7 0 1 1 0 1.4.7.7 0 0 1 0-1.4Zm0 9a.7.7 0 1 1 0 1.4.7.7 0 0 1 0-1.4Zm0-4.5a.7.7 0 1 1 0 1.4.7.7 0 0 1 0-1.4Z"
/>
</svg>
);
export default List;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Location = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13.424 11.705c1.3.424 2.076 1.003 2.076 1.792 0 1.548-3.332 2.5-7.5 2.5s-7.5-.952-7.5-2.5c0-.79.776-1.368 2.077-1.792a.5.5 0 1 1 .31.95c-.919.3-1.387.649-1.387.842 0 .661 2.936 1.5 6.5 1.5s6.5-.839 6.5-1.5c0-.193-.468-.542-1.386-.841a.5.5 0 0 1 .31-.951ZM8 .5A5.5 5.5 0 0 1 13.5 6c0 1.863-1.473 4.355-4.388 7.542l-.048.052-.051.049a1.5 1.5 0 0 1-2.122-.096l-.558-.623C3.785 10.028 2.5 7.741 2.5 6A5.5 5.5 0 0 1 8 .5Zm0 1A4.5 4.5 0 0 0 3.5 6c0 1.483 1.277 3.696 3.854 6.568l.277.306a.5.5 0 0 0 .737 0l.272-.3C11.22 9.7 12.5 7.486 12.5 6A4.5 4.5 0 0 0 8 1.5Zm0 2a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Zm0 1a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"
/>
</svg>
);
export default Location;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Mail = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm.966 1.741L9.414 8.293a2 2 0 0 1-2.828 0L2.034 3.74C2.012 3.824 2 3.911 2 4v8a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4c0-.09-.012-.176-.034-.259ZM13 3H3c-.09 0-.176.012-.259.034l4.552 4.552a1 1 0 0 0 1.414 0l4.552-4.552A1.001 1.001 0 0 0 13 3Z"
/>
</svg>
);
export default Mail;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Manage = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M11 7.711a1 1 0 0 1 1 0l2.531 1.462a1 1 0 0 1 .5.866v2.922a1 1 0 0 1-.5.866L12 15.29a1 1 0 0 1-1 0l-2.531-1.462a1 1 0 0 1-.5-.866V10.04a1 1 0 0 1 .5-.866L11 7.71ZM12 1a2 2 0 0 1 2 2v2.5a.5.5 0 1 1-1 0V3a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h1.5a.5.5 0 1 1 0 1H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h8Zm-.5 7.577L8.969 10.04v2.922l2.531 1.462 2.531-1.462V10.04L11.5 8.577Zm0 1.923a1 1 0 1 1 0 2 1 1 0 0 1 0-2ZM7.5 7a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1h2Zm3-3a.5.5 0 1 1 0 1h-5a.5.5 0 0 1 0-1h5Z"
/>
</svg>
);
export default Manage;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Map = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#191919"
fillRule="nonzero"
d="M3.498 9a.5.5 0 1 1 0 1H2.91l-.8 3.999h11.779l-.8-3.999h-.59a.5.5 0 0 1-.492-.41l-.008-.09a.5.5 0 0 1 .5-.5H13.5a.5.5 0 0 1 .49.403l1 4.999a.5.5 0 0 1-.49.598h-13a.5.5 0 0 1-.49-.598l1-5a.5.5 0 0 1 .49-.401h.998ZM8 1a4.5 4.5 0 0 1 4.5 4.5c0 1.653-1.396 3.747-4.156 6.363a.5.5 0 0 1-.688 0C4.896 9.247 3.5 7.153 3.5 5.5A4.5 4.5 0 0 1 8 1Zm0 1a3.5 3.5 0 0 0-3.5 3.5c0 1.2 1.096 2.93 3.312 5.123l.188.182.188-.182c2.131-2.11 3.226-3.79 3.307-4.982L11.5 5.5A3.5 3.5 0 0 0 8 2Zm0 1.5a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm0 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"
/>
</svg>
);
export default Map;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Message = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 2a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-2.379a1 1 0 0 0-.707.293l-1.56 1.56a.5.5 0 0 1-.708 0l-1.56-1.56A1 1 0 0 0 5.379 13H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10Zm0 1H3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h2.379a2 2 0 0 1 1.414.586L8 13.793l1.207-1.207a2 2 0 0 1 1.238-.578l.176-.008H13a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1ZM8 6.75a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm3.25 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm-6.5 0a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z"
/>
</svg>
);
export default Message;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Model = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M7 1a2 2 0 0 1 2 0l4.562 2.634a2 2 0 0 1 1 1.732v5.268a2 2 0 0 1-1 1.732L9 15a2 2 0 0 1-2 0l-4.562-2.634a2 2 0 0 1-1-1.732V5.366a2 2 0 0 1 1-1.732Zm1.5.866a1 1 0 0 0-1 0L2.938 4.5a1 1 0 0 0-.5.866v5.268a1 1 0 0 0 .5.866L7.5 14.134a1 1 0 0 0 1 0l4.562-2.634a1 1 0 0 0 .5-.866V5.366a1 1 0 0 0-.5-.866ZM11.464 6a.5.5 0 0 1-.183.683L8.5 8.288V11.5a.5.5 0 1 1-1 0V8.288L4.719 6.683a.5.5 0 0 1 .5-.866l2.78 1.605 2.782-1.605a.5.5 0 0 1 .683.183Z"
/>
</svg>
);
export default Model;

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Modelsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="#09F"
d="M11.464 6a.5.5 0 0 1-.183.683L8.5 8.289V11.5a.5.5 0 1 1-1 0V8.289L4.719 6.683a.5.5 0 0 1 .5-.866l2.78 1.606 2.782-1.606a.5.5 0 0 1 .683.183Z"
/>
<path
fill="currentColor"
fillRule="nonzero"
d="M7 1 2.438 3.634a2 2 0 0 0-1 1.732v5.268a2 2 0 0 0 1 1.732L7 15a2 2 0 0 0 2 0l4.562-2.634a2 2 0 0 0 1-1.732V5.366a2 2 0 0 0-1-1.732L9 1a2 2 0 0 0-2 0Zm1.5.866L13.062 4.5a1 1 0 0 1 .5.866v5.268a1 1 0 0 1-.5.866L8.5 14.134a1 1 0 0 1-1 0L2.938 11.5a1 1 0 0 1-.5-.866V5.366a1 1 0 0 1 .5-.866L7.5 1.866a1 1 0 0 1 1 0Z"
/>
</g>
</svg>
);
export default Modelsel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Night = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="m9.666 2.02.046.139C9.902 2.744 10 3.365 10 4c0 1.613-.64 3.124-1.757 4.243A5.979 5.979 0 0 1 4 10c-.68 0-1.345-.113-1.975-.333a.5.5 0 0 0-.637.637c.348.997.917 1.9 1.662 2.646A6.978 6.978 0 0 0 8 15a6.978 6.978 0 0 0 4.95-2.05A6.978 6.978 0 0 0 15 8a6.978 6.978 0 0 0-2.05-4.95 7.002 7.002 0 0 0-2.646-1.662.5.5 0 0 0-.638.632Zm1.22.72.176.099c.429.255.826.563 1.18.918A5.979 5.979 0 0 1 14 8c0 1.613-.64 3.124-1.757 4.243A5.979 5.979 0 0 1 8 14a5.979 5.979 0 0 1-4.243-1.757l-.207-.218a6.02 6.02 0 0 1-.711-.963l-.099-.177.252.043A6.978 6.978 0 0 0 8.95 8.95a6.978 6.978 0 0 0 1.987-5.891l-.051-.319Z"
/>
</svg>
);
export default Night;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Notice = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 3a4.5 4.5 0 0 1 4.5 4.5V12a1.5 1.5 0 0 1 0 3h-9a1.5 1.5 0 0 1 0-3V7.5A4.5 4.5 0 0 1 8 3Zm4.5 10h-9a.5.5 0 1 0 0 1h9a.5.5 0 1 0 0-1ZM8 4a3.5 3.5 0 0 0-3.5 3.5V12h3V9.937a2 2 0 1 1 1.001 0L8.5 12h3V7.5A3.5 3.5 0 0 0 8 4Zm0 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM2 7a.5.5 0 0 1 0 1H1a.5.5 0 0 1 0-1h1Zm13 0a.5.5 0 1 1 0 1h-1a.5.5 0 1 1 0-1h1Zm-1.343-4.657a.5.5 0 0 1 0 .707l-.707.707a.5.5 0 0 1-.707-.707l.707-.707a.5.5 0 0 1 .707 0Zm-10.607 0 .707.707a.5.5 0 1 1-.707.707l-.707-.707a.5.5 0 1 1 .707-.707ZM8 0a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 8 0Z"
/>
</svg>
);
export default Notice;

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Noticesel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="#09F"
d="M8 6a2 2 0 0 1 .501 3.937L8.5 12h-1V9.937A2 2 0 0 1 8 6Zm0 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"
/>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 3a4.5 4.5 0 0 1 4.5 4.5V12a1.5 1.5 0 0 1 0 3h-9a1.5 1.5 0 0 1 0-3V7.5A4.5 4.5 0 0 1 8 3Zm4.5 10h-9a.5.5 0 1 0 0 1h9a.5.5 0 1 0 0-1ZM8 4a3.5 3.5 0 0 0-3.5 3.5V12h7V7.5A3.5 3.5 0 0 0 8 4ZM2 7a.5.5 0 0 1 0 1H1a.5.5 0 0 1 0-1h1Zm13 0a.5.5 0 1 1 0 1h-1a.5.5 0 1 1 0-1h1Zm-1.343-4.657a.5.5 0 0 1 0 .707l-.707.707a.5.5 0 0 1-.707-.707l.707-.707a.5.5 0 0 1 .707 0Zm-10.607 0 .707.707a.5.5 0 1 1-.707.707l-.707-.707a.5.5 0 1 1 .707-.707ZM8 0a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 8 0Z"
/>
</g>
</svg>
);
export default Noticesel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Offline = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 2a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10Zm0 1H3a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1ZM6.854 5.646 8 6.793l1.146-1.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L8.707 7.5l1.147 1.146a.5.5 0 0 1-.708.708L8 8.207 6.854 9.354a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L7.293 7.5 6.146 6.354a.5.5 0 1 1 .708-.708ZM4.5 14h7a.5.5 0 1 1 0 1h-7a.5.5 0 1 1 0-1Z"
/>
</svg>
);
export default Offline;

View File

@ -0,0 +1,19 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Offlinesel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero">
<path
fill="#09F"
d="M6.854 5.646 8 6.793l1.146-1.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L8.707 7.5l1.147 1.146a.5.5 0 0 1-.708.708L8 8.207 6.854 9.354a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L7.293 7.5 6.146 6.354a.5.5 0 1 1 .708-.708Z"
/>
<path
fill="currentColor"
d="M13 2H3a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm0 1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h10ZM4.5 14h7a.5.5 0 1 1 0 1h-7a.5.5 0 1 1 0-1Z"
/>
</g>
</svg>
);
export default Offlinesel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Password = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M8 1a3 3 0 0 1 3 3v1h1a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h1V4a3 3 0 0 1 2.824-2.995Zm4 5H4a1 1 0 0 0-.993.883L3 7v5a1 1 0 0 0 .883.993L4 13h8a1 1 0 0 0 .993-.883L13 12V7a1 1 0 0 0-.883-.993L12 6ZM8 9a.997.997 0 0 1 1 1 .997.997 0 0 1-1 1 .997.997 0 0 1-1-1 .997.997 0 0 1 1-1Zm0-7a2 2 0 0 0-2 2v1h4V4a2 2 0 0 0-1.85-1.995Z"
/>
</svg>
);
export default Password;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Pause = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M5 2a1 1 0 0 1 1 1v10a1 1 0 0 1-2 0V3a1 1 0 0 1 1-1Zm6 0a1 1 0 0 1 1 1v10a1 1 0 0 1-2 0V3a1 1 0 0 1 1-1Z"
/>
</svg>
);
export default Pause;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Personnel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 1a2 2 0 0 1 2 2v8a2 2 0 0 1-1.85 1.995L13 13a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2 2 2 0 0 1 2-2h8Zm-2 3H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1l.005-.2a4.001 4.001 0 0 1 2.33-3.438 2.5 2.5 0 1 1 3.332.001A3.998 3.998 0 0 1 11 14a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1Zm-4 7a3 3 0 0 0-3 3h6a3 3 0 0 0-2.824-2.995Zm6-9H5a1 1 0 0 0-1 1h7a2 2 0 0 1 2 2v7a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1ZM7 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"
/>
</svg>
);
export default Personnel;

View File

@ -0,0 +1,19 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Personnelsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="nonzero">
<path
fill="#09F"
d="M7 6a2.5 2.5 0 0 1 1.666 4.364A3.998 3.998 0 0 1 11 14v.5a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1-.5-.5V14a4 4 0 0 1 2.334-3.638A2.5 2.5 0 0 1 7 6Zm0 5a3 3 0 0 0-3 3h6a3 3 0 0 0-2.824-2.995Zm0-4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"
/>
<path
fill="currentColor"
d="M13 1a2 2 0 0 1 2 2v8a2 2 0 0 1-1.85 1.995L13 13a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2 2 2 0 0 1 2-2h8Zm-2 3H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1Zm2-2H5a1 1 0 0 0-1 1h7a2 2 0 0 1 2 2v7a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1Z"
/>
</g>
</svg>
);
export default Personnelsel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Picture = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M15 12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v8Zm-3.954-5.34-3.692 3.694a.5.5 0 0 1-.554.104l-.077-.042-2.66-1.773L2 10.706V12a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V8.874L11.046 6.66ZM13 3H3a1 1 0 0 0-1 1v5.292l1.646-1.646a.5.5 0 0 1 .631-.062l2.659 1.772 3.71-3.71A.5.5 0 0 1 11.3 5.6L14 7.624V4a1 1 0 0 0-1-1ZM6 4a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z"
/>
</svg>
);
export default Picture;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Play = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M3 4.136v7.728a2.1 2.1 0 0 0 3.15 1.819l6.697-3.864a2.1 2.1 0 0 0 0-3.638L6.15 2.317A2.1 2.1 0 0 0 3 4.136Z"
/>
</svg>
);
export default Play;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Recall = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M2 5.593a.5.5 0 0 1-.5-.5V2.972a.5.5 0 0 1 .5-.5l.09.008a.5.5 0 0 1 .41.492v.69a7 7 0 1 1-.766 7.47.5.5 0 1 1 .894-.448 6 6 0 1 0 .43-6.094l1.063.003a.5.5 0 1 1 0 1Zm5-.19a1 1 0 0 1 .53.151l2.557 1.598a1 1 0 0 1 0 1.696L7.53 10.446A1 1 0 0 1 6 9.598V6.402a1 1 0 0 1 1-1Zm0 1v3.195l2.555-1.599L7 6.402Z"
/>
</svg>
);
export default Recall;

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Recallsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="#09F"
d="M7 5.402a1 1 0 0 0-1 1v3.196a1 1 0 0 0 1.53.848l2.557-1.598a1 1 0 0 0 0-1.696L7.53 5.554A1 1 0 0 0 7 5.402Zm0 1L9.555 8 7 9.598V6.402Z"
/>
<path
fill="currentColor"
fillRule="nonzero"
d="M2 5.593a.5.5 0 0 1-.5-.5V2.972a.5.5 0 0 1 .5-.5l.09.008a.5.5 0 0 1 .41.492v.69a7 7 0 1 1-.766 7.47.5.5 0 1 1 .894-.448 6 6 0 1 0 .429-6.093l1.064.002a.5.5 0 1 1 0 1Z"
/>
</g>
</svg>
);
export default Recallsel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Refresh = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M14.517 7.832a.5.5 0 0 1 .474.525 7 7 0 0 1-12.06 4.472l-.064.74a.5.5 0 0 1-.451.455h-.09a.5.5 0 0 1-.455-.542l.174-1.992a.535.535 0 0 1 .011-.07l-.01.07a.502.502 0 0 1 .225-.376l.04-.024a.5.5 0 0 1 .025-.012l-.065.036a.501.501 0 0 1 .292-.08l.024.001 1.992.174a.5.5 0 1 1-.087.997l-.843-.074a6 6 0 0 0 10.343-3.826.5.5 0 0 1 .525-.474ZM8 1c1.953 0 3.768.806 5.068 2.17l.065-.74a.5.5 0 0 1 .451-.454h.09a.5.5 0 0 1 .455.542l-.174 1.992a.545.545 0 0 1-.008.055l.008-.055a.502.502 0 0 1-.218.371l-.038.023a.5.5 0 0 1-.038.02l.068-.038a.501.501 0 0 1-.292.08l-.024-.001-1.992-.174a.5.5 0 0 1 .087-.997l.842.073A6 6 0 0 0 2.008 7.694a.5.5 0 1 1-1-.05A7 7 0 0 1 8 1Z"
/>
</svg>
);
export default Refresh;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Report = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M10.417 1.007a.49.49 0 0 1 .437.14l3 3a.49.49 0 0 1 .139.441l.007.12V13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2l6.353.002.064.005ZM10 2H4a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5h-2.5a.5.5 0 0 1-.492-.41L10 4.5V2Zm0 7a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-1a1 1 0 0 1 1-1h4Zm0 1H6v1h4v-1Zm.5-4a.5.5 0 1 1 0 1h-5a.5.5 0 0 1 0-1h5Zm-2-2a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1h3ZM11 2.708V4h1.293L11 2.708Z"
/>
</svg>
);
export default Report;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Reset = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M7.995 1a7 7 0 1 1-6.261 10.132.5.5 0 1 1 .894-.448 6 6 0 1 0 .562-6.278l.992-.174a.5.5 0 0 1 .556.319l.023.087a.5.5 0 0 1-.405.579l-2.09.368-.02.004a.5.5 0 0 1-.053.004l.074-.008a.502.502 0 0 1-.31-.045l.06.026a.5.5 0 0 1-.03-.012l-.03-.014a.509.509 0 0 1-.24-.26.432.432 0 0 1-.03-.1L1.32 3.09a.5.5 0 0 1 .985-.173l.142.814A6.995 6.995 0 0 1 7.996 1Z"
/>
</svg>
);
export default Reset;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Retrieval = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M7.5 1a6.5 6.5 0 0 1 4.936 10.729l2.418 2.417a.5.5 0 0 1-.708.708l-2.417-2.418A6.5 6.5 0 1 1 7.5 1Zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm0 1c1.598 0 3.051.84 3.86 2.184a.5.5 0 0 1-.858.516 3.497 3.497 0 0 0-4.11-1.521.5.5 0 1 1-.315-.95C6.532 3.08 7.01 3 7.5 3Z"
/>
</svg>
);
export default Retrieval;

View File

@ -0,0 +1,20 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Retrievalsel = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<g fill="none" fillRule="evenodd">
<path
fill="#09F"
d="M7.5 3c1.598 0 3.051.84 3.86 2.184a.5.5 0 0 1-.858.516 3.497 3.497 0 0 0-4.11-1.521.5.5 0 1 1-.315-.95C6.532 3.08 7.01 3 7.5 3Z"
/>
<path
fill="currentColor"
fillRule="nonzero"
d="M7.5 1a6.5 6.5 0 0 1 4.936 10.729l2.418 2.417a.5.5 0 0 1-.708.708l-2.417-2.418A6.5 6.5 0 1 1 7.5 1Zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z"
/>
</g>
</svg>
);
export default Retrievalsel;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Route = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M4.5 11a.5.5 0 1 1 0 1h-2a.5.5 0 1 0 0 1h11a1.5 1.5 0 0 1 0 3h-9a.5.5 0 1 1 0-1h9a.5.5 0 1 0 0-1h-11a1.5 1.5 0 0 1 0-3h2ZM8 1a4.5 4.5 0 0 1 4.5 4.5c0 1.653-1.396 3.747-4.156 6.363a.5.5 0 0 1-.688 0C4.896 9.247 3.5 7.153 3.5 5.5A4.5 4.5 0 0 1 8 1Zm0 1a3.5 3.5 0 0 0-3.5 3.5c0 1.2 1.096 2.93 3.312 5.123l.188.182.188-.182c2.131-2.11 3.226-3.79 3.307-4.982L11.5 5.5A3.5 3.5 0 0 0 8 2Zm0 1.5a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm0 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"
/>
</svg>
);
export default Route;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Routefilled = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M4.5 11a.5.5 0 1 1 0 1h-2a.5.5 0 1 0 0 1h11a1.5 1.5 0 0 1 0 3h-9a.5.5 0 1 1 0-1h9a.5.5 0 1 0 0-1h-11a1.5 1.5 0 0 1 0-3h2ZM8 1a4.5 4.5 0 0 1 4.5 4.5c0 1.653-1.396 3.747-4.156 6.363a.5.5 0 0 1-.688 0C4.896 9.247 3.5 7.153 3.5 5.5A4.5 4.5 0 0 1 8 1Zm0 2a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm0 1a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z"
/>
</svg>
);
export default Routefilled;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Save = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="currentColor"
fillRule="nonzero"
d="M13 1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h10ZM4 2H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1h-1v2a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V2Zm6.5 9a.5.5 0 1 1 0 1h-5a.5.5 0 1 1 0-1h5Zm.5-9H5v2a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V2Zm-1.5.7a.8.8 0 1 1 0 1.6.8.8 0 0 1 0-1.6Z"
/>
</svg>
);
export default Save;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Screenl = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#191919"
fillRule="nonzero"
d="M12.994 1C14.102 1 15 1.897 15 3.006v9.988A2.005 2.005 0 0 1 12.994 15H3.006A2.005 2.005 0 0 1 1 12.994V3.006C1 1.898 1.897 1 3.006 1h9.988Zm0 1H3.006C2.45 2 2 2.45 2 3.006v9.988C2 13.55 2.45 14 3.006 14h9.988C13.55 14 14 13.55 14 12.994V3.006C14 2.45 13.55 2 12.994 2ZM8.997 3C9.551 3 10 3.456 10 3.995v8.01c0 .55-.438.995-1.003.995H4.003A1.006 1.006 0 0 1 3 12.005v-8.01C3 3.445 3.438 3 4.003 3h4.994Z"
/>
</svg>
);
export default Screenl;

View File

@ -0,0 +1,14 @@
import React from 'react';
import { CustomSVGProps } from '../type';
const Screenm = (props: CustomSVGProps) => (
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16" {...props}>
<path
fill="#191919"
fillRule="nonzero"
d="M12.994 1C14.102 1 15 1.897 15 3.006v9.988A2.005 2.005 0 0 1 12.994 15H3.006A2.005 2.005 0 0 1 1 12.994V3.006C1 1.898 1.897 1 3.006 1h9.988Zm0 1H3.006C2.45 2 2 2.45 2 3.006v9.988C2 13.55 2.45 14 3.006 14h9.988C13.55 14 14 13.55 14 12.994V3.006C14 2.45 13.55 2 12.994 2ZM7 3c.552 0 1 .456 1 .995v8.01c0 .55-.444.995-1 .995H4c-.552 0-1-.456-1-.995v-8.01C3 3.445 3.444 3 4 3h3Z"
/>
</svg>
);
export default Screenm;

Some files were not shown because too many files have changed in this diff Show More