@wordpress/block-editor
Version:
31 lines (30 loc) • 663 B
JavaScript
// packages/block-editor/src/utils/format-font-style.js
import { _x } from "@wordpress/i18n";
function formatFontStyle(fontStyle) {
if (!fontStyle) {
return {};
}
if (typeof fontStyle === "object") {
return fontStyle;
}
let name;
switch (fontStyle) {
case "normal":
name = _x("Regular", "font style");
break;
case "italic":
name = _x("Italic", "font style");
break;
case "oblique":
name = _x("Oblique", "font style");
break;
default:
name = fontStyle;
break;
}
return { name, value: fontStyle };
}
export {
formatFontStyle
};
//# sourceMappingURL=format-font-style.mjs.map