UNPKG

vcc-ui

Version:

VCC UI is a collection of React UI Components that can be used for developing front-end applications at Volvo Car Corporation.

14 lines (11 loc) 286 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sizeToRem = void 0; var REM_TO_PX = 0.0625; var GRID_SIZE = 8; var sizeToRem = function sizeToRem(size) { return "".concat(size * GRID_SIZE * REM_TO_PX, "rem"); }; exports.sizeToRem = sizeToRem;