@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 765 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function AccessDeniedIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "access-denied",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M18.1568 6.84315C21.281 9.96734 21.281 15.0327 18.1568 18.1569C15.0326 21.281 9.96733 21.281 6.84313 18.1569C3.71894 15.0327 3.71894 9.96734 6.84313 6.84315C9.96733 3.71895 15.0326 3.71895 18.1568 6.84315ZM18.1568 6.84315L6.844 18.156",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { AccessDeniedIcon, AccessDeniedIcon as default };
//# sourceMappingURL=AccessDenied.js.map