@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 896 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function ErrorScreenIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "error-screen",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M10 8.5L15 13.5M15 8.5L10 13.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M12.5 16.5H5.5C4.94772 16.5 4.5 16.0523 4.5 15.5V6.5C4.5 5.94771 4.94772 5.5 5.5 5.5H19.5C20.0523 5.5 20.5 5.94772 20.5 6.5V15.5C20.5 16.0523 20.0523 16.5 19.5 16.5H12.5ZM12.5 16.5V19.5M12.5 19.5H8M12.5 19.5H17",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { ErrorScreenIcon, ErrorScreenIcon as default };
//# sourceMappingURL=ErrorScreen.js.map