botframework-webchat-component
Version:
React component of botframework-webchat
28 lines (25 loc) • 641 B
JavaScript
export default function createInitialsAvatarStyle({
accent,
avatarSize,
botAvatarBackgroundColor,
primaryFont,
userAvatarBackgroundColor
}) {
return {
'&.webchat__initialsAvatar': {
alignItems: 'center',
color: 'White',
fontFamily: primaryFont,
height: avatarSize,
justifyContent: 'center',
overflow: 'hidden',
width: avatarSize,
'&.webchat__initialsAvatar--fromUser': {
backgroundColor: userAvatarBackgroundColor || accent
},
'&:not(.webchat__initialsAvatar--fromUser)': {
backgroundColor: botAvatarBackgroundColor || accent
}
}
};
}