UNPKG

botframework-webchat-component

Version:
28 lines (25 loc) 641 B
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 } } }; }