@wordpress/block-library
Version:
Block library for the WordPress editor.
25 lines (24 loc) • 711 B
JavaScript
// packages/block-library/src/spacer/save.js
import { useBlockProps, getSpacingPresetCssVar } from "@wordpress/block-editor";
import { jsx } from "react/jsx-runtime";
function save({ attributes }) {
const { height, width, style } = attributes;
const { layout: { selfStretch } = {} } = style || {};
const finalHeight = selfStretch === "fill" || selfStretch === "fit" ? void 0 : height;
return /* @__PURE__ */ jsx(
"div",
{
...useBlockProps.save({
style: {
height: getSpacingPresetCssVar(finalHeight),
width: getSpacingPresetCssVar(width)
},
"aria-hidden": true
})
}
);
}
export {
save as default
};
//# sourceMappingURL=save.js.map