diff options
Diffstat (limited to 'icons-react/icons-js/pointer.js')
-rw-r--r-- | icons-react/icons-js/pointer.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/pointer.js b/icons-react/icons-js/pointer.js new file mode 100644 index 00000000..e7c9efdc --- /dev/null +++ b/icons-react/icons-js/pointer.js @@ -0,0 +1,12 @@ +import * as React from "react"; + +function IconPointer({ + size = 24, + color = "currentColor", + stroke = 2, + ...props +}) { + return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-pointer" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M6 6l4.153 11.793a0.365 .365 0 0 0 .331 .207a0.366 .366 0 0 0 .332 -.207l2.184 -4.793l4.787 -1.994a0.355 .355 0 0 0 .213 -.323a0.355 .355 0 0 0 -.213 -.323l-11.787 -4.36z" /><path d="M13.5 13.5l4.5 4.5" /></svg>; +} + +export default IconPointer;
\ No newline at end of file |