25 lines
905 B
TypeScript
25 lines
905 B
TypeScript
const MouseIcon = () => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="40"
|
|
height="40"
|
|
viewBox="0 0 40 40"
|
|
fill="none"
|
|
>
|
|
<path
|
|
d="M20 6.6665L17.6666 6.6665C14.3529 6.6665 11.6666 9.3528 11.6666 12.6665L11.6666 18.3332L20 18.3332L20 6.6665Z"
|
|
fill="#7BA7BC"
|
|
/>
|
|
<path
|
|
d="M20 6.6665L17.6666 6.6665C14.3529 6.6665 11.6666 9.3528 11.6666 12.6665L11.6666 18.3332M20 6.6665L22.3333 6.6665C25.647 6.6665 28.3333 9.3528 28.3333 12.6665L28.3333 18.3332M20 6.6665L20 18.3332M20 18.3332L11.6666 18.3332M20 18.3332L28.3333 18.3332M11.6666 18.3332L11.6666 27.3332C11.6666 30.6469 14.3529 33.3332 17.6666 33.3332L22.3333 33.3332C25.647 33.3332 28.3333 30.6469 28.3333 27.3332L28.3333 18.3332"
|
|
stroke="#7BA7BC"
|
|
strokeWidth="2"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default MouseIcon;
|