@instructure/quiz-interactions
Version:
A React UI component Library for quiz interaction types.
20 lines (19 loc) • 625 B
JavaScript
var generateStyle = function(componentTheme) {
return {
createButton: {
marginTop: componentTheme.createButtonMargin
},
hint: {
margin: "".concat(componentTheme.hintMargin, " 0")
},
createBlankText: {
fontWeight: componentTheme.createBlankTextWeight
},
createBlankHotkeyText: {
fontWeight: componentTheme.createBlankHotkeyTextWeight,
fontSize: componentTheme.createBlankHotkeyTextSize,
paddingSeft: componentTheme.createBlankHotkeyTextPadding
}
};
};
export default generateStyle;