@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 964 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", { 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: "M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM17.4568 18.5174C15.9803 19.7549 14.0772 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 9.92282 4.24508 8.01967 5.48256 6.54322L17.4568 18.5174ZM18.5174 17.4568L6.54322 5.48256C8.01967 4.24508 9.92282 3.5 12 3.5C16.6944 3.5 20.5 7.30558 20.5 12C20.5 14.0772 19.7549 15.9803 18.5174 17.4568Z" }) }));
};
IconNotAllowed.iconName = "not-allowed";
export default IconNotAllowed;