@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 531 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function CodeIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "code",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M11 16L7.5 12.5L11 9M14 9L17.5 12.5L14 16",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { CodeIcon, CodeIcon as default };
//# sourceMappingURL=Code.js.map