Add blinking typing cursing (#619)

This commit is contained in:
Anthony Puppo
2023-04-20 10:33:28 -04:00
committed by GitHub
parent f849a2e924
commit fa3f6e93bb
2 changed files with 13 additions and 4 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
import { IconRobot } from '@tabler/icons-react';
import { IconDots } from '@tabler/icons-react';
import { FC } from 'react';
interface Props { }
@@ -14,7 +13,7 @@ export const ChatLoader: FC<Props> = () => {
<div className="min-w-[40px] items-end">
<IconRobot size={30} />
</div>
<IconDots className="animate-pulse" />
<span className="animate-pulse cursor-default mt-1"></span>
</div>
</div>
);