@instructure/quiz-interactions
Version:
A React UI component Library for quiz interaction types.
15 lines (13 loc) • 528 B
JavaScript
const generateComponentTheme = ({spacing, borders, typography, colors}) => {
return {
userResponsePadding: spacing.xSmall,
userResponseMargin: spacing.xxSmall,
userResponseFontSize: typography.fontSizeSmall,
userResponseFontFamily: typography.fontFamily,
gradingNotesWrapperMargin: spacing.xSmall,
gradingNotesWrapperPadding: spacing.small,
gradingNotesWrapperColor: colors.contrasts.grey1111,
gradingNotesWrapperBorderRadius: borders.radiusMedium,
}
}
export default generateComponentTheme