@sanity/icons
Version:
The Sanity icons.
31 lines (30 loc) • 772 B
JavaScript
import { forwardRef } from "react";
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
const LeaveIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "leave",
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: "M14.5 15V18.5H5.5V6.5H14.5V10M9 12.5H21.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M18 9L21.5 12.5L18 16",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
});
export { LeaveIcon, LeaveIcon as default };
//# sourceMappingURL=Leave.js.map