2020-10-23 15:46:48 +08:00

16 lines
893 B
JavaScript

const React = require('react');
const IconBase = require('@ali/vu-icon-base');
function CursorPointer(props) {
return (
<IconBase viewBox="0 0 1024 1024" {...props}>
<path d="M426.666667 85.333333C473.6 85.333333 512 123.733333 512 170.666667L512 362.666667C512 362.666667 597.333333 352 597.333333 394.666667 597.333333 394.666667 682.666667 384 682.666667 426.666667 682.666667 426.666667 768 416 768 458.666667 768 458.666667 853.333333 448 853.333333 490.666667L853.333333 640C853.333333 682.666667 725.333333 896 725.333333 938.666667L384 938.666667C384 938.666667 298.666667 640 170.666667 554.666667 170.666667 554.666667 128 298.666667 341.333333 512L341.333333 170.666667C341.333333 123.733333 379.733333 85.333333 426.666667 85.333333Z">
</path>
</IconBase>
);
}
CursorPointer.displayName = 'CursorPointer';
module.exports = CursorPointer;