@instructure/quiz-interactions
Version:
A React UI component Library for quiz interaction types.
16 lines (14 loc) • 547 B
JavaScript
const generateComponentTheme = ({spacing, colors, borders}) => {
return {
responseMarginTop: spacing.xSmall,
noResponseWrapperMargin: spacing.small,
radioWrapperPadding: spacing.xSmall,
answerFeedbackMarginTop: spacing.small,
answerFeedbackMarginRight: spacing.xSmall,
answerFeedbackPadding: spacing.small,
answerFeedbackBorderColor: colors.contrasts.grey1214,
answerFeedbackBorderLeft: colors.contrasts.blue4570,
answerFeedbackBorderRadius: borders.radiusMedium,
}
}
export default generateComponentTheme