@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 695 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function ArrowTopRightIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "arrow-top-right",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M16.5 8.5L7 18",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M9 8.5H16.5V16",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { ArrowTopRightIcon, ArrowTopRightIcon as default };
//# sourceMappingURL=ArrowTopRight.js.map