quiz-interactions
Version:
A React UI component Library for quiz interaction types.
24 lines (22 loc) • 612 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 {
itemMargin: spacing.xxSmall,
itemBeforeMargin: spacing.xSmall,
itemPadding: spacing.xSmall,
questionMargin: spacing.xSmall,
questionBorder: borders.widthSmall,
questionBorderColor: colors.tiara,
questionColor: colors.porcelain,
dividerMargin: spacing.small,
dividerBorder: borders.widthMedium,
dividerBorderColor: colors.licorice
};
}