@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 582 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function ReadOnlyIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "read-only",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M15 7L18 10M10 12L7 15L6 19L10 18L13 15M12 10L17 5L20 8L15 13M19 19L5 5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { ReadOnlyIcon, ReadOnlyIcon as default };
//# sourceMappingURL=ReadOnly.js.map