@wordpress/block-library
Version:
Block library for the WordPress editor.
18 lines (17 loc) • 434 B
JavaScript
// packages/block-library/src/file/variations.js
import { _x } from "@wordpress/i18n";
var variations = [
{
name: "default",
isDefault: true,
// Translatable defaults can't live in `block.json`, so set it here.
attributes: {
downloadButtonText: _x("Download", "button label")
}
}
];
var variations_default = variations;
export {
variations_default as default
};
//# sourceMappingURL=variations.mjs.map