chatbot-ui starter

This commit is contained in:
Mckay Wrigley
2023-03-13 19:21:14 -06:00
parent 4c9730e4cd
commit a6503fb498
25 changed files with 7259 additions and 71 deletions
+17
View File
@@ -0,0 +1,17 @@
import { IconDots } from "@tabler/icons-react";
import { FC } from "react";
interface Props {}
export const ChatLoader: FC<Props> = () => {
return (
<div className="flex flex-col flex-start">
<div
className={`flex items-center bg-neutral-200 text-neutral-900 rounded-2xl px-4 py-2 w-fit`}
style={{ overflowWrap: "anywhere" }}
>
<IconDots className="animate-pulse" />
</div>
</div>
);
};