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.
17 lines
511 B
17 lines
511 B
import dynamic from 'next/dynamic'; |
|
import React, { FC } from 'react'; |
|
import { ChatUserBadge } from './ChatUserBadge'; |
|
|
|
// Lazy loaded components |
|
|
|
const SafetyCertificateFilled = dynamic(() => import('@ant-design/icons/SafetyCertificateFilled'), { |
|
ssr: false, |
|
}); |
|
|
|
export type AuthedUserBadgeProps = { |
|
userColor: number; |
|
}; |
|
|
|
export const AuthedUserBadge: FC<AuthedUserBadgeProps> = ({ userColor }) => ( |
|
<ChatUserBadge badge={<SafetyCertificateFilled />} userColor={userColor} title="Authenticated" /> |
|
);
|
|
|