starting dragable bottom panel

This commit is contained in:
2024-02-02 17:14:51 +05:00
parent 2f8aa5c516
commit a244e7b883
26 changed files with 379 additions and 73 deletions
+14
View File
@@ -0,0 +1,14 @@
import BackIcon from "../icons/BackIcon";
const BackButton = () => {
return (
<button className="flex w-fit items-center gap-1 py-[6px] pl-2 pr-4 bg-white rounded-full text-sm font-medium border border-[#C7BDBA]">
<div className="w-5 h-5 flex items-center justify-center">
<BackIcon className="w-[5px] h-[10px]" />
</div>
Back
</button>
);
};
export default BackButton;