style(chat): fixed chat layout + added shadows
This commit is contained in:
parent
3661874789
commit
41d0451cce
9 changed files with 116 additions and 16 deletions
|
|
@ -1,10 +1,16 @@
|
|||
import React from "react";
|
||||
import { ArrowDown } from "lucide-react";
|
||||
import { motion } from "motion/react";
|
||||
|
||||
export default function DownButton({ onClick }) {
|
||||
return (
|
||||
<button onClick={onClick} className="bg-gray-700 p-2 rounded-2xl">
|
||||
<motion.button
|
||||
onClick={onClick}
|
||||
className="bg-gray-700 p-2 rounded-2xl"
|
||||
whileHover={{ scale: 1.1 }}
|
||||
whileTap={{ scale: 0.9 }}
|
||||
>
|
||||
<ArrowDown />
|
||||
</button>
|
||||
</motion.button>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue