UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.08 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconCursor = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19.3042 9.53483L5.00235 4.36181C4.60384 4.21767 4.21795 4.60356 4.36209 5.00207L9.5351 19.3039C9.69408 19.7435 10.3155 19.744 10.4752 19.3047L12.2716 14.3645C12.6254 13.3916 13.3918 12.6252 14.3648 12.2714L19.305 10.4749C19.7442 10.3152 19.7437 9.6938 19.3042 9.53483ZM5.51255 2.95125L19.8144 8.12426C21.5724 8.76015 21.5746 11.2457 19.8176 11.8846L14.8774 13.681C14.3214 13.8832 13.8835 14.3212 13.6813 14.8771L11.8849 19.8174C11.246 21.5743 8.76043 21.5722 8.12454 19.8141L2.95152 5.51228C2.37496 3.91824 3.91852 2.37469 5.51255 2.95125Z" }) })); }; IconCursor.iconName = "cursor"; export default IconCursor;