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