@instructure/quiz-interactions
Version:
A React UI component Library for quiz interaction types.
21 lines (19 loc) • 541 B
JavaScript
const generateStyle = componentTheme => {
return {
createButton: {
marginTop: componentTheme.createButtonMargin,
},
hint: {
margin: `${componentTheme.hintMargin} 0`,
},
createBlankText: {
fontWeight: componentTheme.createBlankTextWeight,
},
createBlankHotkeyText: {
fontWeight: componentTheme.createBlankHotkeyTextWeight,
fontSize: componentTheme.createBlankHotkeyTextSize,
paddingSeft: componentTheme.createBlankHotkeyTextPadding,
},
}
}
export default generateStyle