quiz-interactions
Version:
A React UI component Library for quiz interaction types.
19 lines (17 loc) • 436 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = generator;
function generator(_ref) {
var spacing = _ref.spacing,
colors = _ref.colors,
borders = _ref.borders;
return {
choicePadding: spacing.xSmall,
choiceBorder: borders.widthSmall,
choiceBorderColor: colors.ash,
choiceBorderRadius: borders.radiusMedium,
choiceBackgroundColor: colors.white
};
}