iconoir/packages/iconoir-react/src/server/CursorPointer.tsx

28 lines
720 B
TypeScript

import * as React from "react";
function SvgCursorPointer(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
clipRule="evenodd"
d="M19.503 9.97c1.204.489 1.112 2.224-.137 2.583l-6.306 1.813-2.88 5.895c-.57 1.168-2.295.957-2.568-.314L4.677 6.257A1.369 1.369 0 016.53 4.7L19.503 9.97z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCursorPointer);
export default ForwardRef;