'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
function setWidth(childrenInRow) {
var width = '100%';
if (childrenInRow === 2) {
width = '45%';
} else if (childrenInRow === 3) {
width = '30%';
}
return width;
}
exports.default = setWidth;