@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 720 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconNotAllowed = (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", { fillRule: "evenodd", d: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10m-4.543 6.517A8.5 8.5 0 0 1 5.483 6.543zm1.06-1.06L6.543 5.483a8.5 8.5 0 0 1 11.974 11.974", clipRule: "evenodd" }) }));
};
IconNotAllowed.iconName = "not-allowed";
export default IconNotAllowed;