import React from 'react'; import s from './ChatUserBadge.module.scss'; interface Props { badge: React.ReactNode; userColor: number; } export default function ChatUserBadge(props: Props) { const { badge, userColor } = props; const color = `var(--theme-user-colors-${userColor})`; const style = { color, borderColor: color }; return ( {badge} ); }