This commit is contained in:
2025-06-10 16:58:54 +05:00
parent f204767e0a
commit e3eea86e28
8 changed files with 166 additions and 87 deletions
+28
View File
@@ -0,0 +1,28 @@
function AppsIcon() {
return (
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="a" fill="#fff">
<rect width={8.58} height={8.58} rx={1} />
</mask>
<rect
width={8.58}
height={8.58}
rx={1}
transform="matrix(.87416 .48564 -.87416 .48564 10 3.5)"
stroke="currentColor"
strokeWidth={2.4}
mask="url(#a)"
/>
<path
d="M10.875 14.894c-.483.268-1.266.268-1.749 0l-5.828-3.238c-.449-.25-.473-.65-.055-.914.23-.146.633-.154.88-.017l5.368 2.983a1 1 0 0 0 .868.003l5.48-2.964a.96.96 0 0 1 .828.003c.46.256.46.67 0 .926l-5 2.778z"
fill="currentColor"
/>
<path
d="M10.874 18.014c-.483.268-1.265.268-1.748 0l-5.91-3.283c-.416-.231-.48-.594-.154-.866l.026-.022c.215-.179.668-.206.945-.056l5.537 2.981c.24.13.62.13.86 0l5.537-2.981c.277-.15.73-.123.945.056l.026.022c.327.272.262.635-.155.866l-5.116 2.843z"
fill="currentColor"
/>
</svg>
);
}
export default AppsIcon;
+22
View File
@@ -0,0 +1,22 @@
function ClientIcon() {
return (
<svg viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M3.45 12.28v1.32h9.6v-12h-9.6v1.68M2.25 9.6h1.333m-1.333-2h1.333m-1.333-2h1.333"
stroke="currentColor"
strokeWidth={1.2}
strokeLinecap="square"
strokeLinejoin="round"
/>
<path
d="M8.25 7a1.333 1.333 0 1 0 0-2.667A1.333 1.333 0 0 0 8.25 7Zm2.666 4.667a2.667 2.667 0 1 0-5.333 0"
stroke="currentColor"
strokeWidth={1.2}
strokeLinecap="square"
strokeLinejoin="round"
/>
</svg>
);
}
export default ClientIcon;