@instructure/quiz-interactions
Version:
A React UI component Library for quiz interaction types.
17 lines (15 loc) • 679 B
JavaScript
const generateComponentTheme = ({spacing, borders, colors, typography}) => {
return {
fileDropWrapperMargin: spacing.xSmall,
fileDropContentPadding: spacing.medium,
fileDropContentBackgroundColor: colors.contrasts.white1010,
fileDropContentBorderWidth: borders.widthSmall,
fileDropContentBorderColor: colors.contrasts.grey1214,
fileDropContentFontFamily: typography.fontFamily,
fileDropContentIconFontSize: typography.fontSizeXXLarge,
fileDropContentLabelPadding: spacing.xSmall,
fileDropContentLabelBrowsePadding: spacing.xxSmall,
fileDropContentLabelBrowseColor: colors.contrasts.blue4570,
}
}
export default generateComponentTheme