@sanity/icons
Version:
The Sanity icons.
31 lines (30 loc) • 773 B
JavaScript
import { forwardRef } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
const LaunchIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "launch",
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 7.5H6.5V18.5H17.5V13M19.5 5.5L10.5 14.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M14 5.5H19.5V11",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
});
export { LaunchIcon, LaunchIcon as default };
//# sourceMappingURL=Launch.js.map