13 lines
364 B
JavaScript
13 lines
364 B
JavaScript
'use client';
|
|
|
|
export default function BrokerAvatar({ brokerName }) {
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-6 h-6 bg-blue-500 rounded-full flex items-center justify-center text-white text-xs">
|
|
{brokerName.charAt(0)}
|
|
</div>
|
|
<span className="text-sm text-gray-900">{brokerName}</span>
|
|
</div>
|
|
);
|
|
}
|