UNPKG

@wordpress/block-editor

Version:
24 lines 772 B
/** * WordPress dependencies */ import { SVG, Path } from '@wordpress/components'; import { isRTL } from '@wordpress/i18n'; import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; const 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)' : undefined })] }); export default NavigateUp; //# sourceMappingURL=nav-up-icon.js.map