@wordpress/block-library
Version:
Block library for the WordPress editor.
18 lines (16 loc) • 438 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.dimRatioToClass = dimRatioToClass;
/**
* Generates the opacity/dim class based on given number.
*
* @param {number} ratio Dim/opacity number.
*
* @return {string} Generated class.
*/
function dimRatioToClass(ratio) {
return ratio === undefined ? null : 'has-background-dim-' + 10 * Math.round(ratio / 10);
}
//# sourceMappingURL=utils.js.map
;