mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
import { IconWand } from "@tabler/icons-react";
|
|
|
|
export default function ChatAssistantAvatar() {
|
|
return (
|
|
<div className="flex-shrink-0">
|
|
<div className="h-8 w-8 rounded-full bg-desert-green flex items-center justify-center">
|
|
<IconWand className="h-5 w-5 text-white" />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|