@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.77 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconPenTool = (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: "M6.3432 17.657C8.56991 19.8838 11.7827 20.5234 14.5759 19.576L16.0857 21.0858C16.8668 21.8669 18.1331 21.8669 18.9142 21.0859L21.0857 18.9143C21.8668 18.1332 21.8668 16.8669 21.0857 16.0859L19.5759 14.576C20.5233 11.7828 19.8836 8.57004 17.6569 6.34333C15.2122 3.89865 8.23869 2.97421 4.6665 2.65388C3.49994 2.54927 2.54915 3.50007 2.65376 4.66662C2.97409 8.23882 3.89853 15.2124 6.3432 17.657ZM18.1554 14.0942C17.972 14.635 18.1115 15.2329 18.5153 15.6367L20.0251 17.1465C20.2203 17.3418 20.2203 17.6584 20.0251 17.8536L17.8535 20.0252C17.6582 20.2205 17.3417 20.2205 17.1464 20.0252L15.6366 18.5154C15.2328 18.1116 14.6349 17.9721 14.0941 18.1555C11.8208 18.9266 9.2115 18.404 7.40386 16.5964C6.99172 16.1842 6.5674 15.4947 6.16665 14.5252C5.77322 13.5735 5.44057 12.4465 5.16333 11.2469C4.68317 9.16928 4.39113 6.97168 4.21923 5.27989L10.1583 11.2189C10.0564 11.4589 10 11.7229 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10C11.7229 10 11.4589 10.0564 11.2189 10.1583L5.28004 4.21938C6.97179 4.39128 9.16926 4.68332 11.2468 5.16345C12.4464 5.44069 13.5734 5.77335 14.5251 6.16677C15.4945 6.56753 16.1841 6.99185 16.5962 7.40399C18.4039 9.21163 18.9264 11.8209 18.1554 14.0942Z" }) }));
};
IconPenTool.iconName = "pen-tool";
export default IconPenTool;