You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
471 B
19 lines
471 B
import React, { FC } from 'react'; |
|
import styles from './ChatUserBadge.module.scss'; |
|
|
|
export type ChatUserBadgeProps = { |
|
badge: React.ReactNode; |
|
userColor: number; |
|
title: string; |
|
}; |
|
|
|
export const ChatUserBadge: FC<ChatUserBadgeProps> = ({ badge, userColor, title }) => { |
|
const color = `var(--theme-color-users-${userColor})`; |
|
const style = { color }; |
|
|
|
return ( |
|
<span style={style} className={styles.badge} title={title}> |
|
{badge} |
|
</span> |
|
); |
|
};
|
|
|