@sanity/icons
Version:
The Sanity icons.
26 lines (25 loc) • 712 B
JavaScript
import { forwardRef } from "react";
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
const UnknownIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "unknown",
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: "M12.5 13C12.5 11 14 11.5 14 10C14 9.34375 13.5 8.5 12.5 8.5C11.5 8.5 11 9 10.5 9.5M12.5 16V14.5M5.5 5.5H19.5V19.5H5.5V5.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
});
export { UnknownIcon, UnknownIcon as default };
//# sourceMappingURL=Unknown.js.map