UNPKG

@sanity/icons

Version:
26 lines (25 loc) 803 B
import { forwardRef } from "react"; import { jsx } from "react/jsx-runtime"; /** * @public */ const JsonIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsx("svg", { "data-sanity-icon": "json", width: "1em", height: "1em", viewBox: "0 0 25 25", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, ref, children: /* @__PURE__ */ jsx("path", { d: "M11 5.5H9.5C8.39543 5.5 7.5 6.39543 7.5 7.5V12.5M7.5 12.5H4M7.5 12.5V17.5C7.5 18.6046 8.39543 19.5 9.5 19.5H11M14 5.5H15.5C16.6046 5.5 17.5 6.39543 17.5 7.5V12.5M17.5 12.5H21M17.5 12.5V17.5C17.5 18.6046 16.6046 19.5 15.5 19.5H14", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }) }); }); export { JsonIcon, JsonIcon as default }; //# sourceMappingURL=Json.js.map