UNPKG

@etsoo/smarterp-core

Version:
23 lines (22 loc) 572 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CoreUtils = void 0; /** * Core utilities */ var CoreUtils; (function (CoreUtils) { /** * Get avatar styles * @param isOrg Is this an organization avatar? * @returns Styles */ function avatarStyles(isOrg = false) { return { width: "160px", height: isOrg ? "80px" : "160px", border: "1px solid #666" }; } CoreUtils.avatarStyles = avatarStyles; })(CoreUtils || (exports.CoreUtils = CoreUtils = {}));