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
+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;