@aws-amplify/ui
Version:
`@aws-amplify/ui` contains low-level logic & styles for stand-alone usage or re-use in framework-specific implementations.
23 lines (21 loc) • 689 B
JavaScript
const divider = {
borderStyle: { value: 'solid' },
borderColor: { value: '{colors.border.primary.value}' },
borderWidth: { value: '{borderWidths.medium.value}' },
label: {
color: { value: '{colors.font.tertiary.value}' },
paddingInline: { value: '{space.medium.value}' },
fontSize: { value: '{fontSizes.small.value}' },
backgroundColor: { value: '{colors.background.primary.value}' },
},
small: {
borderWidth: { value: '{borderWidths.small.value}' },
},
large: {
borderWidth: { value: '{borderWidths.large.value}' },
},
opacity: {
value: '{opacities.60.value}',
},
};
export { divider };