From 13b16b8b3a9e363e2fd5cbd86b6ca38f1368a878 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 14 Feb 2023 20:08:16 -0300 Subject: [PATCH] chat opening done --- .../src/components/chatComponent/index.tsx | 108 ++++++++++++------ 1 file changed, 72 insertions(+), 36 deletions(-) diff --git a/space_flow/src/components/chatComponent/index.tsx b/space_flow/src/components/chatComponent/index.tsx index 53ee857f7..380ff849c 100644 --- a/space_flow/src/components/chatComponent/index.tsx +++ b/space_flow/src/components/chatComponent/index.tsx @@ -1,55 +1,91 @@ +import { Transition } from "@headlessui/react"; import { ChatBubbleBottomCenterTextIcon, PaperAirplaneIcon, XMarkIcon, } from "@heroicons/react/24/outline"; +import { useState } from "react"; -export default function Chat({}) { +export default function Chat() { + const [open, setOpen] = useState(true); return ( <> -
-
-
-
- - Chat + +
+
+
+
+ + Chat +
+
- -
-
-
-
- Lorem Ipsum is simply dummy text of the printing and typesetting - industry. +
+
+
+ Lorem Ipsum is simply dummy text of the printing and + typesetting industry. +
+
+
+
+ Lorem Ipsum has been the industry's standard dummy text ever + since the 1500s +
-
-
- Lorem Ipsum has been the industry's standard dummy text ever - since the 1500s -
-
-
-
-
- -
- - +
+ +
-
+ + +
+
+ +
+
+
); }