23 lines
638 B
TypeScript
23 lines
638 B
TypeScript
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;
|