UNPKG

@netdata/netdata-ui

Version:

netdata UI kit

17 lines (16 loc) 476 B
"use strict"; exports.__esModule = true; exports["default"] = void 0; var justifyContentMap = { start: "start", center: "center", end: "end", between: "space-between", around: "space-around", evenly: "space-evenly", stretch: "stretch" }; var _default = exports["default"] = function _default(_ref) { var justifyContent = _ref.justifyContent; return justifyContent in justifyContentMap ? "justify-content: " + justifyContentMap[justifyContent] + ";" : ""; };