@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 IconCut = (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: "M16.9817 3.34452C17.1888 2.9858 17.6475 2.86289 18.0062 3.07C18.3649 3.2771 18.4878 3.7358 18.2807 4.09452L12.8656 13.4737L14.3313 16.0122C14.6245 15.3863 15.1057 14.8407 15.7497 14.4689C17.4237 13.5024 19.5642 14.076 20.5307 15.75C21.4972 17.424 20.9237 19.5646 19.2497 20.5311C17.5756 21.4976 15.4351 20.924 14.4686 19.25L11.9996 14.9737L9.53769 19.2379C9.53537 19.2419 9.53304 19.246 9.5307 19.25C8.5642 20.924 6.42363 21.4976 4.74961 20.5311C3.07558 19.5646 2.50202 17.424 3.46852 15.75C4.43502 14.076 6.57558 13.5024 8.24961 14.4689C8.8936 14.8407 9.37473 15.3863 9.66797 16.0122L11.1336 13.4737L5.71856 4.09458C5.51146 3.73586 5.63436 3.27716 5.99308 3.07006C6.3518 2.86295 6.8105 2.98586 7.0176 3.34458L11.9996 11.9737L16.9817 3.34452ZM8.23685 18.491C8.78187 17.5357 8.45318 16.3185 7.49961 15.768C6.54302 15.2157 5.31984 15.5434 4.76756 16.5C4.21527 17.4566 4.54302 18.6798 5.49961 19.2321C6.45463 19.7834 7.67538 19.4577 8.22895 18.5047L8.23166 18.5L8.23685 18.491ZM15.7676 18.5C16.3199 19.4566 17.5431 19.7843 18.4997 19.2321C19.4562 18.6798 19.784 17.4566 19.2317 16.5C18.6794 15.5434 17.4562 15.2157 16.4997 15.768C15.5431 16.3202 15.2153 17.5434 15.7676 18.5Z" }) }));
};
IconCut.iconName = "cut";
export default IconCut;