UNPKG

@chayns-components/emoji-input

Version:
17 lines (16 loc) 597 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getFontFamily = void 0; var _environment = require("./environment"); const getRootFontFamily = () => { const rootElement = document.querySelector(':root'); if (!rootElement) { return ''; } return window.getComputedStyle(rootElement).getPropertyValue('font-family'); }; const getFontFamily = () => `${getRootFontFamily()}${(0, _environment.getIsMobile)() || (0, _environment.getIsMacOS)() ? '' : ', Noto Color Emoji'}, serif`; exports.getFontFamily = getFontFamily; //# sourceMappingURL=font.js.map