@wordpress/block-library
Version:
Block library for the WordPress editor.
34 lines (32 loc) • 814 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* External dependencies
*/
import classnames from 'classnames';
/**
* WordPress dependencies
*/
import { RichText, useBlockProps } from '@wordpress/block-editor';
export default function save(_ref) {
let {
attributes
} = _ref;
const {
textAlign,
citation,
value
} = attributes;
const shouldShowCitation = !RichText.isEmpty(citation);
return createElement("figure", useBlockProps.save({
className: classnames({
[`has-text-align-${textAlign}`]: textAlign
})
}), createElement("blockquote", null, createElement(RichText.Content, {
tagName: "p",
value: value
}), shouldShowCitation && createElement(RichText.Content, {
tagName: "cite",
value: citation
})));
}
//# sourceMappingURL=save.js.map