UNPKG

@sanity/icons

Version:
26 lines (25 loc) 660 B
import { forwardRef } from "react"; import { jsx } from "react/jsx-runtime"; /** * @public */ const TerminalIcon = /* @__PURE__ */ forwardRef(function(props, ref) { return /* @__PURE__ */ jsx("svg", { "data-sanity-icon": "terminal", 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: "M8.5 9.5L11.5 12.5L8.5 15.5M13 15.5H17M5.5 6.5H19.5V18.5H5.5V6.5Z", stroke: "currentColor", strokeWidth: 1.2, strokeLinejoin: "round" }) }); }); export { TerminalIcon, TerminalIcon as default }; //# sourceMappingURL=Terminal.js.map