Skip to content

Commit

Permalink
Update ConversationPlaceHolder component
Browse files Browse the repository at this point in the history
  • Loading branch information
insulationman committed Mar 8, 2024
1 parent b63b813 commit ed64ac4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/ConversationPlaceHolder.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import ChatGBG from "./assets/ChatGBG.svg";

const ConversationPlaceHolder = () => {
return (
<div>
<div className="flex justify-start p-4 border-2 border-gray-200 rounded-lg mb-4">
<p>Det finns inga meddelanden än</p>
</div>
<div className="flex flex-col items-center justify-center h-full">
<img src={ChatGBG} alt="chat person icon" className="h-20 mt-1" />
<p className="text-xs text-blue-400">ChatGBG</p>
<p>Du har ännu inte skrivit något till ChatGBG</p>
</div>
);
};
Expand Down

0 comments on commit ed64ac4

Please sign in to comment.