@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 629 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function ComponentIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "component",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M8.5 8.5L12.5 12.5M12.5 12.5L16.5 16.5M12.5 12.5L16.5 8.5M12.5 12.5L8.5 16.5M12.5 4L21 12.5L12.5 21L4 12.5L12.5 4Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { ComponentIcon, ComponentIcon as default };
//# sourceMappingURL=Component.js.map