@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 705 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCursorFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M19.814 8.124 5.512 2.951c-1.594-.576-3.138.967-2.561 2.561l5.173 14.302c.636 1.758 3.121 1.76 3.76.003l1.797-4.94a2 2 0 0 1 1.196-1.196l4.94-1.796c1.757-.64 1.755-3.125-.003-3.76" }) }));
};
IconCursorFilled.iconName = "cursor--filled";
export default IconCursorFilled;