@wordpress/block-library
Version:
Block library for the WordPress editor.
11 lines • 321 B
JavaScript
/**
* Generates the opacity/dim class based on given number.
*
* @param {number} ratio Dim/opacity number.
*
* @return {string} Generated class.
*/
export function dimRatioToClass(ratio) {
return ratio === undefined ? null : 'has-background-dim-' + 10 * Math.round(ratio / 10);
}
//# sourceMappingURL=utils.js.map