19 lines
532 B
JavaScript
19 lines
532 B
JavaScript
import React from "react";
|
|
|
|
function PointerToolIcon() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
fill="currentcolor"
|
|
>
|
|
<path d="M0 0h24v24H0z" fill="none" />
|
|
<path d="M4.793 17.55l5.3-5.3 3.25 3.25c.41.41 1.07.39 1.45-.04 5-6.04 7.376-9.187 7.13-9.44-.267-.267-2.88 2.14-7.84 7.22l-3.29-3.29a.996.996 0 00-1.41 0l-6.09 6.1a.996.996 0 000 1.41l.09.09c.39.39 1.03.39 1.41 0z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default PointerToolIcon;
|