@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.7 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconEyedropper = (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: "M10.2499 9.75L9.91413 9.41421C8.6542 8.15428 9.54653 6 11.3283 6H12.1715C12.7019 6 13.2106 5.78928 13.5857 5.41421L14.9999 4C16.3806 2.61928 18.6192 2.61928 19.9999 4C21.3806 5.38071 21.3806 7.61929 19.9999 9L18.5857 10.4142C18.2106 10.7893 17.9999 11.298 17.9999 11.8284V12.6716C17.9999 14.4534 15.8456 15.3457 14.5857 14.0858L14.2499 13.75L7.87548 20.1244C7.62937 20.3705 7.32329 20.5482 6.9875 20.6397L5.37659 21.0791C3.88359 21.4863 2.51364 20.1163 2.92083 18.6233L3.36017 17.0124C3.45174 16.6766 3.62937 16.3705 3.87548 16.1244L10.2499 9.75ZM18.9393 7.93934L17.525 9.35355C16.8687 10.0099 16.4999 10.9002 16.4999 11.8284V12.6716C16.4999 13.117 15.9613 13.3401 15.6464 13.0251L10.9748 8.35355C10.6598 8.03857 10.8829 7.5 11.3283 7.5H12.1715C13.0997 7.5 13.99 7.13125 14.6464 6.47487L16.0606 5.06066C16.8555 4.26573 18.1443 4.26573 18.9393 5.06066C19.7342 5.85558 19.7342 7.14441 18.9393 7.93934ZM11.3106 10.8107L4.93614 17.1851C4.87461 17.2466 4.83021 17.3231 4.80731 17.4071L4.36797 19.018C4.26618 19.3912 4.60866 19.7337 4.98191 19.6319L6.59282 19.1926C6.67677 19.1697 6.75329 19.1253 6.81482 19.0638L13.1893 12.6893L11.3106 10.8107Z" }) }));
};
IconEyedropper.iconName = "eyedropper";
export default IconEyedropper;