@wordpress/block-editor
Version:
32 lines (31 loc) • 938 B
JavaScript
// packages/block-editor/src/components/floating-toolbar/nav-up-icon.js
import { SVG, Path } from "@wordpress/components";
import { isRTL } from "@wordpress/i18n";
import { jsx, jsxs } from "react/jsx-runtime";
var NavigateUp = () => /* @__PURE__ */ jsxs(
SVG,
{
width: "24",
height: "24",
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
children: [
/* @__PURE__ */ jsx(Path, { fill: "none", d: "M0 0h24v24H0V0z" }),
/* @__PURE__ */ jsx(
Path,
{
fill: "white",
fillRule: "evenodd",
clipRule: "evenodd",
d: "M17,11 z L15.58,12.42 L12,8.83 L12,18 L22,18 L22,20 L10,20 L10,8.83 L6.42,12.42 L5,11 L11,5 L17,11",
transform: isRTL() ? "scale(-1,1) translate(-24,0)" : void 0
}
)
]
}
);
var nav_up_icon_default = NavigateUp;
export {
nav_up_icon_default as default
};
//# sourceMappingURL=nav-up-icon.mjs.map